VxWorks: tests compile and run

This commit is contained in:
Matej Sekoranja
2014-10-31 20:53:23 -04:00
parent d935f0b984
commit d7a8333f5e
4 changed files with 10 additions and 9 deletions

View File

@ -48,12 +48,6 @@ doxygen
make runtests
./bin/${EPICS_HOST_ARCH}/testServer &
./testApp/${EPICS_HOST_ARCH}/testRemoteClientImpl
# Clean up testServer
kill $!
###########################################
# Create distribution

View File

@ -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

View File

@ -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>

View File

@ -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;