[xharness] Disable iOS 32-bit simulator tests, they don't work on Xcode 12+. (Re)fixes #xamarin/maccore@2284. (#9732)

Fixes https://github.com/xamarin/maccore/issues/2284.
This commit is contained in:
Rolf Bjarne Kvinge 2020-09-30 18:11:10 +02:00 коммит произвёл GitHub
Родитель 4a050c5ae6
Коммит 3f0cac77b7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -91,6 +91,9 @@ namespace Xharness.Jenkins {
} }
break; break;
case "iPhoneSimulator": case "iPhoneSimulator":
if (test.Platform == TestPlatform.iOS_Unified32)
ignore = true;
switch (test.TestName) { switch (test.TestName) {
case "monotouch-test": case "monotouch-test":
// The default is to run monotouch-test with the dynamic registrar (in the simulator), so that's already covered // The default is to run monotouch-test with the dynamic registrar (in the simulator), so that's already covered
@ -105,7 +108,7 @@ namespace Xharness.Jenkins {
Variation = $"Debug ({test.Platform.GetSimulatorMinVersion ()})", Variation = $"Debug ({test.Platform.GetSimulatorMinVersion ()})",
Debug = true, Debug = true,
Candidates = jenkins.Simulators.SelectDevices (target, jenkins.SimulatorLoadLog, true), Candidates = jenkins.Simulators.SelectDevices (target, jenkins.SimulatorLoadLog, true),
Ignored = !jenkins.IncludeOldSimulatorTests, Ignored = ignore ?? !jenkins.IncludeOldSimulatorTests,
}; };
break; break;
} }