Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近使用带有 XCode 机器人和专用 OS X 服务器的 XCTest 框架设置了一个单元测试套件。我注意到,当我针对 64 位架构(在本例中为 x86_64 上的 iPhone 模拟器)运行测试时,测试运行了两次。为什么是这样?我附上了一张截图,显示在 i386 上运行了 57 个测试,在 x86_64 上运行了 114 个测试(总共 171 个测试):
在您的项目中, “仅构建活动架构”( ONLY_ACTIVE_ARCHS) 设置为什么?
ONLY_ACTIVE_ARCHS
在调试配置(我的测试运行的配置)中将此设置为是,为我解决了这个问题。