Add testHarnessDone

This commit is contained in:
Andrew Johnson
2015-07-17 18:06:58 -05:00
parent 625172419e
commit 002bafdf07
3 changed files with 10 additions and 3 deletions
+2 -2
View File
@@ -210,7 +210,7 @@ int testDone(void) {
/* Our test harness, for RTEMS and vxWorks */
static void harnessExit(void *dummy) {
void testHarnessExit(void *dummy) {
epicsTimeStamp ended;
int Faulty;
@@ -247,7 +247,7 @@ static void harnessExit(void *dummy) {
void testHarness(void) {
epicsThreadOnce(&onceFlag, testOnce, NULL);
epicsAtExit(harnessExit, NULL);
epicsAtExit(testHarnessExit, NULL);
Harness = 1;
Programs = 0;
Tests = 0;