感谢您看到这个问题。
我用GHUnit写了单元测试。 现在我正尝试在终端上进行构建测试,以便与Travis CI连接,并面临一个问题。
我基本上跟着了
http://gabriel.github.io/gh-unit/docs/appledoc_include/guide_command_line.html
并自定义一个命令。
这是定制的命令
GHUNIT_CLI=1 xcodebuild ONLY_ACTIVE_ARCH=NO -target UnitTest -configuration Debug -sdk iphonesimulator build
之后一些编译开始了,但最后我得到了错误。
The iOS Simulator libSystem was initialized out of order. This is most often caused by running host executables or inserting host dylibs. In the future, this will cause an abort.
如果您知道解决方法,请告诉我。 谢谢。
答案 0 :(得分:0)
有同样的问题,像这样运行
GHUNIT_CLI=1 xcodebuild ONLY_ACTIVE_ARCH=NO -workspace <yourworkspace> -scheme <scheme> -configuration Debug -sdk iphonesimulator build
解决了问题