From 6e98511cf1498d7fa445d95a74bd09a60ff95a30 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 16 Oct 2017 16:16:14 -0400 Subject: [PATCH] Add stdout notice if any stage fails --- qa/zcash/full_test_suite.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/zcash/full_test_suite.py b/qa/zcash/full_test_suite.py index ecdd3a39a..e01845635 100755 --- a/qa/zcash/full_test_suite.py +++ b/qa/zcash/full_test_suite.py @@ -185,6 +185,7 @@ def main(): passed &= run_stage(s) if not passed: + print("!!! One or more test stages failed !!!") sys.exit(1) if __name__ == '__main__':