xctool 没有 运行 请求的 iOS 版本
xctool doesn't run with the requested iOS version
我正在使用 Xcode 6.4 和 iOS 8.4 对 Circle CI 进行 运行ning iOS 测试,使用以下命令:
xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4
但是当模拟器 运行s 时,它无法 运行 我的测试并且我收到此错误:
Test did not run: The simulator failed to start, or the TEST_HOST
application failed to run. Simulator error: Exception encountered
connecting to CoreSimulatorBridge: Unable to connect to
CoreSimulatorBridge
查看日志,看起来模拟器实际上试图 运行 对抗 iOS 9:
run-test iosTests.xctest (iphonesimulator9.0, iPhone 4s, application-test)
有没有办法在 iOS 8.4 上将其强制为 运行,以便测试 运行?
我最近在 Circle CI 上遇到了同样的问题。我不确定它是否与 xctool 的最新版本 (0.2.7) 有关,但添加这个为我修复了它:
-destination platform='iOS Simulator,OS=8.4,name=iPhone 6'
所以你的完整命令应该是:
xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4 -destination platform='iOS Simulator,OS=8.4,name=iPhone 6'
我正在使用 Xcode 6.4 和 iOS 8.4 对 Circle CI 进行 运行ning iOS 测试,使用以下命令:
xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4
但是当模拟器 运行s 时,它无法 运行 我的测试并且我收到此错误:
Test did not run: The simulator failed to start, or the TEST_HOST application failed to run. Simulator error: Exception encountered connecting to CoreSimulatorBridge: Unable to connect to CoreSimulatorBridge
查看日志,看起来模拟器实际上试图 运行 对抗 iOS 9:
run-test iosTests.xctest (iphonesimulator9.0, iPhone 4s, application-test)
有没有办法在 iOS 8.4 上将其强制为 运行,以便测试 运行?
我最近在 Circle CI 上遇到了同样的问题。我不确定它是否与 xctool 的最新版本 (0.2.7) 有关,但添加这个为我修复了它:
-destination platform='iOS Simulator,OS=8.4,name=iPhone 6'
所以你的完整命令应该是:
xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4 -destination platform='iOS Simulator,OS=8.4,name=iPhone 6'