diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 09:43:50 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 09:43:50 -0700 |
commit | 54a96ac0ad071ba90a1eff05fad5376f4ba2463e (patch) | |
tree | 0a5caa23f2cf034a777974664b9be047bb6b763a /test/spec_tests.py | |
parent | 60bd289c18e06e199260ee374ef29e3017bc4a90 (diff) |
spec_tests.py: exit code is sum of failures and errors.
Diffstat (limited to 'test/spec_tests.py')
-rwxr-xr-x | test/spec_tests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/spec_tests.py b/test/spec_tests.py index 1521a82..365ff75 100755 --- a/test/spec_tests.py +++ b/test/spec_tests.py @@ -140,7 +140,4 @@ if __name__ == "__main__": for test in tests: do_test(test, args.normalize, result_counts) out("{pass} passed, {fail} failed, {error} errored, {skip} skipped\n".format(**result_counts)) - if result_counts['fail'] == 0 and result_counts['error'] == 0: - exit(0) - else: - exit(1) + exit(result_counts['fail'] + result_counts['error']) |