| commit | e480a6a1f91e1167c33d08a208e3fabfee940584 | [log] [tgz] |
|---|---|---|
| author | Jan Tattermusch <jtattermusch@google.com> | Fri Oct 07 12:59:08 2016 +0200 |
| committer | Jan Tattermusch <jtattermusch@google.com> | Fri Oct 07 13:13:32 2016 +0200 |
| tree | 92fe611467ecb258bd44ad4e2496577677c17d84 | |
| parent | 602edbba8cf03279b3dc2e027ea07660332f806e [diff] [blame] |
dont eat run_tests.py errors on test failure
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 1683316..a6f3d40 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py
@@ -1423,7 +1423,7 @@ exit_code = 0 if BuildAndRunError.BUILD in errors: exit_code |= 1 - if BuildAndRunError.TEST in errors and not args.travis: + if BuildAndRunError.TEST in errors: exit_code |= 2 if BuildAndRunError.POST_TEST in errors: exit_code |= 4