Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/xharness/Jenkins/TestVariationsFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ IEnumerable<TestData> 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
Expand All @@ -105,7 +108,7 @@ IEnumerable<TestData> 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;
}
Expand Down