• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/5328 suspecting blue screen caused by multiprocess
17      'linux-intel': {
18        'args': [
19          '--max-processes=1',
20        ],
21      },
22      'win10-x64-intel': {
23        'args': [
24          '--max-processes=1',
25        ],
26      },
27    },
28  },
29  'angle_restricted_trace_gold_tests': {
30    'modifications': {
31      'linux-intel': {
32        'args': [
33          '--flaky-retries=1',
34        ],
35      },
36      'win10-x64-intel': {
37        'args': [
38          '--flaky-retries=1',
39        ],
40      },
41    },
42  },
43  'angle_white_box_tests': {
44    'modifications': {
45      # anglebug.com/5328 suspecting blue screen caused by multiprocess
46      'linux-intel': {
47        'args': [
48          '--max-processes=1',
49        ],
50      },
51      'win10-x64-intel': {
52        'args': [
53          '--max-processes=1',
54        ],
55      },
56    },
57  },
58}
59