Skip to content

Commit

Permalink
make Select_LargeNumber_Succcess exclusive (#105751)
Browse files Browse the repository at this point in the history
* make Select_LargeNumber_Succcess exclusive

* mobile
  • Loading branch information
wfurt committed Aug 10, 2024
1 parent dedd914 commit dedd372
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,14 @@ private static void DoAccept(Socket listenSocket, int connectionsToAccept)
}
}
}
}

[Collection(nameof(DisableParallelization))]
// Set of tests to not run together with any other tests.
public class NoParallelSelectTests
{
[ConditionalFact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51392", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
public void Select_LargeNumber_Succcess()
{
const int MaxSockets = 1025;
Expand Down

0 comments on commit dedd372

Please sign in to comment.