changeset: 91596:f0a5be139717 user: Zachary Ware date: Mon Jul 07 15:07:46 2014 -0500 files: Tools/scripts/run_tests.py description: Issue #21907: Exit with the correct return code diff -r 1dca2e7ad5ad -r f0a5be139717 Tools/scripts/run_tests.py --- a/Tools/scripts/run_tests.py Mon Jul 07 21:52:49 2014 +0200 +++ b/Tools/scripts/run_tests.py Mon Jul 07 15:07:46 2014 -0500 @@ -50,7 +50,7 @@ print(' '.join(args)) if sys.platform == 'win32': from subprocess import call - call(args) + sys.exit(call(args)) else: os.execv(sys.executable, args)