Disable failing outerloop tests with ActiveIssue (#79908)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Thu, 22 Dec 2022 12:57:51 +0000 (13:57 +0100)
committerGitHub <noreply@github.com>
Thu, 22 Dec 2022 12:57:51 +0000 (13:57 +0100)
See https://github.com/dotnet/runtime/issues/79731 and https://github.com/dotnet/runtime/issues/79749 and https://github.com/dotnet/runtime/issues/79820

src/libraries/System.Diagnostics.DiagnosticSource/tests/MetricEventSourceTests.cs
src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs
src/libraries/System.Net.WebClient/tests/WebClientTest.cs

index 1c3282c..b468bbd 100644 (file)
@@ -248,6 +248,7 @@ namespace System.Diagnostics.Metrics.Tests
 
         [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
         [OuterLoop("Slow and has lots of console spew")]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79749", TargetFrameworkMonikers.NetFramework)]
         public void EventSourceFiltersInstruments()
         {
             using Meter meterA = new Meter("TestMeterA");
index 762e446..8141ae2 100644 (file)
@@ -218,6 +218,7 @@ namespace System.Net.Sockets.Tests
 
         [OuterLoop]
         [Fact]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79820", TestPlatforms.Linux | TestPlatforms.Android)]
         public static void Connect_ThrowSocketException_Success()
         {
             using (Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
index a9b9d80..ec36301 100644 (file)
@@ -697,6 +697,7 @@ namespace System.Net.Tests
         [OuterLoop("Uses external servers")]
         [Theory]
         [MemberData(nameof(EchoServers))]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79731")]
         public async Task UploadValues_Success(Uri echoServer)
         {
             var wc = new WebClient();