Skip to content

Commit 8923c96

Browse files
authored
Disable Http3 tests for Arm (#103793)
1 parent 7bc9292 commit 8923c96

6 files changed

+14
-0
lines changed

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Http3.cs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
namespace System.Net.Http.Functional.Tests
2323
{
2424
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
25+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
2526
public sealed class HttpClientHandlerTest_Http3 : HttpClientHandlerTestBase
2627
{
2728
protected override Version UseVersion => HttpVersion.Version30;

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientMiniStressTest.cs

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public void CreateAndDestroyManyClients(int numClients)
3232
}
3333

3434
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
35+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
3536
public sealed class SocketsHttpHandler_HttpClientMiniStress_Http3 : HttpClientMiniStress
3637
{
3738
public SocketsHttpHandler_HttpClientMiniStress_Http3(ITestOutputHelper output) : base(output) { }

src/libraries/System.Net.Http/tests/FunctionalTests/MetricsTest.cs

+1
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,7 @@ public HttpMetricsTest_Http20_HttpMessageInvoker(ITestOutputHelper output) : bas
10261026
}
10271027

10281028
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
1029+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
10291030
public class HttpMetricsTest_Http30 : HttpMetricsTest
10301031
{
10311032
protected override Version UseVersion => HttpVersion.Version30;

src/libraries/System.Net.Http/tests/FunctionalTests/ResponseStreamZeroByteReadTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ public Http2ResponseStreamZeroByteReadTest(ITestOutputHelper output) : base(outp
182182
}
183183

184184
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
185+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
185186
public sealed class Http3ResponseStreamZeroByteReadTest : ResponseStreamZeroByteReadTestBase
186187
{
187188
public Http3ResponseStreamZeroByteReadTest(ITestOutputHelper output) : base(output) { }

src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs

+9
Original file line numberDiff line numberDiff line change
@@ -1636,6 +1636,7 @@ public SocketsHttpHandler_HttpClientHandler_MaxResponseHeadersLength_Http2(ITest
16361636
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
16371637
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757")]
16381638
[ActiveIssue("https://github.com/dotnet/runtime/issues/101015")]
1639+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
16391640
public sealed class SocketsHttpHandler_HttpClientHandler_MaxResponseHeadersLength_Http3 : SocketsHttpHandler_HttpClientHandler_MaxResponseHeadersLength
16401641
{
16411642
public SocketsHttpHandler_HttpClientHandler_MaxResponseHeadersLength_Http3(ITestOutputHelper output) : base(output) { }
@@ -4028,41 +4029,47 @@ public SocketsHttpHandler_HttpClientHandler_Cancellation_Test_Http2(ITestOutputH
40284029
}
40294030

40304031
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4032+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40314033
public sealed class SocketsHttpHandlerTest_HttpClientHandlerTest_Http3 : HttpClientHandlerTest
40324034
{
40334035
public SocketsHttpHandlerTest_HttpClientHandlerTest_Http3(ITestOutputHelper output) : base(output) { }
40344036
protected override Version UseVersion => HttpVersion.Version30;
40354037
}
40364038

40374039
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4040+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40384041
public sealed class SocketsHttpHandlerTest_Cookies_Http3 : HttpClientHandlerTest_Cookies
40394042
{
40404043
public SocketsHttpHandlerTest_Cookies_Http3(ITestOutputHelper output) : base(output) { }
40414044
protected override Version UseVersion => HttpVersion.Version30;
40424045
}
40434046

40444047
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4048+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40454049
public sealed class SocketsHttpHandlerTest_HttpClientHandlerTest_Headers_Http3 : HttpClientHandlerTest_Headers
40464050
{
40474051
public SocketsHttpHandlerTest_HttpClientHandlerTest_Headers_Http3(ITestOutputHelper output) : base(output) { }
40484052
protected override Version UseVersion => HttpVersion.Version30;
40494053
}
40504054

40514055
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4056+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40524057
public sealed class SocketsHttpHandler_HttpClientHandler_Cancellation_Test_Http3 : SocketsHttpHandler_Cancellation_Test
40534058
{
40544059
public SocketsHttpHandler_HttpClientHandler_Cancellation_Test_Http3(ITestOutputHelper output) : base(output) { }
40554060
protected override Version UseVersion => HttpVersion.Version30;
40564061
}
40574062

40584063
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4064+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40594065
public sealed class SocketsHttpHandler_HttpClientHandler_AltSvc_Test_Http3 : HttpClientHandler_AltSvc_Test
40604066
{
40614067
public SocketsHttpHandler_HttpClientHandler_AltSvc_Test_Http3(ITestOutputHelper output) : base(output) { }
40624068
protected override Version UseVersion => HttpVersion.Version30;
40634069
}
40644070

40654071
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4072+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
40664073
public sealed class SocketsHttpHandler_HttpClientHandler_Finalization_Http3 : HttpClientHandler_Finalization_Test
40674074
{
40684075
public SocketsHttpHandler_HttpClientHandler_Finalization_Http3(ITestOutputHelper output) : base(output) { }
@@ -4227,6 +4234,7 @@ public SocketsHttpHandler_RequestContentLengthMismatchTest_Http2(ITestOutputHelp
42274234
}
42284235

42294236
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4237+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
42304238
public sealed class SocketsHttpHandler_RequestContentLengthMismatchTest_Http3 : SocketsHttpHandler_RequestContentLengthMismatchTest
42314239
{
42324240
public SocketsHttpHandler_RequestContentLengthMismatchTest_Http3(ITestOutputHelper output) : base(output) { }
@@ -4403,6 +4411,7 @@ public SocketsHttpHandler_SocketsHttpHandler_SecurityTest_Http2(ITestOutputHelpe
44034411
}
44044412

44054413
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
4414+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
44064415
public sealed class SocketsHttpHandler_SocketsHttpHandler_SecurityTest_Http3 : SocketsHttpHandler_SecurityTest
44074416
{
44084417
public SocketsHttpHandler_SocketsHttpHandler_SecurityTest_Http3(ITestOutputHelper output) : base(output) { }

src/libraries/System.Net.Http/tests/FunctionalTests/TelemetryTest.cs

+1
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,7 @@ public TelemetryTest_Http20(ITestOutputHelper output) : base(output) { }
981981
}
982982

983983
[ConditionalClass(typeof(HttpClientHandlerTestBase), nameof(IsQuicSupported))]
984+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103703", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
984985
public sealed class TelemetryTest_Http30 : TelemetryTest
985986
{
986987
protected override Version UseVersion => HttpVersion.Version30;

0 commit comments

Comments
 (0)