@@ -23,12 +23,14 @@ if (Boost_FOUND)
23
23
client_get_test
24
24
client_get_different_port_test
25
25
client_get_timeout_test
26
- client_localhost_normal_test
26
+ # TODO: refactor these so that local servers are no longer necessary
27
+ # client_localhost_normal_test
27
28
client_get_streaming_test
28
29
)
29
- if (OPENSSL_FOUND )
30
- set ( TESTS ${TESTS} client_localhost_ssl_test )
31
- endif (OPENSSL_FOUND )
30
+ # TODO: refactor these so that local servers are no longer necessary
31
+ #if (OPENSSL_FOUND)
32
+ # set ( TESTS ${TESTS} client_localhost_ssl_test )
33
+ #endif (OPENSSL_FOUND)
32
34
foreach ( test ${TESTS} )
33
35
if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU )
34
36
set_source_files_properties (${test} .cpp
@@ -42,12 +44,13 @@ if (Boost_FOUND)
42
44
endif ()
43
45
set_target_properties (cpp-netlib-http-${test}
44
46
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CPP-NETLIB_BINARY_DIR}/tests )
45
- add_test (cpp-netlib-http-${test}
47
+ add_test (cpp-netlib-http-${test}
46
48
${CPP-NETLIB_BINARY_DIR}/tests/cpp-netlib-http-${test} )
47
49
endforeach (test )
48
50
49
51
set ( SERVER_API_TESTS
50
52
server_constructor_test
53
+ server_async_run_stop_concurrency
51
54
)
52
55
foreach ( test ${SERVER_API_TESTS} )
53
56
if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU )
@@ -67,7 +70,6 @@ if (Boost_FOUND)
67
70
server_hello_world
68
71
server_async
69
72
server_async_less_copy
70
- server_async_run_stop_concurrency
71
73
)
72
74
set ( PORT 8000 )
73
75
foreach ( test ${SERVER_TESTS} )
0 commit comments