Remove CoreFX.issues.rsp (#985)
authorSantiago Fernandez Madero <safern@microsoft.com>
Tue, 17 Dec 2019 18:34:05 +0000 (12:34 -0600)
committerGitHub <noreply@github.com>
Tue, 17 Dec 2019 18:34:05 +0000 (12:34 -0600)
src/coreclr/tests/CoreFX/CoreFX.issues.rsp [deleted file]
src/coreclr/tests/scripts/run-corefx-tests.bat

diff --git a/src/coreclr/tests/CoreFX/CoreFX.issues.rsp b/src/coreclr/tests/CoreFX/CoreFX.issues.rsp
deleted file mode 100644 (file)
index c8ffa4e..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-# 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.
-
--notrait category=OuterLoop
--notrait category=RequiresElevation
-
-# System.ComponentModel.Composition.Registration.Tests: test failures
--noclass System.ComponentModel.Composition.Registration.Tests.RegistrationBuilderAttributedOverrideUnitTests
-
-# Timeout on Linux/arm32
--nonamespace System.Data.SqlClient.Tests
-
-# Missing OOB dependencies (System.Utf8String.Experimental) - Disable UTF8 string tests
--noclass System.Net.Http.Tests.Utf8StringContentTests
--noclass System.Tests.Char8Tests
--noclass System.Tests.MemoryTests
--noclass System.Tests.ReflectionTests
--noclass System.Tests.Utf8ExtensionsTests
--noclass System.Tests.Utf8StringTests
--noclass System.Text.Tests.Utf8SpanTests
-
-# Missing OOB dependencies
--nonamespace System.Net.Quic.Tests
-
-# System.Net.Tests are known for their instability
--nonamespace System.Net.Http.Functional.Tests
--nonamespace System.Net.Sockets.Tests
-
--noclass System.Net.Tests.HttpListenerContextTests
--noclass System.Net.Tests.HttpListenerAuthenticationTests
--noclass System.Net.Tests.HttpListenerResponseTests
--noclass System.Net.Tests.HttpListenerResponseCookiesTests
-
--nomethod System.Net.Tests.HttpListenerResponseTests.Redirect_Invoke_SetsRedirectionProperties
--nomethod System.Net.Mail.Tests.SmtpClientTest.TestMailDeliveryAsync
-
--nomethod System.Net.Security.Tests.LoggingTest.EventSource_EventsRaisedAsExpected
--nomethod System.Net.Security.Tests.SslStreamSniTest.SslStream_NoSniFromClient_CallbackReturnsNull
-
-# System.Linq.Expressions.Tests and System.Linq.Expressions.Tests.ArrayBoundsTests.NewArrayBounds in particular are long-running:
-# https://github.com/dotnet/coreclr/issues/25269
--nomethod System.Linq.Expressions.Tests.ArrayBoundsTests.NewArrayBounds
--nonamespace System.Linq.Expressions.Tests
-
-# Timeout in System.Runtime.Serialization.Formatters.Tests.BinaryFormatterTests.SerializeHugeObjectGraphs: https://github.com/dotnet/coreclr/issues/20246
--nomethod System.Runtime.Serialization.Formatters.Tests.BinaryFormatterTests.SerializeHugeObjectGraphs
-
-# Timeout in System.Numerics.Tests.ToStringTest.RunRegionSpecificStandardFormatToStringTests
-# https://github.com/dotnet/coreclr/issues/22414
--nomethod System.Numerics.Tests.ToStringTest.RunRegionSpecificStandardFormatToStringTests
-
-# Timeout in System.Text.RegularExpressions.Tests.RegexMatchTests.Match_ExcessPrefix
-# https://github.com/dotnet/coreclr/issues/18912
--nomethod System.Text.RegularExpressions.Tests.RegexMatchTests.Match_ExcessPrefix
index 2ff3a33..1b6e691 100644 (file)
@@ -18,8 +18,7 @@ echo ^<tests dir^>           -- Path to corefx test tree, e.g., _\fx\bin\tests
 echo ^<test exclusion file^> -- Path to test exclusion file, e.g., C:\coreclr\tests\arm\corefx_test_exclusions.txt
 echo ^<architecture^>        -- Architecture to run, either ARM or ARM64. (We can't depend on PROCESSOR_ARCHITECTURE because
 echo                            the batch script might be invoked with an ARM64 CMD but we need to run ARM.)
-echo ^<exclusion rsp file^>  -- Path to test exclusion response file, passed to RunTests.cmd and then xunit, e.g.,
-echo                            C:\coreclr\tests\CoreFX\CoreFX.issues.rsp
+echo ^<exclusion rsp file^>  -- Path to test exclusion response file, passed to RunTests.cmd and then xunit.
 echo.
 echo The ^<test exclusion file^> is a file with a list of assemblies for which the
 echo tests should not be run. This allows excluding failing tests by excluding the