diff --git a/tests/xharness/Jenkins/TestVariationsFactory.cs b/tests/xharness/Jenkins/TestVariationsFactory.cs index 838929d2499f..e988c9c63545 100644 --- a/tests/xharness/Jenkins/TestVariationsFactory.cs +++ b/tests/xharness/Jenkins/TestVariationsFactory.cs @@ -91,6 +91,9 @@ IEnumerable GetTestData (RunTestTask test) } break; case "iPhoneSimulator": + if (test.Platform == TestPlatform.iOS_Unified32) + ignore = true; + switch (test.TestName) { case "monotouch-test": // The default is to run monotouch-test with the dynamic registrar (in the simulator), so that's already covered @@ -105,7 +108,7 @@ IEnumerable GetTestData (RunTestTask test) Variation = $"Debug ({test.Platform.GetSimulatorMinVersion ()})", Debug = true, Candidates = jenkins.Simulators.SelectDevices (target, jenkins.SimulatorLoadLog, true), - Ignored = !jenkins.IncludeOldSimulatorTests, + Ignored = ignore ?? !jenkins.IncludeOldSimulatorTests, }; break; }