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

Unified Diff: chrome/test/chromedriver/run_buildbot_steps.py

Issue 23125011: [chromedriver] Run tests on stable and beta channel chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/buildbot/bb_device_steps.py ('k') | chrome/test/chromedriver/test/run_all_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/run_buildbot_steps.py
diff --git a/chrome/test/chromedriver/run_buildbot_steps.py b/chrome/test/chromedriver/run_buildbot_steps.py
index af4a10b811e973453489b3abd36791f6399e335a..3bd02a592046bbd7596077bb617dfb7b663d16e3 100755
--- a/chrome/test/chromedriver/run_buildbot_steps.py
+++ b/chrome/test/chromedriver/run_buildbot_steps.py
@@ -181,15 +181,18 @@ def main():
'', '--android-package',
help='Application package name, if running tests on Android.')
parser.add_option(
+ '', '--android', action='store_true', default=False,
+ help='Run tests on stable and beta channels on Android.')
frankf 2013/08/20 18:13:50 Why don't you just list the package names, instead
+ parser.add_option(
'-r', '--revision', type='string', default=None,
help='Chromium revision')
options, _ = parser.parse_args()
- if not options.android_package:
+ if not options.android_package and not options.android:
KillChromes()
CleanTmpDir()
- if options.android_package:
+ if options.android_package or options.android:
Download()
else:
if not options.revision:
@@ -206,6 +209,8 @@ def main():
]
if options.android_package:
cmd.append('--android-package=' + options.android_package)
+ if options.android:
+ cmd.append('--android')
passed = (util.RunCommand(cmd) == 0)
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | chrome/test/chromedriver/test/run_all_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698