summaryrefslogtreecommitdiff
path: root/tools/binman/fdt_test.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-10-01 21:22:30 +0300
committerSimon Glass <sjg@chromium.org>2018-10-09 13:40:27 +0300
commit741f2d620c3ff2d59d3b25c344ab6b8bec4a4c87 (patch)
treec6d758365740ff47c4df5ef7d26535853c9557f6 /tools/binman/fdt_test.py
parent6e64ec1256875f6fafa853a74108fb57fd769e98 (diff)
downloadu-boot-741f2d620c3ff2d59d3b25c344ab6b8bec4a4c87.tar.xz
binman: Move to three-digit test-file numbers
We now have 99 tests. Before adding any more, rename everything to three digits. This helps to preserve the ordering of tests and makes it easier to find things. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/fdt_test.py')
-rw-r--r--tools/binman/fdt_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/fdt_test.py b/tools/binman/fdt_test.py
index b9167012d2..ac6f910d3c 100644
--- a/tools/binman/fdt_test.py
+++ b/tools/binman/fdt_test.py
@@ -36,12 +36,12 @@ class TestFdt(unittest.TestCase):
node.DeleteProp('data')
def testFdtNormal(self):
- fname = self.GetCompiled('34_x86_ucode.dts')
+ fname = self.GetCompiled('034_x86_ucode.dts')
dt = FdtScan(fname)
self._DeleteProp(dt)
def testFdtNormalProp(self):
- fname = self.GetCompiled('45_prop_test.dts')
+ fname = self.GetCompiled('045_prop_test.dts')
dt = FdtScan(fname)
node = dt.GetNode('/binman/intel-me')
self.assertEquals('intel-me', node.name)