summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2015-11-03 11:06:24 -0500
committerDan Sinclair <dsinclair@chromium.org>2015-11-03 11:06:24 -0500
commitd1579c9b92b7f9c1d9e0fac1ecb8e3cb23875fca (patch)
tree9f22c4b31529bbb629b14fe369f8467d7540c245
parenta1215ba51a235fb7abcb995f0e768ea0176d9275 (diff)
downloadpdfium-d1579c9b92b7f9c1d9e0fac1ecb8e3cb23875fca.tar.xz
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 .
-rwxr-xr-xtesting/tools/run_corpus_tests.py2
-rwxr-xr-xtesting/tools/run_javascript_tests.py2
-rwxr-xr-xtesting/tools/run_pixel_tests.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py
index c7ff605475..dd81a2736d 100755
--- a/testing/tools/run_corpus_tests.py
+++ b/testing/tools/run_corpus_tests.py
@@ -9,7 +9,7 @@ import test_runner
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 2f468820dc..76d2379dbb 100755
--- a/testing/tools/run_javascript_tests.py
+++ b/testing/tools/run_javascript_tests.py
@@ -9,7 +9,7 @@ import test_runner
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 cb1b42ddaa..aad39c5600 100755
--- a/testing/tools/run_pixel_tests.py
+++ b/testing/tools/run_pixel_tests.py
@@ -9,7 +9,7 @@ import test_runner
def main():
runner = test_runner.TestRunner('pixel')
- runner.Run()
+ return runner.Run()
if __name__ == '__main__':
sys.exit(main())