vote up 0 vote down star

I'm trying to unit test some iphone code that instantiates fonts. I've narrowed it down to the following crashing unit test:

#import "test.h"
#import <UIKit/UIKit.h>


@implementation test

- (void)testFonts {
  [UIFont systemFontOfSize:12];
}

@end

This crashes with the error:

Test Case '-[test testFonts]' started.
/Developer/Tools/RunPlatformUnitTests.include: line 415: 79768 Trace/BPT trap          "${THIN_TEST_RIG}" "${OTHER_TEST_FLAGS}" "${TEST_BUNDLE_PATH}"
/Developer/Tools/RunPlatformUnitTests.include:451: error: Test rig '/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.sdk/Developer/usr/bin/otest' exited abnormally with code 133 (it may have crashed).

It seems like there's some setup I'm not doing in my unit test target to make this work. How do you unit test things that instantiate fonts?

flag

44% accept rate
You should provide the console output for better debugging. However there is no additional step needed for accessing a font, the way you do it is just fine. The problem is either: not including / linking against the correct version of UIKit or somewhere else in your code. – Till Nov 14 at 13:47

2 Answers

vote up 0 vote down

I have this error even whout UIKit included.

link|flag
By the way, i just notice i had old XCode. Installing new developer tools with new iPhone SDK fix this problem for me. – Semka Novikov 2 days ago
vote up 1 vote down

Have you tried it on the device? I seem to remember you can only include UIKit stuff in tests when running on the device, not against the simulator...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.