mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
dtoc: Return a non-zero exit code when tests fail
At present 'dtoc -t' return a success code even if some of the tests fail. Fix this by checking the test result and setting the exit code. This allows 'make qcheck' to function as expected. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
75551c8bfc
commit
1000096b06
1 changed files with 6 additions and 1 deletions
|
@ -71,6 +71,10 @@ def run_tests(args):
|
|||
print(err)
|
||||
for _, err in result.failures:
|
||||
print(err)
|
||||
if result.errors or result.failures:
|
||||
print('dtoc tests FAILED')
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def RunTestCoverage():
|
||||
"""Run the tests and check that we get 100% coverage"""
|
||||
|
@ -101,7 +105,8 @@ parser.add_option('-T', '--test-coverage', action='store_true',
|
|||
|
||||
# Run our meagre tests
|
||||
if options.test:
|
||||
run_tests(args)
|
||||
ret_code = run_tests(args)
|
||||
sys.exit(ret_code)
|
||||
|
||||
elif options.test_coverage:
|
||||
RunTestCoverage()
|
||||
|
|
Loading…
Reference in a new issue