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

Side by Side Diff: scripts/slave/recipe_modules/gpu/api.py

Issue 420443004: Reenable maps_pixel_test including in gatekeeper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from slave import recipe_api 5 from slave import recipe_api
6 6
7 import common 7 import common
8 8
9 SIMPLE_TESTS_TO_RUN = [ 9 SIMPLE_TESTS_TO_RUN = [
10 'content_gl_tests', 10 'content_gl_tests',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 # Copy the test list to avoid mutating it. 223 # Copy the test list to avoid mutating it.
224 basic_tests = list(SIMPLE_TESTS_TO_RUN) 224 basic_tests = list(SIMPLE_TESTS_TO_RUN)
225 # Only run tests on the tree closers and on the CQ which are 225 # Only run tests on the tree closers and on the CQ which are
226 # available in the open-source repository. 226 # available in the open-source repository.
227 if self.is_fyi_waterfall: 227 if self.is_fyi_waterfall:
228 basic_tests += SIMPLE_NON_OPEN_SOURCE_TESTS_TO_RUN 228 basic_tests += SIMPLE_NON_OPEN_SOURCE_TESTS_TO_RUN
229 for test in basic_tests: 229 for test in basic_tests:
230 yield self._run_isolate(test, args=['--use-gpu-in-tests']) 230 yield self._run_isolate(test, args=['--use-gpu-in-tests'])
231 231
232 # Google Maps Pixel tests. 232 # Google Maps Pixel tests.
233 # TODO(kbr): re-enable on Win try servers. crbug.com/395914 233 yield self._run_isolated_telemetry_gpu_test(
234 if not (self.m.platform.is_win and self.m.tryserver.is_tryserver): 234 'maps', name='maps_pixel_test',
235 yield self._run_isolated_telemetry_gpu_test( 235 args=[
236 'maps', name='maps_pixel_test', 236 '--build-revision',
237 args=[ 237 str(self._build_revision),
238 '--build-revision', 238 '--test-machine-name',
239 str(self._build_revision), 239 self.m.properties['buildername']
240 '--test-machine-name', 240 ])
241 self.m.properties['buildername']
242 ])
243 241
244 # Pixel tests. 242 # Pixel tests.
245 # Try servers pull their results from cloud storage; the other 243 # Try servers pull their results from cloud storage; the other
246 # tester bots send their results to cloud storage. 244 # tester bots send their results to cloud storage.
247 # 245 #
248 # NOTE that ALL of the bots need to share a bucket. They can't be split 246 # NOTE that ALL of the bots need to share a bucket. They can't be split
249 # by mastername/waterfall, because the try servers are on a different 247 # by mastername/waterfall, because the try servers are on a different
250 # waterfall (tryserver.chromium) than the other test bots (chromium.gpu 248 # waterfall (tryserver.chromium) than the other test bots (chromium.gpu
251 # and chromium.webkit, as of this writing). This means there will be 249 # and chromium.webkit, as of this writing). This means there will be
252 # races between bots with identical OS/GPU combinations, on different 250 # races between bots with identical OS/GPU combinations, on different
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 yield self.m.isolate.run_telemetry_test( 346 yield self.m.isolate.run_telemetry_test(
349 'telemetry_gpu_test', 347 'telemetry_gpu_test',
350 test, 348 test,
351 self._build_revision, 349 self._build_revision,
352 self._webkit_revision, 350 self._webkit_revision,
353 args=test_args, 351 args=test_args,
354 name=name, 352 name=name,
355 master_class_name=self._master_class_name_for_testing, 353 master_class_name=self._master_class_name_for_testing,
356 spawn_dbus=True, 354 spawn_dbus=True,
357 **kwargs) 355 **kwargs)
OLDNEW
« no previous file with comments | « scripts/slave/gatekeeper.json ('k') | scripts/slave/recipes/gpu/build_and_test.expected/win_debug_tryserver.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698