Chromium Code Reviews| 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 d95529888c7d956963703acdff80e1a2704c3932..71ffb19a602e86a4d1968c2f8230f8e1956e305b 100755 |
| --- a/build/android/buildbot/bb_device_steps.py |
| +++ b/build/android/buildbot/bb_device_steps.py |
| @@ -487,8 +487,10 @@ def RunWebRTCNativeTests(options): |
| def RunGPUTests(options): |
|
navabi
2014/05/20 20:47:17
I think the PrintNamedStep should go here. Even wi
alokp
2014/05/23 17:38:27
OK. I added a gpu_tests step before the install, b
|
| InstallApk(options, INSTRUMENTATION_TESTS['ContentShell'], False) |
| - bb_annotations.PrintNamedStep('gpu_tests') |
| revision = _GetRevision(options) |
| + builder_name = options.build_properties.get('buildername', 'noname') |
| + |
| + bb_annotations.PrintNamedStep('pixel_tests') |
| RunCmd(['content/test/gpu/run_gpu_test.py', |
| 'pixel', |
| '--browser', |
| @@ -501,14 +503,23 @@ def RunGPUTests(options): |
| '--os-type', |
| 'android', |
| '--test-machine-name', |
| - EscapeBuilderName( |
| - options.build_properties.get('buildername', 'noname'))]) |
| + EscapeBuilderName(builder_name)]) |
| bb_annotations.PrintNamedStep('webgl_conformance_tests') |
| RunCmd(['content/test/gpu/run_gpu_test.py', |
| '--browser=android-content-shell', 'webgl_conformance', |
| '--webgl-conformance-version=1.0.1']) |
| + bb_annotations.PrintNamedStep('gpu_rasterization_tests') |
| + RunCmd(['content/test/gpu/run_gpu_test.py', |
| + 'gpu_rasterization', |
| + '--browser', |
| + 'android-content-shell', |
| + '--build-revision', |
| + str(revision), |
| + '--test-machine-name', |
| + EscapeBuilderName(builder_name)]) |
| + |
| def GetTestStepCmds(): |
| return [ |