summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2026-03-06 11:12:41 -0700
committerSimon Glass <[email protected]>2026-03-18 06:14:16 -0600
commit90a2b8c53d152dc5593f6dfdd8925ebd1ccfb830 (patch)
treeee8967ace715ced0a5f4a14ac8e90110296dd47f /tools
parent52d7fe3a4570bca315754879ace7b82b47d4a34d (diff)
binman: test: Move UEFI capsule test files to test/capsule/
Move about a dozen test files for UEFI capsule creation (signed, versioned, accept, revert) into a capsule/ subdirectory. Drop the numeric prefixes and the redundant capsule_ filename prefix, and update all references. Signed-off-by: Simon Glass <[email protected]> Reviewed-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/ftest.py30
-rw-r--r--tools/binman/test/capsule/accept.dts (renamed from tools/binman/test/319_capsule_accept.dts)0
-rw-r--r--tools/binman/test/capsule/accept_missing_guid.dts (renamed from tools/binman/test/321_capsule_accept_missing_guid.dts)0
-rw-r--r--tools/binman/test/capsule/accept_revert_missing.dts (renamed from tools/binman/test/323_capsule_accept_revert_missing.dts)0
-rw-r--r--tools/binman/test/capsule/capsule.dts (renamed from tools/binman/test/311_capsule.dts)0
-rw-r--r--tools/binman/test/capsule/empty_type_missing.dts (renamed from tools/binman/test/322_empty_capsule_type_missing.dts)0
-rw-r--r--tools/binman/test/capsule/missing_guid.dts (renamed from tools/binman/test/318_capsule_missing_guid.dts)0
-rw-r--r--tools/binman/test/capsule/missing_index.dts (renamed from tools/binman/test/317_capsule_missing_index.dts)0
-rw-r--r--tools/binman/test/capsule/missing_key.dts (renamed from tools/binman/test/316_capsule_missing_key.dts)0
-rw-r--r--tools/binman/test/capsule/oemflags.dts (renamed from tools/binman/test/315_capsule_oemflags.dts)0
-rw-r--r--tools/binman/test/capsule/revert.dts (renamed from tools/binman/test/320_capsule_revert.dts)0
-rw-r--r--tools/binman/test/capsule/signed.dts (renamed from tools/binman/test/312_capsule_signed.dts)0
-rw-r--r--tools/binman/test/capsule/signed_ver.dts (renamed from tools/binman/test/314_capsule_signed_ver.dts)0
-rw-r--r--tools/binman/test/capsule/version.dts (renamed from tools/binman/test/313_capsule_version.dts)0
14 files changed, 15 insertions, 15 deletions
diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index 1e83e6140b4..43292941576 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -7517,7 +7517,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testCapsuleGen(self):
"""Test generation of EFI capsule"""
- data = self._DoReadFile('311_capsule.dts')
+ data = self._DoReadFile('capsule/capsule.dts')
self._CheckCapsule(data)
@@ -7528,13 +7528,13 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
data = tools.read_file(self.TestFile("key.pem"))
self._MakeInputFile("key.crt", data)
- data = self._DoReadFile('312_capsule_signed.dts')
+ data = self._DoReadFile('capsule/signed.dts')
self._CheckCapsule(data, signed_capsule=True)
def testCapsuleGenVersionSupport(self):
"""Test generation of EFI capsule with version support"""
- data = self._DoReadFile('313_capsule_version.dts')
+ data = self._DoReadFile('capsule/version.dts')
self._CheckCapsule(data, version_check=True)
@@ -7545,20 +7545,20 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
data = tools.read_file(self.TestFile("key.pem"))
self._MakeInputFile("key.crt", data)
- data = self._DoReadFile('314_capsule_signed_ver.dts')
+ data = self._DoReadFile('capsule/signed_ver.dts')
self._CheckCapsule(data, signed_capsule=True, version_check=True)
def testCapsuleGenCapOemFlags(self):
"""Test generation of EFI capsule with OEM Flags set"""
- data = self._DoReadFile('315_capsule_oemflags.dts')
+ data = self._DoReadFile('capsule/oemflags.dts')
self._CheckCapsule(data, capoemflags=True)
def testCapsuleGenKeyMissing(self):
"""Test that binman errors out on missing key"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('316_capsule_missing_key.dts')
+ self._DoReadFile('capsule/missing_key.dts')
self.assertIn("Both private key and public key certificate need to be provided",
str(e.exception))
@@ -7566,7 +7566,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testCapsuleGenIndexMissing(self):
"""Test that binman errors out on missing image index"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('317_capsule_missing_index.dts')
+ self._DoReadFile('capsule/missing_index.dts')
self.assertIn("entry is missing properties: image-index",
str(e.exception))
@@ -7574,27 +7574,27 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testCapsuleGenGuidMissing(self):
"""Test that binman errors out on missing image GUID"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('318_capsule_missing_guid.dts')
+ self._DoReadFile('capsule/missing_guid.dts')
self.assertIn("entry is missing properties: image-guid",
str(e.exception))
def testCapsuleGenAcceptCapsule(self):
"""Test generationg of accept EFI capsule"""
- data = self._DoReadFile('319_capsule_accept.dts')
+ data = self._DoReadFile('capsule/accept.dts')
self._CheckEmptyCapsule(data, accept_capsule=True)
def testCapsuleGenRevertCapsule(self):
"""Test generationg of revert EFI capsule"""
- data = self._DoReadFile('320_capsule_revert.dts')
+ data = self._DoReadFile('capsule/revert.dts')
self._CheckEmptyCapsule(data)
def testCapsuleGenAcceptGuidMissing(self):
"""Test that binman errors out on missing image GUID for accept capsule"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('321_capsule_accept_missing_guid.dts')
+ self._DoReadFile('capsule/accept_missing_guid.dts')
self.assertIn("Image GUID needed for generating accept capsule",
str(e.exception))
@@ -7602,7 +7602,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testCapsuleGenEmptyCapsuleTypeMissing(self):
"""Test that capsule-type is specified"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('322_empty_capsule_type_missing.dts')
+ self._DoReadFile('capsule/empty_type_missing.dts')
self.assertIn("entry is missing properties: capsule-type",
str(e.exception))
@@ -7610,7 +7610,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testCapsuleGenAcceptOrRevertMissing(self):
"""Test that both accept and revert capsule are not specified"""
with self.assertRaises(ValueError) as e:
- self._DoReadFile('323_capsule_accept_revert_missing.dts')
+ self._DoReadFile('capsule/accept_revert_missing.dts')
def test_assume_size(self):
"""Test handling of the assume-size property for external blob"""
@@ -7857,7 +7857,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testMkeficapsuleMissing(self):
"""Test that binman complains if mkeficapsule is missing"""
with self.assertRaises(ValueError) as e:
- self._DoTestFile('311_capsule.dts',
+ self._DoTestFile('capsule/capsule.dts',
force_missing_bintools='mkeficapsule')
self.assertIn("Node '/binman/efi-capsule': Missing tool: 'mkeficapsule'",
str(e.exception))
@@ -7865,7 +7865,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
def testMkeficapsuleMissingOk(self):
"""Test that binman deals with mkeficapsule being missing"""
with terminal.capture() as (stdout, stderr):
- ret = self._DoTestFile('311_capsule.dts',
+ ret = self._DoTestFile('capsule/capsule.dts',
force_missing_bintools='mkeficapsule',
allow_missing=True)
self.assertEqual(103, ret)
diff --git a/tools/binman/test/319_capsule_accept.dts b/tools/binman/test/capsule/accept.dts
index d48e59f859b..d48e59f859b 100644
--- a/tools/binman/test/319_capsule_accept.dts
+++ b/tools/binman/test/capsule/accept.dts
diff --git a/tools/binman/test/321_capsule_accept_missing_guid.dts b/tools/binman/test/capsule/accept_missing_guid.dts
index a0088b174c5..a0088b174c5 100644
--- a/tools/binman/test/321_capsule_accept_missing_guid.dts
+++ b/tools/binman/test/capsule/accept_missing_guid.dts
diff --git a/tools/binman/test/323_capsule_accept_revert_missing.dts b/tools/binman/test/capsule/accept_revert_missing.dts
index 31268b20b88..31268b20b88 100644
--- a/tools/binman/test/323_capsule_accept_revert_missing.dts
+++ b/tools/binman/test/capsule/accept_revert_missing.dts
diff --git a/tools/binman/test/311_capsule.dts b/tools/binman/test/capsule/capsule.dts
index 0a62ef81dd2..0a62ef81dd2 100644
--- a/tools/binman/test/311_capsule.dts
+++ b/tools/binman/test/capsule/capsule.dts
diff --git a/tools/binman/test/322_empty_capsule_type_missing.dts b/tools/binman/test/capsule/empty_type_missing.dts
index d356168e775..d356168e775 100644
--- a/tools/binman/test/322_empty_capsule_type_missing.dts
+++ b/tools/binman/test/capsule/empty_type_missing.dts
diff --git a/tools/binman/test/318_capsule_missing_guid.dts b/tools/binman/test/capsule/missing_guid.dts
index 85d3317ecb5..85d3317ecb5 100644
--- a/tools/binman/test/318_capsule_missing_guid.dts
+++ b/tools/binman/test/capsule/missing_guid.dts
diff --git a/tools/binman/test/317_capsule_missing_index.dts b/tools/binman/test/capsule/missing_index.dts
index 99a54d55c33..99a54d55c33 100644
--- a/tools/binman/test/317_capsule_missing_index.dts
+++ b/tools/binman/test/capsule/missing_index.dts
diff --git a/tools/binman/test/316_capsule_missing_key.dts b/tools/binman/test/capsule/missing_key.dts
index a14a74ee779..a14a74ee779 100644
--- a/tools/binman/test/316_capsule_missing_key.dts
+++ b/tools/binman/test/capsule/missing_key.dts
diff --git a/tools/binman/test/315_capsule_oemflags.dts b/tools/binman/test/capsule/oemflags.dts
index 45853f69c31..45853f69c31 100644
--- a/tools/binman/test/315_capsule_oemflags.dts
+++ b/tools/binman/test/capsule/oemflags.dts
diff --git a/tools/binman/test/320_capsule_revert.dts b/tools/binman/test/capsule/revert.dts
index bd141ef2924..bd141ef2924 100644
--- a/tools/binman/test/320_capsule_revert.dts
+++ b/tools/binman/test/capsule/revert.dts
diff --git a/tools/binman/test/312_capsule_signed.dts b/tools/binman/test/capsule/signed.dts
index 4ab838efedd..4ab838efedd 100644
--- a/tools/binman/test/312_capsule_signed.dts
+++ b/tools/binman/test/capsule/signed.dts
diff --git a/tools/binman/test/314_capsule_signed_ver.dts b/tools/binman/test/capsule/signed_ver.dts
index 649b8ccb2df..649b8ccb2df 100644
--- a/tools/binman/test/314_capsule_signed_ver.dts
+++ b/tools/binman/test/capsule/signed_ver.dts
diff --git a/tools/binman/test/313_capsule_version.dts b/tools/binman/test/capsule/version.dts
index 19e7e833480..19e7e833480 100644
--- a/tools/binman/test/313_capsule_version.dts
+++ b/tools/binman/test/capsule/version.dts