[PATCH 5/6] binman: Remove the coverage allow_failures list
Simon Glass
sjg at chromium.org
Wed Feb 25 23:50:34 CET 2026
From: Simon Glass <simon.glass at canonical.com>
Now that iMX8 has full coverage the allow_failures list in
RunTestCoverage() is no longer needed.
Drop the list.
Signed-off-by: Simon Glass <simon.glass at canonical.com>
---
tools/binman/main.py | 7 +------
1 file changed, 1 insertion(+), 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
--
2.43.0
More information about the U-Boot
mailing list