commit | d1579c9b92b7f9c1d9e0fac1ecb8e3cb23875fca | [log] [tgz] |
---|---|---|
author | Dan Sinclair <dsinclair@chromium.org> | Tue Nov 03 11:06:24 2015 -0500 |
committer | Dan Sinclair <dsinclair@chromium.org> | Tue Nov 03 11:06:24 2015 -0500 |
tree | 9f22c4b31529bbb629b14fe369f8467d7540c245 | |
parent | a1215ba51a235fb7abcb995f0e768ea0176d9275 [diff] |
Return result of the test runner. We need to actually return the result of the test runner.... R=thestig@chromium.org Review URL: https://codereview.chromium.org/1413863011 .
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py index c7ff605..dd81a27 100755 --- a/testing/tools/run_corpus_tests.py +++ b/testing/tools/run_corpus_tests.py
@@ -9,7 +9,7 @@ def main(): runner = test_runner.TestRunner('corpus') - runner.Run() + return runner.Run() if __name__ == '__main__': sys.exit(main())
diff --git a/testing/tools/run_javascript_tests.py b/testing/tools/run_javascript_tests.py index 2f46882..76d2379 100755 --- a/testing/tools/run_javascript_tests.py +++ b/testing/tools/run_javascript_tests.py
@@ -9,7 +9,7 @@ def main(): runner = test_runner.TestRunner('javascript') - runner.Run() + return runner.Run() if __name__ == '__main__': sys.exit(main())
diff --git a/testing/tools/run_pixel_tests.py b/testing/tools/run_pixel_tests.py index cb1b42d..aad39c5 100755 --- a/testing/tools/run_pixel_tests.py +++ b/testing/tools/run_pixel_tests.py
@@ -9,7 +9,7 @@ def main(): runner = test_runner.TestRunner('pixel') - runner.Run() + return runner.Run() if __name__ == '__main__': sys.exit(main())