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

Side by Side Diff: scripts/slave/recipe_modules/gpu/common.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
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'gl_unittests', 9 'gl_unittests',
10 'gles2_conform_test', 10 'gles2_conform_test',
11 'gpu_unittests', 11 'gpu_unittests',
12 'tab_capture_end2end_tests', 12 'tab_capture_end2end_tests',
13 'telemetry_gpu_test',
14 )
15
16 # This is temporary until the bots have all switched over to the new
17 # isolate.
18 TELEMETRY_GPU_NEW_ISOLATE = (
19 'telemetry_gpu_new_test', 13 'telemetry_gpu_new_test',
20 ) 14 )
21 15
22 # Until the media-only tests are extracted from content_unittests and 16 # Until the media-only tests are extracted from content_unittests and
23 # these both can be run on the commit queue with 17 # these both can be run on the commit queue with
24 # --require-audio-hardware-for-testing, run them only on the FYI 18 # --require-audio-hardware-for-testing, run them only on the FYI
25 # waterfall. 19 # waterfall.
26 # TODO(jmadill): Run them on all GPU bots once stable 20 # TODO(jmadill): Run them on all GPU bots once stable
27 FYI_ONLY_GPU_ISOLATES = ( 21 FYI_ONLY_GPU_ISOLATES = (
28 'audio_unittests', 22 'audio_unittests',
(...skipping 24 matching lines...) Expand all
53 'angle_deqp_gles2_tests', 47 'angle_deqp_gles2_tests',
54 ) 48 )
55 49
56 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = ( 50 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = (
57 'angle_deqp_gles3_tests', 51 'angle_deqp_gles3_tests',
58 ) 52 )
59 53
60 # A list of all the Linux FYI isolates for testing 54 # A list of all the Linux FYI isolates for testing
61 ALL_LINUX_FYI_GPU_ISOLATES = ( 55 ALL_LINUX_FYI_GPU_ISOLATES = (
62 GPU_ISOLATES + 56 GPU_ISOLATES +
63 TELEMETRY_GPU_NEW_ISOLATE + # TODO(kbr): remove; temporary only.
64 FYI_GPU_ISOLATES + 57 FYI_GPU_ISOLATES +
65 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES 58 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES
66 ) 59 )
67 60
68 # A list of all Windows FYI isolates for testing 61 # A list of all Windows FYI isolates for testing
69 ALL_WIN_FYI_GPU_ISOLATES = ( 62 ALL_WIN_FYI_GPU_ISOLATES = (
70 GPU_ISOLATES + 63 GPU_ISOLATES +
71 FYI_GPU_ISOLATES + 64 FYI_GPU_ISOLATES +
72 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + 65 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES +
73 WIN_ONLY_FYI_ONLY_GPU_ISOLATES 66 WIN_ONLY_FYI_ONLY_GPU_ISOLATES
74 ) 67 )
75 68
76 # A list of all ANGLE trybot isolates for testing 69 # A list of all ANGLE trybot isolates for testing
77 ALL_ANGLE_TRYBOT_GPU_ISOLATES = ( 70 ALL_ANGLE_TRYBOT_GPU_ISOLATES = (
78 GPU_ISOLATES + 71 GPU_ISOLATES +
79 FYI_GPU_ISOLATES + 72 FYI_GPU_ISOLATES +
80 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES 73 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES
81 ) 74 )
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698