Expand corefx exclusions
authorBruce Forstall <brucefo@microsoft.com>
Wed, 24 Apr 2019 18:58:38 +0000 (11:58 -0700)
committerBruce Forstall <brucefo@microsoft.com>
Wed, 24 Apr 2019 18:58:38 +0000 (11:58 -0700)
tests/scripts/run-corefx-tests-exclusions.txt

index e9fe4f9..f1b8d59 100644 (file)
@@ -3,6 +3,21 @@
 # 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
 # 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"