Monotone-Parent: 406832bc51a0849377951d10353a33568b33877b

Monotone-Revision: 2fb9aaf01f9b4a29e3d49d6c35deaf48a4e57e9c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-04-16T15:23:24
maint-2.0.2
Wolfgang Sourdeau 2012-04-16 15:23:24 +00:00
parent 38ebd9e68c
commit 10bfd70be1
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2012-04-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Tests/Unit/SOGoTestRunner.m (-run): do not empty the pool after
each test.
2012-04-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m (-bareFetchFields: ...),

View File

@ -68,11 +68,9 @@
NSEnumerator *allTestClasses;
NSString *class;
SOGoTest *test;
NSAutoreleasePool *pool;
int rc;
rc = 0;
pool = [NSAutoreleasePool currentPool];
[self retain];
allTestClasses = [[SOGoTest allTestClasses] objectEnumerator];
@ -83,8 +81,7 @@
[test setTestRunner: self];
if (![test run])
rc |= -1;
[test autorelease];
[pool emptyPool];
[test release];
}
[self displayReport];