summaryrefslogtreecommitdiff
path: root/tests/scripts/run-corefx-tests-exclusions.txt
blob: f1b8d59e6141d02752ba75d7feba91e86eb949ae (plain)
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
# This is a "response file" used to pass fine-grained test exclusions to the
# corefx xunit test wrapper scripts, RunTests.cmd or RunTests.sh. Lines here
# should be in a format that xunit understands. Lines beginning with '#' are
# comment lines and are ignored.
#
# The interesting xunit exclusion syntax is (extracted from help screen for
# "dotnet.exe xunit.console.dll -?"):
#
# -------------------------------------------------------------------------
# -nomethod "name"       : do not run a given test method (can be fully specified or use a wildcard;
#                        : i.e., 'MyNamespace.MyClass.MyTestMethod' or '*.MyTestMethod')
#                        : if specified more than once, acts as an AND operation
# -noclass "name"        : do not run any methods in a given test class (should be fully
#                        : specified; i.e., 'MyNamespace.MyClass')
#                        : if specified more than once, acts as an AND operation
# -nonamespace "name"    : do not run any methods in a given namespace (i.e.,
#                        : 'MyNamespace.MySubNamespace')
#                        : if specified more than once, acts as an AND operation
# -------------------------------------------------------------------------
#
# Please list a GitHub issue for every exclusion.

# https://github.com/dotnet/coreclr/issues/24159
-nomethod "System.Buffers.Tests.ArrayBufferWriterTests_Byte.Advance"
-nomethod "System.Buffers.Tests.ArrayBufferWriterTests_Char.Advance"

# https://github.com/dotnet/coreclr/issues/22442
-nomethod "Microsoft.Win32.SystemEventsTests.CreateTimerTests.ConcurrentTimers"
-nomethod "Microsoft.Win32.SystemEventsTests.SessionSwitchTests.SignalsSessionSwitch"

# https://github.com/dotnet/coreclr/issues/24185
-nomethod "System.Threading.Tasks.Tests.TaskRtTests_Core.RunTaskWaitTest_NegativeTests"

# Too many "random" timeout failures
-nonamespace "System.Net.Http.Functional.Tests"
-noclass "System.Net.Tests.HttpListenerTimeoutManagerWindowsTests"

# Minopts timeout. https://github.com/dotnet/coreclr/issues/18912
-nomethod "System.Text.RegularExpressions.Tests.RegexMatchTests.Match_ExcessPrefix"

# arm32/arm64 timeout. https://github.com/dotnet/coreclr/issues/22414
-nomethod "System.Numerics.Tests.ToStringTest.RunRegionSpecificStandardFormatToStringTests"