From 54a96ac0ad071ba90a1eff05fad5376f4ba2463e Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Thu, 2 Jun 2016 09:43:50 -0700
Subject: spec_tests.py: exit code is sum of failures and errors.

---
 test/spec_tests.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

(limited to 'test')

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'])
-- 
cgit v1.2.3