The script for the Xcode crash was a bit different on my side. Indeed, I had the same call error:
Application Specific Information: ProductBuildVersion: 5A3005 ASSERTION FAILURE in /SourceCache/IDEXcode3ProjectSupport/IDEXcode3ProjectSupport-3575/Xcode3Sources/XcodeIDE/Frameworks/DevToolsBase/pbxcore/Xcode3Model/Xcode3OCUnitTestableDataSource.m:191 Details: ([_indexableIdsToTestableTokens objectForKey:indexableIdentifier]) should be nil, but it is <Xcode3OCUnitTestableDataSourceToken: 0x7fe73b531ae0> Object: <Xcode3OCUnitTestableDataSource: 0x7fe7359c79f0> Method: -setTestableToken:indexableIdentifier: Thread: <NSThread: 0x7fe732415570>{name = (null), num = 1} Hints: None
But I had to duplicate an existing project (.xcodeproj file) in order to have an application in my workspace depending on other projects (Target Dependencies in Build Phases) in my workspace (used as a debugging application), and the application does not depend on anything or related only to the final result of the assembly of the corresponding project target (in my case, the framework inside Link Binary With Libraries in Build Phases). The problem was that every time I imported a duplicate project into my workspace, it crashed Xcode ... Since the trace of the error stack was talking about test things, I just looked at the project.pbxproj file and deleted all occurrences of the test line in this file (well, I pay attention to the section so as not to damage my file).
Something is wrong with the duplicated xctest target inside prject. As soon as I tried to import it again in my workspace, it worked fine.
Hope this helps
dMathieuD
source share