From 69d2d013f19c238fecb259f197d6e7203cd38031 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Mon, 7 Jul 2014 15:07:46 -0500 Subject: Issue #21907: Exit with the correct return code --- Tools/scripts/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/run_tests.py b/Tools/scripts/run_tests.py index b451a75..b582e13 100644 --- a/Tools/scripts/run_tests.py +++ b/Tools/scripts/run_tests.py @@ -50,7 +50,7 @@ def main(regrtest_args): print(' '.join(args)) if sys.platform == 'win32': from subprocess import call - call(args) + sys.exit(call(args)) else: os.execv(sys.executable, args) -- cgit v0.12