I'm going through the tutorial for setting up logic tests - http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone%5Fdevelopment/135-Unit%5FTesting%5FApplications/unit%5Ftesting%5Fapplications.html
When I attempt to build and run, I get this error : "exited abnormally with code 133 (it may have crashed)."
My unit test is identical to the example -
#import "LogicTests.h"
@implementation LogicTests
- (void) testFail {
STFail(@"Must fail to succeed.");
}
@end