forgot to add some files before last commit

This commit is contained in:
mrkraimer
2016-01-21 14:57:00 -05:00
parent 102174913c
commit 751cc8965d
6 changed files with 435 additions and 0 deletions

26
test/pvDatabaseAllTests.c Normal file
View File

@ -0,0 +1,26 @@
/*
* Run pvData 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).
*/
#include <stdio.h>
#include <epicsThread.h>
#include <epicsUnitTest.h>
/* src */
int testExampleRecord(void);
int testPVCopy(void);
int testPVRecord(void);
void pvDatabaseAllTests(void)
{
testHarness();
/* src */
runTest(testExampleRecord);
runTest(testPVCopy);
runTest(testPVRecord);
}