Exit properly.

This commit is contained in:
W. Eric Norum
2006-10-27 16:10:34 +00:00
parent fd81d5f7ca
commit f046ff86be
2 changed files with 2 additions and 3 deletions

View File

@@ -121,5 +121,4 @@ epicsRunLibComTests(void)
*/
printf("\n****** EpicsExit Test *****\n");
epicsExitTest();
epicsExit (0);
}

View File

@@ -103,6 +103,6 @@ Init (rtems_task_argument ignored)
* Run the tests
*/
epicsRunLibComTests();
printf("***** Unexpected return from tests!\n");
rtems_task_delete(RTEMS_SELF);
epicsExit(0);
exit(0);
}