Chromium Code Reviews| Index: build/android/run_browser_tests.py |
| diff --git a/build/android/run_browser_tests.py b/build/android/run_browser_tests.py |
| index b19ff35f846bec270e71ecf11a58cc20c959b1c0..4ac8e51c85ab2ef1125a2c618a20f1597d033144 100755 |
| --- a/build/android/run_browser_tests.py |
| +++ b/build/android/run_browser_tests.py |
| @@ -6,24 +6,9 @@ |
| """Runs content browser tests.""" |
| -import optparse |
| +import subprocess |
| import sys |
| -from pylib.browsertests import dispatch |
| -from pylib.utils import run_tests_helper |
| -from pylib.utils import test_options_parser |
| - |
| -def main(argv): |
| - option_parser = optparse.OptionParser() |
| - test_options_parser.AddGTestOptions(option_parser) |
| - options, args = option_parser.parse_args(argv) |
| - |
| - if len(args) > 1: |
| - option_parser.error('Unknown argument: %s' % args[1:]) |
| - |
| - run_tests_helper.SetLogLevel(options.verbose_count) |
| - return dispatch.Dispatch(options) |
| - |
| - |
| if __name__ == '__main__': |
| - sys.exit(main(sys.argv)) |
| + args = ["./run_all_tests.py", "--browser"] + sys.argv[1:] |
|
frankf
2013/06/11 01:53:21
Print a warning that this script is being deprecat
gkanwar
2013/06/12 01:27:32
Done.
|
| + sys.exit(subprocess.call(args)) |