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

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

Issue 1372723002: Empty per_page_values shouldn't imply test success (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Remove dead code Created 5 years, 2 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 # 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 api.test('%s_%s' % (plat, flavor_lower)) + 77 api.test('%s_%s' % (plat, flavor_lower)) +
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', retcode=1) 87 api.step_data('maps_pixel_test',
88 api.test_utils.canned_telemetry_gpu_output(
89 passing=False, is_win=False, swarming=False))
90 )
91
92 yield (
93 api.test('telemetry_gpu_test_harness_failure') +
94 props('linux', 'Release') +
95 api.platform.name('linux') +
96 api.step_data('maps_pixel_test',
97 api.test_utils.canned_telemetry_gpu_output(
98 passing=False, is_win=False, swarming=False,
99 empty_per_page_values=True),
100 retcode=255)
88 ) 101 )
89 102
90 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes 103 win_fyi_hashes = api.gpu.dummy_win_fyi_swarm_hashes
91 104
92 yield ( 105 yield (
93 api.test('win_release_deqp') + 106 api.test('win_release_deqp') +
94 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) + 107 named_props('win', 'Release', 'win release dEQP tester', win_fyi_hashes) +
95 api.platform.name('win') 108 api.platform.name('win')
96 ) 109 )
97 110
98 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes 111 linux_fyi_hashes = api.gpu.dummy_linux_fyi_swarm_hashes
99 112
100 yield ( 113 yield (
101 api.test('linux_release_deqp') + 114 api.test('linux_release_deqp') +
102 named_props('linux', 'Release', 'linux release dEQP tester', 115 named_props('linux', 'Release', 'linux release dEQP tester',
103 linux_fyi_hashes) + 116 linux_fyi_hashes) +
104 api.platform.name('linux') 117 api.platform.name('linux')
105 ) 118 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698