Skip to content

Commit

Permalink
Disable failing outerloop tests with ActiveIssue
Browse files Browse the repository at this point in the history
  • Loading branch information
akoeplinger committed Dec 22, 2022
1 parent cd599ec commit f2a3fdb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ public void EventSourcePublishesTimeSeriesWithTags()

[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");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ public ConnectTask(ITestOutputHelper output) : base(output) {}

[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))
Expand Down
1 change: 1 addition & 0 deletions src/libraries/System.Net.WebClient/tests/WebClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,7 @@ public async Task UploadString_Success(Uri server)
[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();
Expand Down

0 comments on commit f2a3fdb

Please sign in to comment.