From 4281d15fd62a8255d00d967e32f2f44f530e51af Mon Sep 17 00:00:00 2001 From: Tomas Weinfurt Date: Mon, 25 Feb 2019 21:28:18 -0800 Subject: [PATCH] disable AllSubscriberStress test on ARM64 untill we get more resources to run it (dotnet/corefx#35575) Commit migrated from https://github.com/dotnet/corefx/commit/dedb0f8e93661d13f18c9afcae6c2883b28a2d68 --- .../System.Diagnostics.DiagnosticSource/tests/DiagnosticSourceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Diagnostics.DiagnosticSource/tests/DiagnosticSourceTests.cs b/src/libraries/System.Diagnostics.DiagnosticSource/tests/DiagnosticSourceTests.cs index 8fb2e1b..d3977d5 100644 --- a/src/libraries/System.Diagnostics.DiagnosticSource/tests/DiagnosticSourceTests.cs +++ b/src/libraries/System.Diagnostics.DiagnosticSource/tests/DiagnosticSourceTests.cs @@ -501,7 +501,7 @@ namespace System.Diagnostics.Tests /// Stresses the AllListeners by having many threads be adding and removing. /// [OuterLoop] - [Theory] + [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotArm64Process))] // [ActiveIssue(35539)] [InlineData(100, 100)] // run multiple times to stress it further [InlineData(100, 100)] [InlineData(100, 100)] -- 2.7.4