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

Side by Side Diff: infra/bots/recipes/swarm_test.py

Issue 2355883002: Disable failing unit tests on adreno vulkan (Closed)
Patch Set: Created 4 years, 3 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 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 'build/file', 10 'build/file',
(...skipping 12 matching lines...) Expand all
23 23
24 TEST_BUILDERS = { 24 TEST_BUILDERS = {
25 'client.skia': { 25 'client.skia': {
26 'skiabot-linux-swarm-000': [ 26 'skiabot-linux-swarm-000': [
27 'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Release-GN_Android', 27 'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Release-GN_Android',
28 'Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-GN_Android', 28 'Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-GN_Android',
29 'Test-Android-Clang-GalaxyS3-GPU-Mali400-arm-Debug-GN_Android', 29 'Test-Android-Clang-GalaxyS3-GPU-Mali400-arm-Debug-GN_Android',
30 'Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-GN_Android', 30 'Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-GN_Android',
31 'Test-Android-Clang-Nexus10-GPU-MaliT604-arm-Release-GN_Android', 31 'Test-Android-Clang-Nexus10-GPU-MaliT604-arm-Release-GN_Android',
32 'Test-Android-Clang-Nexus6-GPU-Adreno420-arm-Debug-GN_Android', 32 'Test-Android-Clang-Nexus6-GPU-Adreno420-arm-Debug-GN_Android',
33 'Test-Android-Clang-Nexus6p-GPU-Adreno430-arm64-Debug-GN_Android_Vulkan',
33 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-GN_Android', 34 'Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-GN_Android',
34 'Test-Android-Clang-Nexus9-CPU-Denver-arm64-Debug-GN_Android', 35 'Test-Android-Clang-Nexus9-CPU-Denver-arm64-Debug-GN_Android',
35 'Test-Android-Clang-NexusPlayer-CPU-SSE4-x86-Release-GN_Android', 36 'Test-Android-Clang-NexusPlayer-CPU-SSE4-x86-Release-GN_Android',
36 'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug', 37 'Test-Mac-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Debug',
37 'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Debug', 38 'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Debug',
38 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer', 39 'Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer',
39 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug', 40 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug',
40 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', 41 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
41 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN', 42 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN',
42 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN', 43 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 320
320 if 'ANGLE' in bot and 'Debug' in bot: 321 if 'ANGLE' in bot and 'Debug' in bot:
321 match.append('~GLPrograms') # skia:4717 322 match.append('~GLPrograms') # skia:4717
322 323
323 if 'MSAN' in bot: 324 if 'MSAN' in bot:
324 match.extend(['~Once', '~Shared']) # Not sure what's up with these tests. 325 match.extend(['~Once', '~Shared']) # Not sure what's up with these tests.
325 326
326 if 'TSAN' in bot: 327 if 'TSAN' in bot:
327 match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots. 328 match.extend(['~ReadWriteAlpha']) # Flaky on TSAN-covered on nvidia bots.
328 329
330 if 'Vulkan' in bot and 'Adreno' in bot:
331 # skia:5777
332 match.extend(['~XfermodeImageFilterCroppedInput',
333 '~GrTextureStripAtlasFlush',
334 '~CopySurface'])
335
329 if blacklisted: 336 if blacklisted:
330 args.append('--blacklist') 337 args.append('--blacklist')
331 args.extend(blacklisted) 338 args.extend(blacklisted)
332 339
333 if match: 340 if match:
334 args.append('--match') 341 args.append('--match')
335 args.extend(match) 342 args.extend(match)
336 343
337 # These bots run out of memory running RAW codec tests. Do not run them in 344 # These bots run out of memory running RAW codec tests. Do not run them in
338 # parallel 345 # parallel
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 api.properties( 655 api.properties(
649 buildername=builder, 656 buildername=builder,
650 mastername='client.skia', 657 mastername='client.skia',
651 slavename='skiabot-linux-swarm-000', 658 slavename='skiabot-linux-swarm-000',
652 buildnumber=5, 659 buildnumber=5,
653 path_config='kitchen', 660 path_config='kitchen',
654 swarm_out_dir='[SWARM_OUT_DIR]', 661 swarm_out_dir='[SWARM_OUT_DIR]',
655 revision='abc123', 662 revision='abc123',
656 **gerrit_kwargs) 663 **gerrit_kwargs)
657 ) 664 )
OLDNEW
« no previous file with comments | « no previous file | infra/bots/recipes/swarm_test.expected/Test-Android-Clang-Nexus6p-GPU-Adreno430-arm64-Debug-GN_Android_Vulkan.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698