]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dtoc: Move test files into a test/ directory
authorSimon Glass <sjg@chromium.org>
Wed, 3 Feb 2021 13:00:56 +0000 (06:00 -0700)
committerSimon Glass <sjg@chromium.org>
Mon, 22 Mar 2021 06:23:27 +0000 (19:23 +1300)
It is confusing to have the test files in the same places as the
implementation. Move them into a separate directory.

Add a helper function for test_dtoc, to avoid repeating the same
path.

Signed-off-by: Simon Glass <sjg@chromium.org>
23 files changed:
tools/dtoc/test/dtoc_test.dts [moved from tools/dtoc/dtoc_test.dts with 100% similarity]
tools/dtoc/test/dtoc_test_add_prop.dts [moved from tools/dtoc/dtoc_test_add_prop.dts with 100% similarity]
tools/dtoc/test/dtoc_test_addr32.dts [moved from tools/dtoc/dtoc_test_addr32.dts with 100% similarity]
tools/dtoc/test/dtoc_test_addr32_64.dts [moved from tools/dtoc/dtoc_test_addr32_64.dts with 100% similarity]
tools/dtoc/test/dtoc_test_addr64.dts [moved from tools/dtoc/dtoc_test_addr64.dts with 100% similarity]
tools/dtoc/test/dtoc_test_addr64_32.dts [moved from tools/dtoc/dtoc_test_addr64_32.dts with 100% similarity]
tools/dtoc/test/dtoc_test_aliases.dts [moved from tools/dtoc/dtoc_test_aliases.dts with 100% similarity]
tools/dtoc/test/dtoc_test_bad_reg.dts [moved from tools/dtoc/dtoc_test_bad_reg.dts with 100% similarity]
tools/dtoc/test/dtoc_test_bad_reg2.dts [moved from tools/dtoc/dtoc_test_bad_reg2.dts with 100% similarity]
tools/dtoc/test/dtoc_test_driver_alias.dts [moved from tools/dtoc/dtoc_test_driver_alias.dts with 100% similarity]
tools/dtoc/test/dtoc_test_empty.dts [moved from tools/dtoc/dtoc_test_empty.dts with 100% similarity]
tools/dtoc/test/dtoc_test_invalid_driver.dts [moved from tools/dtoc/dtoc_test_invalid_driver.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle.dts [moved from tools/dtoc/dtoc_test_phandle.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle_bad.dts [moved from tools/dtoc/dtoc_test_phandle_bad.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle_bad2.dts [moved from tools/dtoc/dtoc_test_phandle_bad2.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle_cd_gpios.dts [moved from tools/dtoc/dtoc_test_phandle_cd_gpios.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle_reorder.dts [moved from tools/dtoc/dtoc_test_phandle_reorder.dts with 100% similarity]
tools/dtoc/test/dtoc_test_phandle_single.dts [moved from tools/dtoc/dtoc_test_phandle_single.dts with 100% similarity]
tools/dtoc/test/dtoc_test_scan_drivers.cxx [moved from tools/dtoc/dtoc_test_scan_drivers.cxx with 100% similarity]
tools/dtoc/test/dtoc_test_simple.dts [moved from tools/dtoc/dtoc_test_simple.dts with 100% similarity]
tools/dtoc/test_dtoc.py
tools/dtoc/test_fdt.py
tools/dtoc/test_src_scan.py

index 6865d949a05ab9809ab7a13e8e5241ae89fd37f0..523f0a923ebc880de233c21bb6e665f06229210b 100755 (executable)
@@ -72,7 +72,7 @@ def get_dtb_file(dts_fname, capture_stderr=False):
     Returns:
         str: Filename of compiled file in output directory
     """
-    return fdt_util.EnsureCompiled(os.path.join(OUR_PATH, dts_fname),
+    return fdt_util.EnsureCompiled(os.path.join(OUR_PATH, 'test', dts_fname),
                                    capture_stderr=capture_stderr)
 
 
index e8fbbd5d10aa987e40a85d33221dd3fcea2b144e..1c3a8a2ab1ea192d510fc975d07a10b220ce7387 100755 (executable)
@@ -48,6 +48,17 @@ def _GetPropertyValue(dtb, node, prop_name):
     data = dtb.GetContents()[offset:offset + len(prop.value)]
     return prop, [chr(x) for x in data]
 
+def find_dtb_file(dts_fname):
+    """Locate a test file in the test/ directory
+
+    Args:
+        dts_fname (str): Filename to find, e.g. 'dtoc_test_simple.dts]
+
+    Returns:
+        str: Path to the test filename
+    """
+    return os.path.join('tools/dtoc/test', dts_fname)
+
 
 class TestFdt(unittest.TestCase):
     """Tests for the Fdt module
@@ -64,7 +75,7 @@ class TestFdt(unittest.TestCase):
         tools.FinaliseOutputDir()
 
     def setUp(self):
-        self.dtb = fdt.FdtScan('tools/dtoc/dtoc_test_simple.dts')
+        self.dtb = fdt.FdtScan(find_dtb_file('dtoc_test_simple.dts'))
 
     def testFdt(self):
         """Test that we can open an Fdt"""
@@ -141,7 +152,7 @@ class TestNode(unittest.TestCase):
         tools.FinaliseOutputDir()
 
     def setUp(self):
-        self.dtb = fdt.FdtScan('tools/dtoc/dtoc_test_simple.dts')
+        self.dtb = fdt.FdtScan(find_dtb_file('dtoc_test_simple.dts'))
         self.node = self.dtb.GetNode('/spl-test')
 
     def testOffset(self):
@@ -203,7 +214,7 @@ class TestNode(unittest.TestCase):
 
     def testLookupPhandle(self):
         """Test looking up a single phandle"""
-        dtb = fdt.FdtScan('tools/dtoc/dtoc_test_phandle.dts')
+        dtb = fdt.FdtScan(find_dtb_file('dtoc_test_phandle.dts'))
         node = dtb.GetNode('/phandle-source2')
         prop = node.props['clocks']
         target = dtb.GetNode('/phandle-target')
@@ -222,7 +233,7 @@ class TestProp(unittest.TestCase):
         tools.FinaliseOutputDir()
 
     def setUp(self):
-        self.dtb = fdt.FdtScan('tools/dtoc/dtoc_test_simple.dts')
+        self.dtb = fdt.FdtScan(find_dtb_file('dtoc_test_simple.dts'))
         self.node = self.dtb.GetNode('/spl-test')
         self.fdt = self.dtb.GetFdtObj()
 
@@ -230,7 +241,7 @@ class TestProp(unittest.TestCase):
         self.assertEqual(None, self.dtb.GetNode('missing'))
 
     def testPhandle(self):
-        dtb = fdt.FdtScan('tools/dtoc/dtoc_test_phandle.dts')
+        dtb = fdt.FdtScan(find_dtb_file('dtoc_test_phandle.dts'))
         node = dtb.GetNode('/phandle-source2')
         prop = node.props['clocks']
         self.assertTrue(fdt32_to_cpu(prop.value) > 0)
@@ -488,7 +499,7 @@ class TestFdtUtil(unittest.TestCase):
         tools.FinaliseOutputDir()
 
     def setUp(self):
-        self.dtb = fdt.FdtScan('tools/dtoc/dtoc_test_simple.dts')
+        self.dtb = fdt.FdtScan(find_dtb_file('dtoc_test_simple.dts'))
         self.node = self.dtb.GetNode('/spl-test')
 
     def testGetInt(self):
@@ -531,7 +542,7 @@ class TestFdtUtil(unittest.TestCase):
                       str(e.exception))
 
     def testGetPhandleList(self):
-        dtb = fdt.FdtScan('tools/dtoc/dtoc_test_phandle.dts')
+        dtb = fdt.FdtScan(find_dtb_file('dtoc_test_phandle.dts'))
         node = dtb.GetNode('/phandle-source2')
         self.assertEqual([1], fdt_util.GetPhandleList(node, 'clocks'))
         node = dtb.GetNode('/phandle-source')
@@ -551,7 +562,7 @@ class TestFdtUtil(unittest.TestCase):
         self.assertEqual(0, fdt_util.fdt_cells_to_cpu(val, 0))
         self.assertEqual(2, fdt_util.fdt_cells_to_cpu(val, 1))
 
-        dtb2 = fdt.FdtScan('tools/dtoc/dtoc_test_addr64.dts')
+        dtb2 = fdt.FdtScan(find_dtb_file('dtoc_test_addr64.dts'))
         node1 = dtb2.GetNode('/test1')
         val = node1.props['reg'].value
         self.assertEqual(0x1234, fdt_util.fdt_cells_to_cpu(val, 2))
@@ -565,7 +576,7 @@ class TestFdtUtil(unittest.TestCase):
 
     def testEnsureCompiled(self):
         """Test a degenerate case of this function (file already compiled)"""
-        dtb = fdt_util.EnsureCompiled('tools/dtoc/dtoc_test_simple.dts')
+        dtb = fdt_util.EnsureCompiled(find_dtb_file('dtoc_test_simple.dts'))
         self.assertEqual(dtb, fdt_util.EnsureCompiled(dtb))
 
     def testEnsureCompiledTmpdir(self):
@@ -574,7 +585,7 @@ class TestFdtUtil(unittest.TestCase):
             old_outdir = tools.outdir
             tools.outdir= None
             tmpdir = tempfile.mkdtemp(prefix='test_fdt.')
-            dtb = fdt_util.EnsureCompiled('tools/dtoc/dtoc_test_simple.dts',
+            dtb = fdt_util.EnsureCompiled(find_dtb_file('dtoc_test_simple.dts'),
                                           tmpdir)
             self.assertEqual(tmpdir, os.path.dirname(dtb))
             shutil.rmtree(tmpdir)
index a0b0e097eb29744493370d78dba282ada0e531d8..a7eba3005e5ffb11473b274d1f858e9ac79640d5 100644 (file)
@@ -59,7 +59,8 @@ class TestSrcScan(unittest.TestCase):
     def test_additional(self):
         """Test with additional drivers to scan"""
         scan = src_scan.Scanner(
-            None, True, [None, '', 'tools/dtoc/dtoc_test_scan_drivers.cxx'])
+            None, True,
+            [None, '', 'tools/dtoc/test/dtoc_test_scan_drivers.cxx'])
         scan.scan_drivers()
         self.assertIn('sandbox_gpio_alias2', scan._driver_aliases)
         self.assertEqual('sandbox_gpio',