Balanced each call to Tinit() with a corresponding call to Tdeinit().

This commit is contained in:
Sears Russell 2007-03-08 07:48:42 +00:00
parent 5972fcc549
commit eba02ee311

View file

@ -145,9 +145,7 @@ START_TEST(loggerTest)
assert(i == 3000); assert(i == 3000);
deleteLogWriter(); deleteLogWriter();
LogDeinit(); Tdeinit();
} }
END_TEST END_TEST
@ -176,13 +174,8 @@ START_TEST(logHandleColdReverseIterator) {
i++; i++;
FreeLogEntry(e); FreeLogEntry(e);
} }
/* printf("i = %d\n", i); */
// assert(i == 1);
assert(i < 4); /* We should almost immediately hit a clr that goes to the beginning of the log... */ assert(i < 4); /* We should almost immediately hit a clr that goes to the beginning of the log... */
// fail_unless( i == 1 , NULL); Tdeinit();
LogDeinit();
deleteLogWriter();
} }
END_TEST END_TEST
@ -250,12 +243,9 @@ START_TEST(loggerTruncate) {
} }
FreeLogEntry(le); FreeLogEntry(le);
} }
assert(i == (3000 - 234 + 1)); assert(i == (3000 - 234 + 1));
// fail_unless(i == (3000 - 234 + 1), NULL);
Tdeinit();
LogDeinit();
} END_TEST } END_TEST
@ -264,7 +254,6 @@ START_TEST(loggerTruncate) {
pthread_mutex_t random_mutex; pthread_mutex_t random_mutex;
lsn_t truncated_to = 4; lsn_t truncated_to = 4;
//pthread_mutex_t truncated_to_mutex = PTHREAD_MUTEX_INITIALIZER;
#define NO_CONCURRENCY #define NO_CONCURRENCY
#ifdef NO_CONCURRENCY #ifdef NO_CONCURRENCY