In some cases the license-identification header was missing, so I added that as well. Replaced the remaining headers that specifically identified "Versions 3.13.7 and higher". Makefiles and the build system were deliberately excluded.
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
/*************************************************************************\
|
|
* Copyright (c) 2012 UChicago Argonne LLC, as Operator of Argonne
|
|
* National Laboratory.
|
|
* SPDX-License-Identifier: EPICS
|
|
* EPICS BASE is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
\*************************************************************************/
|
|
|
|
/*
|
|
* Run tests as a batch.
|
|
*/
|
|
|
|
#include "epicsUnitTest.h"
|
|
#include "epicsExit.h"
|
|
|
|
int analogMonitorTest(void);
|
|
int compressTest(void);
|
|
int recMiscTest(void);
|
|
int arrayOpTest(void);
|
|
int asTest(void);
|
|
int linkRetargetLinkTest(void);
|
|
int linkInitTest(void);
|
|
int asyncSoftTest(void);
|
|
int simmTest(void);
|
|
int mbbioDirectTest(void);
|
|
int scanEventTest(void);
|
|
|
|
void epicsRunRecordTests(void)
|
|
{
|
|
testHarness();
|
|
|
|
runTest(analogMonitorTest);
|
|
|
|
runTest(compressTest);
|
|
|
|
runTest(recMiscTest);
|
|
|
|
runTest(arrayOpTest);
|
|
|
|
runTest(asTest);
|
|
|
|
runTest(linkRetargetLinkTest);
|
|
|
|
runTest(linkInitTest);
|
|
|
|
runTest(asyncSoftTest);
|
|
|
|
runTest(simmTest);
|
|
|
|
runTest(mbbioDirectTest);
|
|
|
|
runTest(scanEventTest);
|
|
|
|
epicsExit(0); /* Trigger test harness */
|
|
}
|