diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-06-29 09:56:56 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-06-29 09:56:56 -0700 |
commit | 202930ad5438fca5e0f04da034826a98ba5b1f6d (patch) | |
tree | 35395fb831da6789bbd3d394eb8dcb5ec1c958d6 | |
parent | 5c7bfc4fa47e979aa482fbb365ba55d7382b5321 (diff) | |
parent | bb30971cecb6a2e0af4bcea95995892567e68b95 (diff) |
Merge pull request #2241 from ctiller/pure-applesauce
Fix run_tests forever mode
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index a0e0fac27b..fd90613ad6 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -496,7 +496,7 @@ class TestCache(object): self.parse(json.loads(f.read())) -def _build_and_run(check_cancelled, newline_on_success, travis, cache, xml_report): +def _build_and_run(check_cancelled, newline_on_success, travis, cache, xml_report=None): """Do one pass of building & running tests.""" # build latest sequentially if not jobset.run(build_steps, maxjobs=1, |