Skip to content

Commit 995989e

Browse files
authored
Disable System.Net.Quic tests on arm32 (#100514)
1 parent 254012e commit 995989e

7 files changed

+7
-7
lines changed

src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicCipherSuitesPolicyTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace System.Net.Quic.Tests
1111
[Collection(nameof(QuicTestCollection))]
1212
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
1313
[SkipOnPlatform(TestPlatforms.Windows, "CipherSuitesPolicy is not supported on Windows")]
14-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
14+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
1515
public class MsQuicCipherSuitesPolicyTests : QuicTestBase
1616
{
1717
public MsQuicCipherSuitesPolicyTests(ITestOutputHelper output) : base(output) { }

src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicRemoteExecutorTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace System.Net.Quic.Tests
1414
{
1515
[Collection(nameof(QuicTestCollection))]
1616
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
17-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
17+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
1818
public class MsQuicRemoteExecutorTests : QuicTestBase
1919
{
2020
public MsQuicRemoteExecutorTests()

src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void Dispose()
4848

4949
[Collection(nameof(QuicTestCollection))]
5050
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
51-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
51+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
5252
public class MsQuicTests : QuicTestBase, IClassFixture<CertificateSetup>
5353
{
5454
private static byte[] s_data = "Hello world!"u8.ToArray();

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicConnectionTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace System.Net.Quic.Tests
1616

1717
[Collection(nameof(QuicTestCollection))]
1818
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
19-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
19+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
2020
public sealed class QuicConnectionTests : QuicTestBase
2121
{
2222
const int ExpectedErrorCode = 1234;

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicListenerTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace System.Net.Quic.Tests
1515
{
1616
[Collection(nameof(QuicTestCollection))]
1717
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
18-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
18+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
1919
public sealed class QuicListenerTests : QuicTestBase
2020
{
2121
public QuicListenerTests(ITestOutputHelper output) : base(output) { }

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicStreamConnectedStreamConformanceTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace System.Net.Quic.Tests
1616
{
1717
[Collection(nameof(QuicTestCollection))]
1818
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
19-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
19+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
2020
public sealed class QuicStreamConformanceTests : ConnectedStreamConformanceTests
2121
{
2222
protected override bool UsableAfterCanceledReads => false;

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicStreamTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace System.Net.Quic.Tests
1414
{
1515
[Collection(nameof(QuicTestCollection))]
1616
[ConditionalClass(typeof(QuicTestBase), nameof(QuicTestBase.IsSupported), nameof(QuicTestBase.IsNotArm32CoreClrStressTest))]
17-
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine), nameof(PlatformDetection.IsArmProcess))]
17+
[ActiveIssue("https://github.com/dotnet/runtime/issues/91757", typeof(PlatformDetection), nameof(PlatformDetection.IsArmProcess))]
1818
public sealed class QuicStreamTests : QuicTestBase
1919
{
2020
private static byte[] s_data = "Hello world!"u8.ToArray();

0 commit comments

Comments
 (0)