Hash :
96bbc80b
Author :
Date :
2022-10-13T15:09:12
Restore default angle_gles1_conformance_tests Win Intel batch size Low batch size suspect for causing blue screen on this platform. Bug: angleproject:7750 Change-Id: I331f3aef22e313e318aeabb84b1277f4bf1678c9 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3953493 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Auto-Submit: Yuly Novikov <ynovikov@chromium.org> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
# Copyright 2021 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a .pyl, or "Python Literal", file. You can treat it just like a
# .json file, with the following exceptions:
# * all keys must be quoted (use single quotes, please);
# * comments are allowed, using '#' syntax; and
# * trailing commas are allowed.
#
# For more info see Chromium's test_suite_exceptions.pyl in testing/buildbot.
{
'angle_end2end_tests': {
'modifications': {
# anglebug.com/5328 suspecting blue screen caused by multiprocess
'win10-x64-intel': {
'args': [
'--max-processes=1',
],
},
},
},
'angle_gles1_conformance_tests': {
'replacements': {
# anglebug.com/7750 blue screen
'win10-x64-intel': {
'args': {
'--batch-size': '256',
},
}
},
},
'angle_restricted_trace_gold_tests': {
'modifications': {
'win10-x64-intel': {
'args': [
'--flaky-retries=1',
],
},
},
},
'angle_white_box_tests': {
'modifications': {
# anglebug.com/5328 suspecting blue screen caused by multiprocess
'win10-x64-intel': {
'args': [
'--max-processes=1',
],
},
},
},
}