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

Side by Side Diff: scripts/slave/recipes/gpu/download_and_test.py

Issue 1512093002: Revert "Switch remaining bots to new Telemetry GPU isolate." (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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 unified diff | Download patch
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 # This recipe is intended to control all of the GPU testers on the 5 # This recipe is intended to control all of the GPU testers on the
6 # following waterfalls: 6 # following waterfalls:
7 # chromium.gpu 7 # chromium.gpu
8 # chromium.gpu.fyi 8 # chromium.gpu.fyi
9 # chromium.webkit 9 # chromium.webkit
10 # tryserver.chromium.* 10 # tryserver.chromium.*
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 props(plat, flavor) + 78 props(plat, flavor) +
79 api.platform.name(plat) 79 api.platform.name(plat)
80 ) 80 )
81 81
82 yield ( 82 yield (
83 api.test('failures_keeps_going') + 83 api.test('failures_keeps_going') +
84 props('linux', 'Release') + 84 props('linux', 'Release') +
85 api.platform.name('linux') + 85 api.platform.name('linux') +
86 api.step_data('content_gl_tests', retcode=1) + 86 api.step_data('content_gl_tests', retcode=1) +
87 api.step_data('maps_pixel_test', 87 api.step_data('maps_pixel_test',
88 api.test_utils.canned_isolated_script_output( 88 api.test_utils.canned_telemetry_gpu_output(
89 passing=False, is_win=False, swarming=False, 89 passing=False, is_win=False, swarming=False))
90 isolated_script_passing=False))
91 ) 90 )
92 91
93 yield ( 92 yield (
94 api.test('telemetry_gpu_test_harness_failure') + 93 api.test('telemetry_gpu_test_harness_failure') +
95 props('linux', 'Release') + 94 props('linux', 'Release') +
96 api.platform.name('linux') + 95 api.platform.name('linux') +
97 api.step_data('maps_pixel_test', 96 api.step_data('maps_pixel_test',
98 api.test_utils.canned_isolated_script_output( 97 api.test_utils.canned_telemetry_gpu_output(
99 passing=False, is_win=False, swarming=False), 98 passing=False, is_win=False, swarming=False,
99 empty_per_page_values=True),
100 retcode=255) 100 retcode=255)
101 ) 101 )
102 102
103 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes 103 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes
104 104
105 yield ( 105 yield (
106 api.test('win_release_deqp') + 106 api.test('win_release_deqp') +
107 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) + 107 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) +
108 api.platform.name('win') 108 api.platform.name('win')
109 ) 109 )
110 110
111 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes 111 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes
112 112
113 yield ( 113 yield (
114 api.test('linux_release_deqp') + 114 api.test('linux_release_deqp') +
115 named_props('linux', 'Release', 'linux release dEQP tester', 115 named_props('linux', 'Release', 'linux release dEQP tester',
116 linux_fyi_hashes) + 116 linux_fyi_hashes) +
117 api.platform.name('linux') 117 api.platform.name('linux')
118 ) 118 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698