ios - xctool 无法使用请求的 iOS 版本运行
<p><p>我正在使用 Xcode 6.4 和 iOS 8.4 使用以下命令在 Circle CI 上运行 iOS 测试:</p>
<p><code>xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4</code></p>
<p>但是当模拟器运行时,它无法运行我的测试并且我收到这个错误:</p>
<blockquote>
<p>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</p>
</blockquote>
<p>查看日志,看起来模拟器实际上是在尝试针对 iOS 9 运行:</p>
<blockquote>
<p>run-test iosTests.xctest (iphonesimulator9.0, iPhone 4s, application-test)</p>
</blockquote>
<p>有没有办法强制它在 iOS 8.4 上运行以便测试运行?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我最近在 Circle CI 上遇到了同样的问题。我不确定它是否与 xctool 的最新版本(0.2.7)有关,但添加它为我修复了它:</p>
<p><code>-destination platform='iOS Simulator,OS=8.4,name=iPhone 6'</code></p>
<p>所以在你的情况下完整的命令应该是:</p>
<p><code>xctool -workspace ios.xcworkspace -scheme ios test -sdk iphonesimulator8.4 -destination platform='iOS Simulator,OS=8.4,name=iPhone 6'</code></p></p>
<p style="font-size: 20px;">关于ios - xctool 无法使用请求的 iOS 版本运行,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33998370/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33998370/
</a>
</p>
页:
[1]