OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 5 |
6 # Recipe module for Skia Swarming test. | 6 # Recipe module for Skia Swarming test. |
7 | 7 |
8 | 8 |
9 DEPS = [ | 9 DEPS = [ |
10 'recipe_engine/json', | 10 'recipe_engine/json', |
11 'recipe_engine/path', | 11 'recipe_engine/path', |
12 'recipe_engine/platform', | 12 'recipe_engine/platform', |
13 'recipe_engine/properties', | 13 'recipe_engine/properties', |
14 'recipe_engine/raw_io', | 14 'recipe_engine/raw_io', |
15 'skia', | 15 'skia', |
16 ] | 16 ] |
17 | 17 |
18 | 18 |
19 TEST_BUILDERS = { | 19 TEST_BUILDERS = { |
20 'client.skia': { | 20 'client.skia': { |
21 'skiabot-linux-tester-000': [ | 21 'skiabot-linux-tester-000': [ |
22 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', | 22 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', |
23 ], | 23 ], |
24 'skiabot-win-tester-000': [ | 24 'skiabot-win-tester-000': [ |
25 'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release-Trybot' | 25 'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release-Trybot' |
26 ], | 26 ], |
27 'skiabot-nexus6-001': [ | 27 'skiabot-nexus6-001': [ |
28 'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', | 28 'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Release', |
29 ], | 29 ], |
| 30 'skiabot-linux-swarm-007': [ |
| 31 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SwarmingMSAN', |
| 32 ], |
30 'skiabot-linux-swarm-012': [ | 33 'skiabot-linux-swarm-012': [ |
31 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', | 34 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |
32 ], | 35 ], |
33 'skiabot-linux-swarm-013': [ | 36 'skiabot-linux-swarm-013': [ |
34 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot', | 37 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot', |
35 ], | 38 ], |
36 }, | 39 }, |
37 } | 40 } |
38 | 41 |
39 | 42 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 test += AndroidTestData(builder) | 91 test += AndroidTestData(builder) |
89 if 'Trybot' in builder: | 92 if 'Trybot' in builder: |
90 test += api.properties(issue=500, | 93 test += api.properties(issue=500, |
91 patchset=1, | 94 patchset=1, |
92 rietveld='https://codereview.chromium.org') | 95 rietveld='https://codereview.chromium.org') |
93 if 'Win' in builder: | 96 if 'Win' in builder: |
94 test += api.platform('win', 64) | 97 test += api.platform('win', 64) |
95 | 98 |
96 | 99 |
97 yield test | 100 yield test |
98 | |
OLD | NEW |