From 30855e83cdc09b24c98060b446090ec9efb4bac8 Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Tue, 26 Jul 2022 08:06:51 -0400 Subject: [PATCH] [iOS] Skip test suites that take too long to build on helix System.Text.RegularExpressions, Microsoft.Extensions.Logging.Generators.Roslyn4.0.Tests, and STJ source generator tests take too long to build on helix and time out before any tests are run. This is due in part to the amount of aot'd code, which ends up ballooning the app size to around 1GB. The solution is to enable aggressive trimming targets that are in tests.mobile.targets as this will shrink the app size considerably. Skipping these tests for now. Addresses https://github.com/dotnet/runtime/issues/72834 Addresses https://github.com/dotnet/runtime/issues/72836 --- src/libraries/tests.proj | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/libraries/tests.proj b/src/libraries/tests.proj index b259bb9920084..32b5919b64346 100644 --- a/src/libraries/tests.proj +++ b/src/libraries/tests.proj @@ -286,11 +286,16 @@ + + + -