diff --git a/testCa/Makefile b/testCa/Makefile index 3fcb2ed..c2700f0 100644 --- a/testCa/Makefile +++ b/testCa/Makefile @@ -13,6 +13,7 @@ TESTPROD_HOST += testCaProvider testCaProvider_SRCS += testCaProvider.cpp testHarness_SRCS += testCaProvider.cpp TESTS += testCaProvider +testHarness_SRCS += pvCaAllTests.c # Name the application caTestHarness diff --git a/testCa/pvCaAllTests.c b/testCa/pvCaAllTests.c new file mode 100644 index 0000000..43d3705 --- /dev/null +++ b/testCa/pvCaAllTests.c @@ -0,0 +1,18 @@ +/* + * + */ + +#include +#include +#include +#include + +int testCaProvider(void); + +void pvCaAllTests(void) +{ + testHarness(); + runTest(testCaProvider); + + epicsExit(0); /* Trigger test harness */ +}