I have a set of SenTestCase that are causing issues in XCode 3.2.4. When attempting to compile (with a very basic STFail(@"");) the following compiler errors occur:
An internal error occurred when handling command output: –
[XCBuildLogCommandInvocationSectionRecorder endMarker]:
unrecognized selector sent to instanceAn internal error occurred when handling command output: –
[XCBuildLogCommandInvocationSection setTestsPassedString:]:
unrecognized selector sent to instance
I’ve included the SenTestkingKit.framework from ‘/Developer/Library/Frameworks’ and just created by target by ‘Targets > Add > New Target > Cocoa Touch > Unit Test Bundle’. Any ideas? Thanks!
It seems to be a regression with some part of the reporting code not respecting timezone issues. The output is tagged as ending before it began, so gets very confused and chokes.
One work-around, that I found somewhere on Google, is to change the Run Script stage of the target.
Change
to
It’s working round the issue, rather than solving it, but does work.