From 3d18da0de3a3b650aa40e71a3215c9682db239a0 Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Tue, 30 Jul 2019 01:08:07 -0400 Subject: [PATCH] actually failfast, was not failing fast before --- run_project_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_project_tests.py b/run_project_tests.py index 80b56bb17..d517fd3bc 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -767,8 +767,8 @@ def _run_tests(all_tests, log_name_base, failfast, extra_args): stdeel = ET.SubElement(current_test, 'system-err') stdeel.text = result.stde - if failfast and failing_tests > 0: - break + if failfast and failing_tests > 0: + break print("\nTotal configuration time: %.2fs" % conf_time) print("Total build time: %.2fs" % build_time)