diff options
author | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 20:10:04 +0000 |
---|---|---|
committer | kbr@chromium.org <kbr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 20:10:04 +0000 |
commit | e66b592fc9776e7ac81fdba5fb6aec5f93857fe9 (patch) | |
tree | ff21141edd865da045f2b532c9a6e721c814f1e6 | |
parent | 061640b32aca7ec9a080dd2a29ce3b01e8ee118d (diff) | |
download | chromium_src-e66b592fc9776e7ac81fdba5fb6aec5f93857fe9.zip chromium_src-e66b592fc9776e7ac81fdba5fb6aec5f93857fe9.tar.gz chromium_src-e66b592fc9776e7ac81fdba5fb6aec5f93857fe9.tar.bz2 |
Switch Android GPU bot to use cloud storage for pixel reference images.
BUG=331125
R=navabi@chromium.org, navabi@google.com, skyostil@chromium.org
Review URL: https://codereview.chromium.org/97983005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243372 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/android/buildbot/bb_device_steps.py | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py index 26708cd..f59d373 100755 --- a/build/android/buildbot/bb_device_steps.py +++ b/build/android/buildbot/bb_device_steps.py @@ -452,13 +452,20 @@ def RunGPUTests(options): bb_annotations.PrintNamedStep('gpu_tests') revision = _GetRevision(options) - data_dir = os.path.join(DIR_BUILD_ROOT, 'content_gpu_data', 'telemetry') RunCmd(['content/test/gpu/run_gpu_test', - '--browser=android-content-shell', - '--generated-dir=%s' % os.path.join(data_dir, 'generated'), - '--reference-dir=%s' % os.path.join(data_dir, 'reference'), - '--build-revision=%s' % revision, - 'pixel']) + 'pixel', + '--browser', + 'android-content-shell', + '--build-revision', + str(revision), + '--upload-refimg-to-cloud-storage', + '--refimg-cloud-storage-bucket', + 'chromium-gpu-archive/reference-images', + '--os-type', + 'android', + '--test-machine-name', + EscapeBuilderName( + options.build_properties.get('buildername', 'noname'))]) bb_annotations.PrintNamedStep('webgl_conformance_tests') RunCmd(['content/test/gpu/run_gpu_test', |