example: add testing on RTEMS

This commit is contained in:
Ralph Lange
2020-03-31 16:06:46 +02:00
parent 1d430e1bfd
commit 47d3f0c0f3
5 changed files with 76 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
/*************************************************************************\
* Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne
* National Laboratory.
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
extern void epicsRunExampleTests(void);
int main(int argc, char **argv)
{
epicsRunExampleTests(); /* calls epicsExit(0) */
return 0;
}