diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-07-30 01:08:07 -0400 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-07-30 03:14:24 -0400 |
commit | 3d18da0de3a3b650aa40e71a3215c9682db239a0 (patch) | |
tree | b11ba94df29b96689c889ab8340bff827c545d2c /run_project_tests.py | |
parent | a7c8a69afbdf8edd38f27f9b6f25daf1a7a5f25a (diff) | |
download | meson-3d18da0de3a3b650aa40e71a3215c9682db239a0.zip meson-3d18da0de3a3b650aa40e71a3215c9682db239a0.tar.gz meson-3d18da0de3a3b650aa40e71a3215c9682db239a0.tar.bz2 |
actually failfast, was not failing fast before
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 80b56bb..d517fd3 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) |