1# Copyright 2021 The ANGLE Project Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# This is a .pyl, or "Python Literal", file. You can treat it just like a 6# .json file, with the following exceptions: 7# * all keys must be quoted (use single quotes, please); 8# * comments are allowed, using '#' syntax; and 9# * trailing commas are allowed. 10# 11# For more info see Chromium's test_suite_exceptions.pyl in testing/buildbot. 12 13{ 14 'angle_end2end_tests': { 15 'modifications': { 16 # anglebug.com/7874 suspecting device lost caused by multiprocess 17 'win10-x64-exp-intel': { 18 'args': [ 19 '--max-processes=1', 20 ], 21 'swarming': { 22 'shards': 4, 23 }, 24 }, 25 'win10-x64-intel': { 26 'args': [ 27 '--max-processes=1', 28 ], 29 'swarming': { 30 'shards': 4, 31 }, 32 }, 33 }, 34 }, 35 'angle_perftests': { 36 'modifications': { 37 'android-arm64-pixel6-perf': { 38 'args': [ 39 # Custom temp throttling for perf tests on pixel6 b/345514719 40 '--custom-throttling-temp=38', 41 ], 42 }, 43 }, 44 }, 45 'angle_restricted_trace_gold_tests': { 46 'modifications': { 47 # anglebug.com/5415 flaky 4x8 pixel artifacts on Win Intel 48 'win10-x64-exp-intel': { 49 'args': [ 50 '--flaky-retries=1', 51 ], 52 }, 53 'win10-x64-intel': { 54 'args': [ 55 '--flaky-retries=1', 56 ], 57 }, 58 }, 59 }, 60 'angle_trace_interpreter_tests': { 61 'remove_from': [ 62 # TODO: Implement on Android. http://anglebug.com/7777 63 'android-arm64-pixel4', 64 ], 65 }, 66 'angle_trace_perf_native_tests': { 67 'modifications': { 68 'android-arm64-pixel6-perf': { 69 'args': [ 70 # Custom temp throttling for perf tests on pixel6 b/345514719 71 '--custom-throttling-temp=38', 72 ], 73 }, 74 }, 75 }, 76 'angle_trace_perf_vulkan_tests': { 77 'modifications': { 78 'android-arm64-pixel6-perf': { 79 'args': [ 80 # Custom temp throttling for perf tests on pixel6 b/345514719 81 '--custom-throttling-temp=38', 82 ], 83 }, 84 }, 85 }, 86 'angle_white_box_tests': { 87 'modifications': { 88 # anglebug.com/7874 suspecting device lost caused by multiprocess 89 'win10-x64-exp-intel': { 90 'args': [ 91 '--max-processes=1', 92 ], 93 }, 94 'win10-x64-intel': { 95 'args': [ 96 '--max-processes=1', 97 ], 98 }, 99 }, 100 }, 101} 102