/*************************************************************************\ * 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 */ }