From 5f8221c4fee51989a8aec73495a95eee674f7bc6 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 28 Mar 2017 07:53:03 +0200 Subject: [PATCH] [tests] Use the iPhone 6 simulator instead of the iPhone 5s simulator for 64-bit testing. Apparently Xcode 8.3 does not like the iPhone 5s simulator, and deletes it. Every time Xcode is updated. Which is slightly annoying when it affects the bots, since then iPhone 5s have to be re-created on every bot. So succumb to the pressure, and switch to using the iPhone 6 simulator instead. --- tests/xharness/Simulators.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xharness/Simulators.cs b/tests/xharness/Simulators.cs index 8ad6e0b3db91..f313b349c640 100644 --- a/tests/xharness/Simulators.cs +++ b/tests/xharness/Simulators.cs @@ -117,7 +117,7 @@ public async Task FindAsync (AppRunnerTarget target, Log log) simulator_runtime = "com.apple.CoreSimulator.SimRuntime.iOS-" + Xamarin.SdkVersions.iOS.Replace ('.', '-'); break; case AppRunnerTarget.Simulator_iOS64: - simulator_devicetypes = new string [] { "com.apple.CoreSimulator.SimDeviceType.iPhone-5s" }; + simulator_devicetypes = new string [] { "com.apple.CoreSimulator.SimDeviceType.iPhone-6" }; simulator_runtime = "com.apple.CoreSimulator.SimRuntime.iOS-" + Xamarin.SdkVersions.iOS.Replace ('.', '-'); break; case AppRunnerTarget.Simulator_iOS: