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

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 105183002: Store GPU pixel test reference images outside source tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_device_steps.py
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index e2f5e90597e401304dfd91ec293dd12f39bdc421..3323d15b7d69fb22b72bcdfe377c382c7e06e412 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -451,8 +451,14 @@ def RunGPUTests(options):
InstallApk(options, INSTRUMENTATION_TESTS['ContentShell'], False)
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', 'pixel'])
+ '--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'])
bb_annotations.PrintNamedStep('webgl_conformance_tests')
RunCmd(['content/test/gpu/run_gpu_test',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698