| Index: build/android/run_tests.py
|
| diff --git a/build/android/run_tests.py b/build/android/run_tests.py
|
| index dbb08327196bdeea5e74a38c976b74858e671bb5..59118cf3b2a83d01f459ed37b95afac6bc973b72 100755
|
| --- a/build/android/run_tests.py
|
| +++ b/build/android/run_tests.py
|
| @@ -14,11 +14,10 @@ from pylib import cmd_helper
|
|
|
|
|
| if __name__ == '__main__':
|
| - args = ['python',
|
| - os.path.join(os.path.dirname(__file__), 'test_runner.py'),
|
| + args = [os.path.join(os.path.dirname(__file__), 'test_runner.py'),
|
| 'gtest'] + sys.argv[1:]
|
| logging.warning('*' * 80)
|
| logging.warning('This script is deprecated and will be removed soon.')
|
| logging.warning('Use the following instead: %s', ' '.join(args))
|
| logging.warning('*' * 80)
|
| - sys.exit(cmd_helper.RunCmd(args))
|
| + sys.exit(1)
|
|
|