84063a728f82e0a50c6ed1fbcbf85071ea411a11
[obnox/cwrap/socket_wrapper.git] / tests / CMakeLists.txt
1 project(tests C)
2
3 include_directories(
4   ${CMAKE_BINARY_DIR}
5   ${CMAKE_CURRENT_SOURCE_DIR}
6   ${CMAKE_SOURCE_DIR}/src
7   ${CMOCKA_INCLUDE_DIR}
8 )
9
10 set(TORTURE_LIBRARY torture)
11
12 # RFC862 echo server
13 add_executable(echo_srv echo_srv.c)
14 target_link_libraries(echo_srv ${SWRAP_REQUIRED_LIBRARIES})
15
16 add_library(${TORTURE_LIBRARY} STATIC torture.c)
17 target_link_libraries(${TORTURE_LIBRARY}
18     ${CMOCKA_LIBRARY}
19     ${SWRAP_REQUIRED_LIBRARIES})
20
21 set(SWRAP_TESTS
22     test_ioctl
23     test_echo_tcp_socket
24     test_echo_tcp_connect
25     test_echo_tcp_bind
26     test_echo_tcp_socket_options
27     test_echo_tcp_write_read
28     test_echo_tcp_writev_readv
29     test_echo_tcp_get_peer_sock_name
30     test_echo_udp_sendto_recvfrom
31     test_echo_udp_send_recv
32     test_echo_udp_sendmsg_recvmsg)
33
34 if (HAVE_STRUCT_MSGHDR_MSG_CONTROL)
35     set(SWRAP_TESTS ${SWRAP_TESTS} test_sendmsg_recvmsg_fd)
36 endif (HAVE_STRUCT_MSGHDR_MSG_CONTROL)
37
38 foreach(_SWRAP_TEST ${SWRAP_TESTS})
39     add_cmocka_test(${_SWRAP_TEST} ${_SWRAP_TEST}.c ${TORTURE_LIBRARY})
40
41     if (OSX)
42         set_property(
43             TEST
44                 ${_SWRAP_TEST}
45             PROPERTY
46                 ENVIRONMENT DYLD_FORCE_FLAT_NAMESPACE=1;DYLD_INSERT_LIBRARIES=${SOCKET_WRAPPER_LOCATION})
47     else ()
48         set_property(
49             TEST
50                 ${_SWRAP_TEST}
51             PROPERTY
52                 ENVIRONMENT LD_PRELOAD=${SOCKET_WRAPPER_LOCATION})
53     endif()
54 endforeach()