8339c338de
- using enum to specify command. BlockingTCPAcceptor.cpp: - added 'destroy()' to dtor - added parentheses to expressions blockingTCPCinnector.cpp: - fixed log message blockingTCPTransport.cpp: - added _socketAddress allocation - fixed waiting for timeout in 'waitUntilVerified' - fixed how many bytes are copied from the buffer responseHandlers.cpp: - added 'ConnectionValidationHandler' implementation - added 'ConnectionValidationHandler' to 'ServerResponseHandler' responseHandlers.h: - added 'ConnectionValidationHandler' declaration inetAddressUtil.cpp: - fixed all issues with sockaddr_in byte-order - removed function 'processAddressForList', using EPICSv3 'aToIPAddr' instead inetAddressUtilsTest.cpp: - fixed the tests in accordance with the correct function implementation testBlockingUDPClnt.cpp: - deleting transport at the end of the test testBlockingTCPSrv.cpp, testBlockingTCPClnt.cpp: - added tests (work in progress). Makefile: - added blockingTCP tests
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
TOP=../..
|
|
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
PROD_HOST += testBlockingUDPSrv
|
|
testBlockingUDPSrv_SRCS += testBlockingUDPSrv.cpp
|
|
testBlockingUDPSrv_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testBlockingUDPClnt
|
|
testBlockingUDPClnt_SRCS += testBlockingUDPClnt.cpp
|
|
testBlockingUDPClnt_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testRemoteClientImpl
|
|
testRemoteClientImpl_SRCS += testRemoteClientImpl.cpp
|
|
testRemoteClientImpl_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testBeaconEmitter
|
|
testBeaconEmitter_SRCS += testBeaconEmitter.cpp
|
|
testBeaconEmitter_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testBeaconHandler
|
|
testBeaconHandler_SRCS += testBeaconHandler.cpp
|
|
testBeaconHandler_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testBlockingTCPSrv
|
|
testBlockingTCPSrv_SRCS += testBlockingTCPSrv.cpp
|
|
testBlockingTCPSrv_LIBS += pvData pvAccess Com
|
|
|
|
PROD_HOST += testBlockingTCPClnt
|
|
testBlockingTCPClnt_SRCS += testBlockingTCPClnt
|
|
testBlockingTCPClnt_LIBS += pvData pvAccess Com
|
|
|
|
include $(TOP)/configure/RULES
|
|
#----------------------------------------
|
|
# ADD RULES AFTER THIS LINE
|
|
|