Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2332,6 +2332,11 @@ public enum HeaderType
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
public async Task LargeUriAndHeaders_Works()
{
if (PlatformDetection.IsAndroid && (PlatformDetection.IsX86Process || PlatformDetection.IsX64Process))
{
throw new SkipTestException("Test times out on Android emulators due to large (30MB) payload and 72s loopback server timeout");
}

int length = IsWinHttpHandler ? 65_000 : 10_000_000;

string longPath = "/" + new string('X', length);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@

[assembly: SkipOnCoreClr("System.Net.Tests are flaky and/or long running: https://github.com/dotnet/runtime/issues/131", ~RuntimeConfiguration.Release)]
[assembly: ActiveIssue("https://github.com/dotnet/runtime/issues/131", ~(TestPlatforms.Android | TestPlatforms.Browser | TestPlatforms.Wasi), TargetFrameworkMonikers.Any, TestRuntimes.Mono)] // System.Net.Tests are flaky and/or long running
[assembly: ActiveIssue("https://github.com/dotnet/runtime/issues/124526", TestPlatforms.Android, TargetFrameworkMonikers.Any, TestRuntimes.CoreCLR)]
Loading