Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix running http-client_test with 'make test'
when issuing 'make test' the http-client_test were not found due to
wrong parameter in add_test() call
  • Loading branch information
torbjoernk committed Apr 8, 2013
commit e0b3f977fad0f15a12a268f8320ed585ed681b66
2 changes: 1 addition & 1 deletion http/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ if (CPP-NETLIB_BUILD_TESTS)
set_target_properties(cpp-netlib-http-client_test
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CPP-NETLIB_BINARY_DIR}/tests)
add_test(cpp-netlib-http-client_test
${CPP-NETLIB_BINARY_DIR}/tests/cpp-netlib-http-${test})
${CPP-NETLIB_BINARY_DIR}/tests/cpp-netlib-http-client_test)

# set ( SERVER_API_TESTS
# server_constructor_test
Expand Down