2014-08-05 13:24:32 +02:00
|
|
|
# CMake build script for ZeroMQ tests
|
|
|
|
|
|
|
|
set(tests
|
|
|
|
test_system
|
|
|
|
test_pair_inproc
|
|
|
|
test_pair_tcp
|
|
|
|
test_reqrep_inproc
|
|
|
|
test_reqrep_tcp
|
|
|
|
test_hwm
|
2014-08-08 19:36:00 +02:00
|
|
|
test_hwm_pubsub
|
2014-08-05 13:24:32 +02:00
|
|
|
test_reqrep_device
|
|
|
|
test_sub_forward
|
|
|
|
test_invalid_rep
|
|
|
|
test_msg_flags
|
|
|
|
test_connect_resolve
|
|
|
|
test_immediate
|
|
|
|
test_last_endpoint
|
|
|
|
test_term_endpoint
|
|
|
|
test_router_mandatory
|
|
|
|
test_probe_router
|
|
|
|
test_stream
|
|
|
|
test_stream_empty
|
|
|
|
test_stream_disconnect
|
|
|
|
test_disconnect_inproc
|
|
|
|
test_ctx_options
|
|
|
|
test_ctx_destroy
|
|
|
|
test_security_null
|
|
|
|
test_security_plain
|
|
|
|
test_security_curve
|
|
|
|
test_iov
|
|
|
|
test_spec_req
|
|
|
|
test_spec_rep
|
|
|
|
test_spec_dealer
|
|
|
|
test_spec_router
|
|
|
|
test_spec_pushpull
|
|
|
|
test_req_correlate
|
|
|
|
test_req_relaxed
|
|
|
|
test_conflate
|
|
|
|
test_inproc_connect
|
|
|
|
test_issue_566
|
|
|
|
test_shutdown_stress
|
|
|
|
test_timeo
|
|
|
|
test_many_sockets
|
|
|
|
test_diffserv
|
|
|
|
test_connect_rid
|
2014-08-12 21:34:30 +02:00
|
|
|
test_xpub_nodrop
|
2015-01-26 15:59:19 +01:00
|
|
|
test_pub_invert_matching
|
2015-02-12 16:56:14 +02:00
|
|
|
test_thread_safe
|
|
|
|
test_client_server
|
2014-08-05 13:24:32 +02:00
|
|
|
)
|
|
|
|
if(NOT WIN32)
|
|
|
|
list(APPEND tests
|
|
|
|
test_monitor
|
|
|
|
test_pair_ipc
|
|
|
|
test_reqrep_ipc
|
|
|
|
test_abstract_ipc
|
|
|
|
test_proxy
|
|
|
|
test_filter_ipc
|
|
|
|
)
|
|
|
|
if(HAVE_FORK)
|
|
|
|
list(APPEND tests test_fork)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(test ${tests})
|
2015-02-09 10:47:05 -05:00
|
|
|
add_executable("${test}" "${test}.cpp")
|
|
|
|
target_link_libraries("${test}" libzmq)
|
|
|
|
set_target_properties("${test}" PROPERTIES
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/bin")
|
2014-08-05 13:24:32 +02:00
|
|
|
|
|
|
|
if(RT_LIBRARY)
|
2015-02-09 10:47:05 -05:00
|
|
|
target_link_libraries("${test}" "${RT_LIBRARY}" )
|
2014-08-05 13:24:32 +02:00
|
|
|
endif()
|
|
|
|
if(WIN32)
|
2015-02-09 10:47:05 -05:00
|
|
|
add_test(NAME "${test}" WORKING_DIRECTORY "${LIBRARY_OUTPUT_PATH}" COMMAND "${test}")
|
2014-08-05 13:24:32 +02:00
|
|
|
else()
|
2015-02-09 10:47:05 -05:00
|
|
|
add_test(NAME "${test}" COMMAND "${test}")
|
2014-08-05 13:24:32 +02:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
|
|
|
if(NOT CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
|
|
set_tests_properties(test_abstract_ipc PROPERTIES WILL_FAIL true)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|