Re: Unit Test code coverage with Xcode 5
Re: Unit Test code coverage with Xcode 5
- Subject: Re: Unit Test code coverage with Xcode 5
- From: Simon Robbie <email@hidden>
- Date: Tue, 01 Oct 2013 15:01:16 -0700
Best workaround I can come up with is to add a call to gcov in my tearDown methods:
extern void __gcov_flush(void);
- (void) tearDown { [super tearDown]; __gcov_flush(); }
On Oct 1, 2013, at 1:17 PM, Simon Robbie < email@hidden> wrote: Hi all,
Seems like I can get Xcode to generate gcno files but not the gcda files CoverStory needs.
I see talk of calling exit to generate them but that doesn't seem to work for me.
Any ideas what else I need to do or is this broken in Xcode 5? If it's broken, is there a Radar to fix it?
Thank you
Simon
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden