From: Simon Glass <[email protected]>

Move about 15 test files for ARM Trusted Firmware FIP, ATF BL31, SCP,
OpenSBI, and BL1 entries into a fip/ subdirectory. Drop the numeric
prefixes and the redundant fip_ filename prefix, and update all
references.

Signed-off-by: Simon Glass <[email protected]>
---

 tools/binman/ftest.py                         | 30 +++++++++----------
 .../{169_atf_bl31.dts => fip/atf_bl31.dts}    |  0
 .../bad_align.dts}                            |  0
 .../binman/test/{354_bl1.dts => fip/bl1.dts}  |  0
 .../collection.dts}                           |  0
 .../binman/test/{203_fip.dts => fip/fip.dts}  |  0
 .../test/{207_fip_ls.dts => fip/ls.dts}       |  0
 .../{209_fip_missing.dts => fip/missing.dts}  |  0
 .../{205_fip_no_type.dts => fip/no_type.dts}  |  0
 .../test/{201_opensbi.dts => fip/opensbi.dts} |  0
 .../test/{204_fip_other.dts => fip/other.dts} |  0
 .../{208_fip_replace.dts => fip/replace.dts}  |  0
 .../binman/test/{172_scp.dts => fip/scp.dts}  |  0
 .../test/{210_fip_size.dts => fip/size.dts}   |  0
 .../test/{206_fip_uuid.dts => fip/uuid.dts}   |  0
 15 files changed, 15 insertions(+), 15 deletions(-)
 rename tools/binman/test/{169_atf_bl31.dts => fip/atf_bl31.dts} (100%)
 rename tools/binman/test/{211_fip_bad_align.dts => fip/bad_align.dts} (100%)
 rename tools/binman/test/{354_bl1.dts => fip/bl1.dts} (100%)
 rename tools/binman/test/{212_fip_collection.dts => fip/collection.dts} (100%)
 rename tools/binman/test/{203_fip.dts => fip/fip.dts} (100%)
 rename tools/binman/test/{207_fip_ls.dts => fip/ls.dts} (100%)
 rename tools/binman/test/{209_fip_missing.dts => fip/missing.dts} (100%)
 rename tools/binman/test/{205_fip_no_type.dts => fip/no_type.dts} (100%)
 rename tools/binman/test/{201_opensbi.dts => fip/opensbi.dts} (100%)
 rename tools/binman/test/{204_fip_other.dts => fip/other.dts} (100%)
 rename tools/binman/test/{208_fip_replace.dts => fip/replace.dts} (100%)
 rename tools/binman/test/{172_scp.dts => fip/scp.dts} (100%)
 rename tools/binman/test/{210_fip_size.dts => fip/size.dts} (100%)
 rename tools/binman/test/{206_fip_uuid.dts => fip/uuid.dts} (100%)

diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index 8f5dcc2878c..6dbe2f76a6e 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -4247,12 +4247,12 @@ class TestFunctional(unittest.TestCase):
 
     def testPackBl31(self):
         """Test that an image with an ATF BL31 binary can be created"""
-        data = self._DoReadFile('169_atf_bl31.dts')
+        data = self._DoReadFile('fip/atf_bl31.dts')
         self.assertEqual(ATF_BL31_DATA, data[:len(ATF_BL31_DATA)])
 
     def testPackScp(self):
         """Test that an image with an SCP binary can be created"""
-        data = self._DoReadFile('172_scp.dts')
+        data = self._DoReadFile('fip/scp.dts')
         self.assertEqual(SCP_DATA, data[:len(SCP_DATA)])
 
     def CheckFitFdt(self, dts='fit/fdt.dts', use_fdt_list=True,
@@ -5046,7 +5046,7 @@ class TestFunctional(unittest.TestCase):
 
     def testPackOpenSBI(self):
         """Test that an image with an OpenSBI binary can be created"""
-        data = self._DoReadFile('201_opensbi.dts')
+        data = self._DoReadFile('fip/opensbi.dts')
         self.assertEqual(OPENSBI_DATA, data[:len(OPENSBI_DATA)])
 
     def testSectionsSingleThread(self):
@@ -5234,7 +5234,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
 
     def testFip(self):
         """Basic test of generation of an ARM Firmware Image Package (FIP)"""
-        data = self._DoReadFile('203_fip.dts')
+        data = self._DoReadFile('fip/fip.dts')
         hdr, fents = fip_util.decode_fip(data)
         self.assertEqual(fip_util.HEADER_MAGIC, hdr.name)
         self.assertEqual(fip_util.HEADER_SERIAL, hdr.serial)
@@ -5266,7 +5266,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
 
     def testFipOther(self):
         """Basic FIP with something that isn't a external blob"""
-        data = self._DoReadFile('204_fip_other.dts')
+        data = self._DoReadFile('fip/other.dts')
         hdr, fents = fip_util.decode_fip(data)
 
         self.assertEqual(2, len(fents))
@@ -5277,13 +5277,13 @@ fdt         fdtmap                Extract the 
devicetree blob from the fdtmap
     def testFipNoType(self):
         """FIP with an entry of an unknown type"""
         with self.assertRaises(ValueError) as e:
-            self._DoReadFile('205_fip_no_type.dts')
+            self._DoReadFile('fip/no_type.dts')
         self.assertIn("Must provide a fip-type (node name 'u-boot' is not a 
known FIP type)",
                       str(e.exception))
 
     def testFipUuid(self):
         """Basic FIP with a manual uuid"""
-        data = self._DoReadFile('206_fip_uuid.dts')
+        data = self._DoReadFile('fip/uuid.dts')
         hdr, fents = fip_util.decode_fip(data)
 
         self.assertEqual(2, len(fents))
@@ -5297,7 +5297,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
 
     def testFipLs(self):
         """Test listing a FIP"""
-        data = self._DoReadFileRealDtb('207_fip_ls.dts')
+        data = self._DoReadFileRealDtb('fip/ls.dts')
         hdr, fents = fip_util.decode_fip(data)
 
         tmpdir = None
@@ -5353,7 +5353,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
 
     def testFipExtractOneEntry(self):
         """Test extracting a single entry fron an FIP"""
-        self._DoReadFileRealDtb('207_fip_ls.dts')
+        self._DoReadFileRealDtb('fip/ls.dts')
         image_fname = tools.get_output_filename('image.bin')
         fname = os.path.join(self._indir, 'output.extact')
         control.ExtractEntries(image_fname, fname, None, ['atf-fip/u-boot'])
@@ -5363,7 +5363,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
     def testFipReplace(self):
         """Test replacing a single file in a FIP"""
         expected = U_BOOT_DATA + tools.get_bytes(0x78, 50)
-        data = self._DoReadFileRealDtb('208_fip_replace.dts')
+        data = self._DoReadFileRealDtb('fip/replace.dts')
         updated_fname = tools.get_output_filename('image-updated.bin')
         tools.write_file(updated_fname, data)
         entry_name = 'atf-fip/u-boot'
@@ -5387,13 +5387,13 @@ fdt         fdtmap                Extract the 
devicetree blob from the fdtmap
 
     def testFipMissing(self):
         with terminal.capture() as (stdout, stderr):
-            self._DoTestFile('209_fip_missing.dts', allow_missing=True)
+            self._DoTestFile('fip/missing.dts', allow_missing=True)
         err = stderr.getvalue()
         self.assertRegex(err, "Image 'image'.*missing.*: rmm-fw")
 
     def testFipSize(self):
         """Test a FIP with a size property"""
-        data = self._DoReadFile('210_fip_size.dts')
+        data = self._DoReadFile('fip/size.dts')
         self.assertEqual(0x100 + len(U_BOOT_DATA), len(data))
         hdr, fents = fip_util.decode_fip(data)
         self.assertEqual(fip_util.HEADER_MAGIC, hdr.name)
@@ -5414,14 +5414,14 @@ fdt         fdtmap                Extract the 
devicetree blob from the fdtmap
     def testFipBadAlign(self):
         """Test that an invalid alignment value in a FIP is detected"""
         with self.assertRaises(ValueError) as e:
-            self._DoTestFile('211_fip_bad_align.dts')
+            self._DoTestFile('fip/bad_align.dts')
         self.assertIn(
             "Node \'/binman/atf-fip\': FIP alignment 31 must be a power of 
two",
             str(e.exception))
 
     def testFipCollection(self):
         """Test using a FIP in a collection"""
-        data = self._DoReadFile('212_fip_collection.dts')
+        data = self._DoReadFile('fip/collection.dts')
         entry1 = control.images['image'].GetEntries()['collection']
         data1 = data[:entry1.size]
         hdr1, fents2 = fip_util.decode_fip(data1)
@@ -5583,7 +5583,7 @@ fdt         fdtmap                Extract the devicetree 
blob from the fdtmap
 
     def testPackBl1(self):
         """test if an image with a bl1 binary can be created"""
-        data = self._DoReadFile('354_bl1.dts')
+        data = self._DoReadFile('fip/bl1.dts')
         self.assertEqual(ATF_BL1_DATA, data[:len(ATF_BL1_DATA)])
 
     def testRenesasRCarGen4SA0Image(self):
diff --git a/tools/binman/test/169_atf_bl31.dts 
b/tools/binman/test/fip/atf_bl31.dts
similarity index 100%
rename from tools/binman/test/169_atf_bl31.dts
rename to tools/binman/test/fip/atf_bl31.dts
diff --git a/tools/binman/test/211_fip_bad_align.dts 
b/tools/binman/test/fip/bad_align.dts
similarity index 100%
rename from tools/binman/test/211_fip_bad_align.dts
rename to tools/binman/test/fip/bad_align.dts
diff --git a/tools/binman/test/354_bl1.dts b/tools/binman/test/fip/bl1.dts
similarity index 100%
rename from tools/binman/test/354_bl1.dts
rename to tools/binman/test/fip/bl1.dts
diff --git a/tools/binman/test/212_fip_collection.dts 
b/tools/binman/test/fip/collection.dts
similarity index 100%
rename from tools/binman/test/212_fip_collection.dts
rename to tools/binman/test/fip/collection.dts
diff --git a/tools/binman/test/203_fip.dts b/tools/binman/test/fip/fip.dts
similarity index 100%
rename from tools/binman/test/203_fip.dts
rename to tools/binman/test/fip/fip.dts
diff --git a/tools/binman/test/207_fip_ls.dts b/tools/binman/test/fip/ls.dts
similarity index 100%
rename from tools/binman/test/207_fip_ls.dts
rename to tools/binman/test/fip/ls.dts
diff --git a/tools/binman/test/209_fip_missing.dts 
b/tools/binman/test/fip/missing.dts
similarity index 100%
rename from tools/binman/test/209_fip_missing.dts
rename to tools/binman/test/fip/missing.dts
diff --git a/tools/binman/test/205_fip_no_type.dts 
b/tools/binman/test/fip/no_type.dts
similarity index 100%
rename from tools/binman/test/205_fip_no_type.dts
rename to tools/binman/test/fip/no_type.dts
diff --git a/tools/binman/test/201_opensbi.dts 
b/tools/binman/test/fip/opensbi.dts
similarity index 100%
rename from tools/binman/test/201_opensbi.dts
rename to tools/binman/test/fip/opensbi.dts
diff --git a/tools/binman/test/204_fip_other.dts 
b/tools/binman/test/fip/other.dts
similarity index 100%
rename from tools/binman/test/204_fip_other.dts
rename to tools/binman/test/fip/other.dts
diff --git a/tools/binman/test/208_fip_replace.dts 
b/tools/binman/test/fip/replace.dts
similarity index 100%
rename from tools/binman/test/208_fip_replace.dts
rename to tools/binman/test/fip/replace.dts
diff --git a/tools/binman/test/172_scp.dts b/tools/binman/test/fip/scp.dts
similarity index 100%
rename from tools/binman/test/172_scp.dts
rename to tools/binman/test/fip/scp.dts
diff --git a/tools/binman/test/210_fip_size.dts b/tools/binman/test/fip/size.dts
similarity index 100%
rename from tools/binman/test/210_fip_size.dts
rename to tools/binman/test/fip/size.dts
diff --git a/tools/binman/test/206_fip_uuid.dts b/tools/binman/test/fip/uuid.dts
similarity index 100%
rename from tools/binman/test/206_fip_uuid.dts
rename to tools/binman/test/fip/uuid.dts
-- 
2.43.0

Reply via email to