Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3634)

Unified Diff: build/android/run_browser_tests.py

Issue 18514008: Relands test_runner.py, updates buildbot scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moves test_suite option back into gtest only Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/utils/test_options_parser.py ('k') | build/android/run_instrumentation_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..045894da49d772746adac93d64bb64ee28586bc3 100755
--- a/build/android/run_browser_tests.py
+++ b/build/android/run_browser_tests.py
@@ -4,26 +4,21 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Runs content browser tests."""
+"""Runs content_browsertests."""
-import optparse
+import logging
+import os
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)
+from pylib import cmd_helper
if __name__ == '__main__':
- sys.exit(main(sys.argv))
+ args = ['python',
+ os.path.join(os.path.dirname(__file__), 'test_runner.py'),
+ 'content_browsertests'] + 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))
« no previous file with comments | « build/android/pylib/utils/test_options_parser.py ('k') | build/android/run_instrumentation_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698