[Crosstoolchain-logs] [device-tree-compiler] 43/57: pylibfdt: Use	local pylibfdt module
    Vagrant Cascadian 
    vagrant at moszumanska.debian.org
       
    Thu Sep 28 22:03:59 UTC 2017
    
    
  
This is an automated email from the git hooks/post-receive script.
vagrant pushed a commit to branch upstream/latest
in repository device-tree-compiler.
commit 155faf6cc2097422b647b8e12daf8a673c852121
Author: Simon Glass <sjg at chromium.org>
Date:   Sat Aug 19 11:17:55 2017 -0600
    pylibfdt: Use local pylibfdt module
    
    Some systems may have the Python libfdt.py library installed. Adjust the
    tests to prepend the local libfdt path so that we test the local version
    instead of the system version.
    
    Signed-off-by: Simon Glass <sjg at chromium.org>
    Signed-off-by: David Gibson <david at gibson.dropbear.id.au>
---
 tests/pylibfdt_tests.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/pylibfdt_tests.py b/tests/pylibfdt_tests.py
index e8a4582..32a1daa 100644
--- a/tests/pylibfdt_tests.py
+++ b/tests/pylibfdt_tests.py
@@ -53,7 +53,7 @@ import sys
 import types
 import unittest
 
-sys.path.append('../pylibfdt')
+sys.path.insert(0, '../pylibfdt')
 import libfdt
 from libfdt import FdtException, QUIET_NOTFOUND, QUIET_ALL
 
@@ -66,7 +66,7 @@ def get_err(err_code):
     Returns:
         String error code
     """
-    return 'pylibfdt error %d: %s' % (-err_code, libfdt.fdt_strerror(-err_code))
+    return 'pylibfdt error %d: %s' % (-err_code, libfdt.strerror(-err_code))
 
 def _ReadFdt(fname):
     """Read a device tree file into an Fdt object, ready for use
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/crosstoolchain/device-tree-compiler.git
    
    
More information about the Crosstoolchain-logs
mailing list