Fixes for RTEMS - routine name and comment

This commit is contained in:
Andrew Johnson
2016-02-03 11:37:20 -06:00
parent 9c93cef34e
commit 3babe530ca
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Run pvData tests as a batch.
* Run pvDatabase tests as a batch.
*
* Do *not* include performance measurements here, they don't help to
* prove functionality (which is the point of this convenience routine).

View File

@ -8,6 +8,8 @@
#include <epicsExit.h>
#include <osdTime.h>
extern void pvDatabaseAllTests(void);
rtems_task
Init (rtems_task_argument ignored)
{
@ -31,7 +33,6 @@ Init (rtems_task_argument ignored)
}
osdTimeRegister();
extern void pvDataAllTests(void);
pvDataAllTests();
pvDatabaseAllTests();
epicsExit(0);
}