From d1e2041f996946187660d0a4dce6c05abfc27524 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 29 Sep 2020 16:58:43 +0200 Subject: [PATCH] [xharness] The dotnet version of introspection/iOS 10.3 works fine now. --- tests/xharness/Jenkins/TestVariationsFactory.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/xharness/Jenkins/TestVariationsFactory.cs b/tests/xharness/Jenkins/TestVariationsFactory.cs index e29c711ba722..8738383f2380 100644 --- a/tests/xharness/Jenkins/TestVariationsFactory.cs +++ b/tests/xharness/Jenkins/TestVariationsFactory.cs @@ -102,8 +102,6 @@ IEnumerable GetTestData (RunTestTask test) yield return new TestData { Variation = "Debug (all optimizations)", MTouchExtraArgs = "--registrar:static --optimize:all,-remove-uithread-checks", Debug = true, Profiling = false, LinkMode = "Full", Defines = "OPTIMIZEALL", Undefines = "DYNAMIC_REGISTRAR", Ignored = ignore ?? !jenkins.IncludeAll }; break; case "introspection": - if (test.TestProject.IsDotNetProject) - break; // Our .NET 5 code hasn't implemented building using static libraries yet, and the iOS 10.3 simulator requires dylibs to be signed, which we don't do yet, thus this doesn't quite work yet for the iOS 10.3 simulator. foreach (var target in test.Platform.GetAppRunnerTargets ()) yield return new TestData { Variation = $"Debug ({test.Platform.GetSimulatorMinVersion ()})",