aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-10-24 19:02:26 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2019-10-27 17:50:53 +0100
commitfdf3f6d897ab8759fb7d7277ba5224beb4727d1d (patch)
tree4217b0e330d62188ef29dcd586a9bdcf6efe8b29 /tests
parent430419c28100960c554cf753a5309231c03ec780 (diff)
downloaddtc-fdf3f6d897ab8759fb7d7277ba5224beb4727d1d.zip
dtc-fdf3f6d897ab8759fb7d7277ba5224beb4727d1d.tar.gz
dtc-fdf3f6d897ab8759fb7d7277ba5224beb4727d1d.tar.bz2
pylibfdt: Correct the type for fdt_property_stub()
This function should use a void * type, not char *. This causes an error: TypeError: in method 'fdt_property_stub', argument 3 of type 'char const *' Fix it and update the tests. Signed-off-by: Simon Glass <sjg@chromium.org> Message-Id: <20191025010226.34378-1-sjg@chromium.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests')
-rw-r--r--tests/pylibfdt_tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/pylibfdt_tests.py b/tests/pylibfdt_tests.py
index 509cf14..021a5a8 100644
--- a/tests/pylibfdt_tests.py
+++ b/tests/pylibfdt_tests.py
@@ -522,8 +522,9 @@ class PyLibfdtSwTests(unittest.TestCase):
sw.property_string('compatible', 'subnode1')
sw.property_u32('reg', 1)
sw.property_cell('prop-int', TEST_VALUE_1)
+ sw.property('data', b'\x00data\x01')
sw.begin_node('subsubnode')
- sw.property('compatible', 'subsubnode1\0subsubnode')
+ sw.property('compatible', b'subsubnode1\0subsubnode')
sw.property_cell('prop-int', TEST_VALUE_1)
sw.end_node()
sw.begin_node('ss1')
@@ -540,7 +541,7 @@ class PyLibfdtSwTests(unittest.TestCase):
with sw.add_node('subsubnode@0'):
sw.property_u32('reg', 0)
sw.property_cell('phandle', PHANDLE_2)
- sw.property('compatible', 'subsubnode2\0subsubnode')
+ sw.property('compatible', b'subsubnode2\0subsubnode')
sw.property_cell('prop-int', TEST_VALUE_2)
with sw.add_node('ss2'):
pass