[chromedriver] Run tests on stable and beta channel chrome.

BUG=274681
TEST=Ran locally

Review URL: https://chromiumcodereview.appspot.com/23125011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@219079 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
craigdh@chromium.org 2013-08-22 19:46:02 +00:00
Родитель 3f1a145ca7
Коммит 64778e480a
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -124,7 +124,10 @@ def RunChromeDriverTests(_):
"""Run all the steps for running chromedriver tests."""
bb_annotations.PrintNamedStep('chromedriver_annotation')
RunCmd(['chrome/test/chromedriver/run_buildbot_steps.py',
'--android-package=%s' % constants.CHROMIUM_TEST_SHELL_PACKAGE])
'--android-packages=%s,%s,%s' %
(constants.CHROMIUM_TEST_SHELL_PACKAGE,
constants.CHROME_STABLE_PACKAGE,
constants.CHROME_BETA_PACKAGE)])
def InstallApk(options, test, print_step=False):
"""Install an apk to all phones.

Просмотреть файл

@ -18,6 +18,9 @@ CHROME_PACKAGE = 'com.google.android.apps.chrome'
CHROME_ACTIVITY = 'com.google.android.apps.chrome.Main'
CHROME_DEVTOOLS_SOCKET = 'chrome_devtools_remote'
CHROME_STABLE_PACKAGE = 'com.android.chrome'
CHROME_BETA_PACKAGE = 'com.chrome.beta'
CHROME_TESTS_PACKAGE = 'com.google.android.apps.chrome.tests'
LEGACY_BROWSER_PACKAGE = 'com.google.android.browser'