如果使用模拟器,从 Xcode 和 xcodebuild 运行 xctests 会失败 - dyld:未加载库:@rpath/libswiftSwiftOnoneSupport.dylib 问题 -
Posted
技术标签:
【中文标题】如果使用模拟器,从 Xcode 和 xcodebuild 运行 xctests 会失败 - dyld:未加载库:@rpath/libswiftSwiftOnoneSupport.dylib 问题 - print()【英文标题】:Runing xctests from Xcode and xcodebuild fails if simulator used - dyld: Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib issue - print() 【发布时间】:2019-02-18 18:07:01 【问题描述】:当我从 Xcode 运行测试或从终端执行此命令时,我遇到了一种奇怪的行为:
xcodebuild test -scheme '<MY_APP>'
两种情况下的测试都成功了,尽管在第二种情况下测试成功了,但是我显然需要指定一个测试设备。当我尝试这样做并使用 -destination 标志执行相同的命令时:
xcodebuild test -scheme '<MY_APP>' -destination "platform=ios Simulator,name=iPhone XS,OS=latest"
我收到此错误:
e2019-02-18 18:39:22.625 xcodebuild[36312:791798] Error Domain=IDETestOperationsObserverErrorDomain Code=6 "Early unexpected exit, operation never finished bootstrapping - no restart will be attempted" UserInfo=NSLocalizedDescription=Early unexpected exit, operation never finished bootstrapping - no restart will be attempted, NSUnderlyingError=0x7f8a38637410 Error Domain=IDETestOperationsObserverErrorDomain Code=5 "Test runner exited before starting test execution." UserInfo=NSLocalizedDescription=Test runner exited before starting test execution., NSLocalizedRecoverySuggestion=If you believe this error represents a bug, please attach the result bundle at /Users/<MY_USER>/Library/Developer/Xcode/DerivedData/<MY_APP>/Logs/Test/<MY_APP>-2019.02.18_18-37-12-+0100.xcresult Generating coverage data... Generated coverage report: /Users/<MY_USER>/Library/Developer/Xcode/DerivedData/<MY_APP>-fbdolvrdfafpjbenwwqzgnlfkpoa/Logs/Test/Test-<MY_APP>.02.18_18-37-12-+0100.xcresult/1_Test/action.xccovreport Testing failed: <MY_APP>.app (36589) encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted. (Underlying error: Test runner exited before starting test execution.)) ** TEST FAILED **
需要提及的其他事项:这是一个 Cordova 应用程序。本机 iOS 部分是用 Objective-C 编写的。但我正在使用一些用 Swift 编写的库。我需要 xcodebuild 来测试我的服务器上的应用程序。有什么建议可能导致这个问题吗?同样,当我第一次执行没有目标标志的命令时,代码签名成功,但是当我使用目标标志执行此操作时,它是空的:
CodeSign /Users/<MY_USER>/Library/Developer/Xcode/DerivedData/<MY_APP>-fbdolvrdfafpjbenwwqzgnlfkpoa/Build/Products/Debug-iphonesimulator/<MY_APP>.app/PlugIns/<MY_APP>Tests.xctest (in target: <MY_APP>Tests)
cd /Users/<MY_USER>/projects/my_project/
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
Signing Identity: "-"
更新:
不知何故,我可以找到问题的原因,这是众所周知的错误:
dyld: Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib
Referenced from: /Users/<MY_USER>/Library/Developer/CoreSimulator/Devices/5AEAA313-0C65-49D8-BC20-DCC9994719C4/data/Containers/Bundle/Application/48DC52C0-4BC6-45ED-9AEE-A0E1F5C8BA1B/P2P-1-<MY_APP>.app/Frameworks/<REQUIRED_FRAMEWORK>.framework/<REQUIRED_FRAMEWORK>
您可能认为从这一点开始,解决方案很简单直接,但事实并非如此。
【问题讨论】:
openradar.appspot.com/27260158 是类似的问题...原来这与签名无关 【参考方案1】:因为这个库加载错误指向了一个我被卡住的框架......
我试过这些: dyld: Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib
Xcode - Bundle format unrecognized, invalid, or unsuitable
References to Removed Framework in project.pbxproj File
应用程序中的Always Embed Swift Standard Libraries
已设置为YES
,但我不确定它是否在给定框架中也设置为YES
。
所有的解决方案都来自这个问题:dyld: Library not loaded: @rpath/libswiftSwiftOnoneSupport.dylib
LuisCien 建议在代码中的任何位置专门使用 print()
会以某种方式强制加载 libswiftSwiftOnoneSupport.dylib
,问题就会消失。
测试现在正在运行,虽然我很好奇为什么这个 ,,hack,, 有效。
只有当我尝试使用带有 Xcode 或 xcodebuild 的模拟器运行它时,测试才会失败。
【讨论】:
以上是关于如果使用模拟器,从 Xcode 和 xcodebuild 运行 xctests 会失败 - dyld:未加载库:@rpath/libswiftSwiftOnoneSupport.dylib 问题 - 的主要内容,如果未能解决你的问题,请参考以下文章
XCode 在模拟器选择中使用 GUID 而不是 iOS 版本号
MacOS系统升级到Big Sur后CMake报xcode-select错误的解决办法
MacOS系统升级到Big Sur后CMake报xcode-select错误的解决办法