summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2026-03-06 11:12:49 -0700
committerSimon Glass <[email protected]>2026-03-18 06:14:16 -0600
commitdcdf2751c61ce3f89a781b62cac7f087bf6deab9 (patch)
treead770400cc1d4a30513a9f4c2ed2f32bdd5fecf7 /tools
parent0cab35362d7720975e7869d2bc3cc23cec73b376 (diff)
binman: Remove the coverage allow_failures list
Now that iMX8 has full coverage the allow_failures list in RunTestCoverage() is no longer needed. Drop the list. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/binman/main.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/binman/main.py b/tools/binman/main.py
index fa5ad79ca0e..a0c775fd629 100755
--- a/tools/binman/main.py
+++ b/tools/binman/main.py
@@ -95,15 +95,10 @@ def RunTestCoverage(toolpath, build_dir, args):
for path in toolpath:
extra_args += ' --toolpath %s' % path
- # Some files unfortunately don't thave the required test coverage. This will
- # eventually be fixed, but exclude them for now
test_util.run_test_coverage('tools/binman/binman', None,
['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*',
'tools/u_boot_pylib/*'],
- build_dir, all_set, extra_args or None, args=args,
- allow_failures=['tools/binman/btool/cst.py',
- 'tools/binman/etype/nxp_imx8mcst.py',
- 'tools/binman/etype/nxp_imx8mimage.py'])
+ build_dir, all_set, extra_args or None, args=args)
def RunBinman(args):
"""Main entry point to binman once arguments are parsed