From 00c56ed12e69eee5df4ec8d435c3fb08b093d3bd Mon Sep 17 00:00:00 2001 From: mrkraimer Date: Fri, 11 May 2018 13:20:29 -0400 Subject: [PATCH] another attempt to get RTEMS to build --- testCa/Makefile | 1 + testCa/pvCaAllTests.c | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 testCa/pvCaAllTests.c 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 */ +}