Chromium Code Reviews| OLD | NEW |
|---|---|
| 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', | 13 'telemetry_gpu_test', |
| 14 ) | 14 ) |
| 15 | 15 |
| 16 # Until the media-only tests are extracted from content_unittests and | 16 # Until the media-only tests are extracted from content_unittests and |
| 17 # these both can be run on the commit queue with | 17 # these both can be run on the commit queue with |
| 18 # --require-audio-hardware-for-testing, run them only on the FYI | 18 # --require-audio-hardware-for-testing, run them only on the FYI |
| 19 # waterfall. | 19 # waterfall. |
| 20 # TODO(jmadill): Run them on all GPU bots once stable | 20 # TODO(jmadill): Run them on all GPU bots once stable |
| 21 FYI_ONLY_GPU_ISOLATES = ( | 21 FYI_ONLY_GPU_ISOLATES = ( |
| 22 'audio_unittests', | 22 'audio_unittests', |
| 23 'content_unittests', | 23 'content_unittests', |
| 24 'telemetry_gpu_new_test', | |
|
bajones
2015/12/07 19:02:14
Silly nit: "new_test" seems very non-descript and
Ken Russell (switch to Gerrit)
2015/12/07 19:03:25
The new target name is only temporary and isn't tr
| |
| 24 ) | 25 ) |
| 25 | 26 |
| 26 # Until we have more capacity, run angle_end2end_tests only on the | 27 # Until we have more capacity, run angle_end2end_tests only on the |
| 27 # FYI waterfall and the ANGLE_TRYBOTS | 28 # FYI waterfall and the ANGLE_TRYBOTS |
| 28 ANGLE_TRYBOTS_GPU_ISOLATES = ( | 29 ANGLE_TRYBOTS_GPU_ISOLATES = ( |
| 29 'angle_end2end_tests', | 30 'angle_end2end_tests', |
| 30 ) | 31 ) |
| 31 | 32 |
| 32 # Slower tests that we should only run on Release configurations | 33 # Slower tests that we should only run on Release configurations |
| 33 # for the ANGLE try bots. | 34 # for the ANGLE try bots. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + | 66 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + |
| 66 WIN_ONLY_FYI_ONLY_GPU_ISOLATES | 67 WIN_ONLY_FYI_ONLY_GPU_ISOLATES |
| 67 ) | 68 ) |
| 68 | 69 |
| 69 # A list of all ANGLE trybot isolates for testing | 70 # A list of all ANGLE trybot isolates for testing |
| 70 ALL_ANGLE_TRYBOT_GPU_ISOLATES = ( | 71 ALL_ANGLE_TRYBOT_GPU_ISOLATES = ( |
| 71 GPU_ISOLATES + | 72 GPU_ISOLATES + |
| 72 FYI_GPU_ISOLATES + | 73 FYI_GPU_ISOLATES + |
| 73 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES | 74 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES |
| 74 ) | 75 ) |
| OLD | NEW |