vxWork tests for all subtests; still need to combine them all to one

This commit is contained in:
Matej Sekoranja
2014-10-31 07:57:20 -04:00
parent 2a8a1d3736
commit 80a537bc4c
12 changed files with 164 additions and 24 deletions

View File

@@ -42,7 +42,7 @@ void internalTestBaseException(int /*unused*/ = 0)
}
}
void testBaseException() {
void testBaseExceptionTest() {
printf("testBaseException... ");
try {
@@ -86,7 +86,7 @@ MAIN(testBaseException)
testPlan(2);
testDiag("Tests base exception");
testLogicException();
testBaseException();
testBaseExceptionTest();
return testDone();
}