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

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

Issue 1518533003: (Re-land) Switch remaining bots to new Telemetry GPU isolate. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebased. Undid TODO. 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 props(plat, flavor) + 81 props(plat, flavor) +
82 api.platform.name(plat) 82 api.platform.name(plat)
83 ) 83 )
84 84
85 yield ( 85 yield (
86 api.test('failures_keeps_going') + 86 api.test('failures_keeps_going') +
87 props('linux', 'Release') + 87 props('linux', 'Release') +
88 api.platform.name('linux') + 88 api.platform.name('linux') +
89 api.step_data('content_gl_tests', retcode=1) + 89 api.step_data('content_gl_tests', retcode=1) +
90 api.step_data('maps_pixel_test', 90 api.step_data('maps_pixel_test',
91 api.test_utils.canned_telemetry_gpu_output( 91 api.test_utils.canned_isolated_script_output(
92 passing=False, is_win=False, swarming=False)) 92 passing=False, is_win=False, swarming=False,
93 isolated_script_passing=False))
93 ) 94 )
94 95
95 yield ( 96 yield (
96 api.test('telemetry_gpu_test_harness_failure') + 97 api.test('telemetry_gpu_test_harness_failure') +
97 props('linux', 'Release') + 98 props('linux', 'Release') +
98 api.platform.name('linux') + 99 api.platform.name('linux') +
99 api.step_data('maps_pixel_test', 100 api.step_data('maps_pixel_test',
100 api.test_utils.canned_telemetry_gpu_output( 101 api.test_utils.canned_isolated_script_output(
101 passing=False, is_win=False, swarming=False, 102 passing=False, is_win=False, swarming=False),
102 empty_per_page_values=True),
103 retcode=255) 103 retcode=255)
104 ) 104 )
105 105
106 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes
107
108 yield ( 106 yield (
109 api.test('telemetry_gpu_fyi_test_harness_failure') + 107 api.test('telemetry_gpu_test_harness_failure_zero_retcode') +
110 props('linux', 'Release', 108 props('linux', 'Release') +
111 hashes=linux_fyi_hashes,
112 mastername='chromium.gpu.fyi') +
113 api.platform.name('linux') + 109 api.platform.name('linux') +
114 api.override_step_data('maps_pixel_test', 110 api.override_step_data('maps_pixel_test',
115 api.test_utils.canned_isolated_script_output( 111 api.test_utils.canned_isolated_script_output(
116 passing=False, is_win=False, swarming=False, 112 passing=False, is_win=False, swarming=False,
117 isolated_script_passing=False, valid=False), 113 isolated_script_passing=False, valid=False),
118 retcode=0) 114 retcode=0)
119 ) 115 )
120 116
121 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes 117 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes
122 118
123 yield ( 119 yield (
124 api.test('win_release_deqp') + 120 api.test('win_release_deqp') +
125 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) + 121 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) +
126 api.platform.name('win') 122 api.platform.name('win')
127 ) 123 )
128 124
125 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes
126
129 yield ( 127 yield (
130 api.test('linux_release_deqp') + 128 api.test('linux_release_deqp') +
131 named_props('linux', 'Release', 'linux release dEQP tester', 129 named_props('linux', 'Release', 'linux release dEQP tester',
132 linux_fyi_hashes) + 130 linux_fyi_hashes) +
133 api.platform.name('linux') 131 api.platform.name('linux')
134 ) 132 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698