VxWorks: tests compile and run
This commit is contained in:
@ -48,12 +48,6 @@ doxygen
|
||||
|
||||
make runtests
|
||||
|
||||
./bin/${EPICS_HOST_ARCH}/testServer &
|
||||
./testApp/${EPICS_HOST_ARCH}/testRemoteClientImpl
|
||||
|
||||
# Clean up testServer
|
||||
kill $!
|
||||
|
||||
###########################################
|
||||
# Create distribution
|
||||
|
||||
|
@ -4,12 +4,12 @@ SRC_DIRS += $(PVACCESS_TEST)/remote
|
||||
|
||||
TESTPROD_HOST += testChannelAccess
|
||||
testChannelAccess_SRCS = testChannelAccess channelAccessIFTest
|
||||
testHarness_SRCS += testChannelAccess.cpp
|
||||
testHarness_SRCS += testChannelAccess.cpp channelAccessIFTest.cpp
|
||||
TESTS += testChannelAccess
|
||||
|
||||
TESTPROD_HOST += testCodec
|
||||
testCodec_SRCS = testCodec
|
||||
testHarness_SRCS += testChannelAccess.cpp
|
||||
testHarness_SRCS += testCodec.cpp
|
||||
TESTS += testCodec
|
||||
|
||||
|
||||
|
@ -6,6 +6,10 @@
|
||||
#define NOMINMAX
|
||||
#endif
|
||||
|
||||
// TODO not nice
|
||||
// disable buggy boost enable_shared_from_this assert code
|
||||
#define BOOST_DISABLE_ASSERTS
|
||||
|
||||
#define TESTSERVERNOMAIN
|
||||
|
||||
#include <epicsExit.h>
|
||||
|
@ -6,6 +6,10 @@
|
||||
#define NOMINMAX
|
||||
#endif
|
||||
|
||||
// TODO not nice
|
||||
// disable buggy boost enable_shared_from_this assert code
|
||||
#define BOOST_DISABLE_ASSERTS
|
||||
|
||||
#include <pv/serverContext.h>
|
||||
#include <pv/clientContextImpl.h>
|
||||
#include <epicsExit.h>
|
||||
@ -25,7 +29,6 @@
|
||||
// TODO temp
|
||||
#include "testADCSim.cpp"
|
||||
|
||||
|
||||
using namespace epics::pvAccess;
|
||||
using namespace epics::pvData;
|
||||
using namespace std;
|
||||
|
Reference in New Issue
Block a user