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

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

Issue 1238313002: Temporarily disable dEQP from the GPU FYI waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 GPU_ISOLATES = ( 5 GPU_ISOLATES = (
6 'angle_unittests', 6 'angle_unittests',
7 'content_gl_tests', 7 'content_gl_tests',
8 'gl_tests', 8 'gl_tests',
9 'gles2_conform_test', 9 'gles2_conform_test',
10 'gpu_unittests', 10 'gpu_unittests',
(...skipping 10 matching lines...) Expand all
21 'content_unittests', 21 'content_unittests',
22 ) 22 )
23 23
24 # This will be folded into the list above once ANGLE is running on all 24 # This will be folded into the list above once ANGLE is running on all
25 # platforms. 25 # platforms.
26 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES = ( 26 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES = (
27 'angle_end2end_tests', 27 'angle_end2end_tests',
28 ) 28 )
29 29
30 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = ( 30 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = (
31 'angle_deqp_tests', 31 # TODO(jmadill): re-enable this once the GLES3 tests are ready
32 # 'angle_deqp_tests',
32 ) 33 )
33 34
34 # A list of all Windows FYI isolates for testing 35 # A list of all Windows FYI isolates for testing
35 ALL_WIN_FYI_GPU_ISOLATES = ( 36 ALL_WIN_FYI_GPU_ISOLATES = (
36 GPU_ISOLATES + 37 GPU_ISOLATES +
37 FYI_ONLY_GPU_ISOLATES + 38 FYI_ONLY_GPU_ISOLATES +
38 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + 39 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES +
39 WIN_ONLY_FYI_ONLY_GPU_ISOLATES 40 WIN_ONLY_FYI_ONLY_GPU_ISOLATES
40 ) 41 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipes/gpu/build_and_test.expected/win_release_fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698