2020-03-23 09:44:29 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2009-06-09 13:29:16 -04:00
|
|
|
set(TARGET_LABEL_PREFIX "Test ")
|
2009-04-06 17:05:44 -04:00
|
|
|
|
2018-07-17 02:36:59 -04:00
|
|
|
function(setup_test TEST_NAME) # ARGN are the files in the test
|
2020-05-09 20:10:20 -04:00
|
|
|
add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN})
|
|
|
|
add_dependencies(testdeps ${TEST_NAME})
|
2009-06-09 13:29:16 -04:00
|
|
|
string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME)
|
2009-04-06 17:05:44 -04:00
|
|
|
|
2009-06-09 13:29:16 -04:00
|
|
|
include_directories(
|
2013-01-06 13:06:49 -05:00
|
|
|
${CURL_SOURCE_DIR}/lib # To be able to reach "curl_setup_once.h"
|
2009-07-14 09:25:14 -04:00
|
|
|
${CURL_BINARY_DIR}/lib # To be able to reach "curl_config.h"
|
2017-05-22 03:05:10 -04:00
|
|
|
${CURL_BINARY_DIR}/include # To be able to reach "curl/curl.h"
|
2017-06-27 11:27:22 -04:00
|
|
|
${CURL_SOURCE_DIR}/tests/libtest # To be able to build generated tests
|
2009-06-09 13:29:16 -04:00
|
|
|
)
|
2014-11-05 19:32:45 -05:00
|
|
|
if(USE_ARES)
|
2009-07-14 15:03:31 -04:00
|
|
|
include_directories(${CARES_INCLUDE_DIR})
|
|
|
|
endif()
|
2014-08-22 11:02:59 -04:00
|
|
|
|
2018-07-17 02:36:59 -04:00
|
|
|
target_link_libraries(${TEST_NAME} libcurl ${CURL_LIBS})
|
2009-04-06 17:05:44 -04:00
|
|
|
|
2009-06-09 13:29:16 -04:00
|
|
|
set_target_properties(${TEST_NAME}
|
|
|
|
PROPERTIES COMPILE_DEFINITIONS ${UPPER_TEST_NAME})
|
|
|
|
set_target_properties(${TEST_NAME}
|
|
|
|
PROPERTIES PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}")
|
|
|
|
endfunction()
|
2009-04-06 17:05:44 -04:00
|
|
|
|
|
|
|
|
2009-06-09 13:29:16 -04:00
|
|
|
transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
|
|
|
include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake)
|
2009-04-06 17:05:44 -04:00
|
|
|
|
2009-06-09 13:29:16 -04:00
|
|
|
foreach(TEST_NAME ${noinst_PROGRAMS})
|
2018-06-04 14:28:59 -04:00
|
|
|
if(DEFINED ${TEST_NAME}_SOURCES)
|
|
|
|
setup_test(${TEST_NAME} ${${TEST_NAME}_SOURCES})
|
|
|
|
else()
|
|
|
|
setup_test(${TEST_NAME} ${nodist_${TEST_NAME}_SOURCES})
|
|
|
|
endif()
|
2009-06-09 13:29:16 -04:00
|
|
|
endforeach()
|
2009-04-06 17:05:44 -04:00
|
|
|
|
2014-11-05 19:32:44 -05:00
|
|
|
# Allows for hostname override to make tests machine independent.
|
|
|
|
# TODO this cmake build assumes a shared build, detect static linking here!
|
|
|
|
if(NOT WIN32)
|
2020-05-09 20:10:20 -04:00
|
|
|
add_library(hostname MODULE EXCLUDE_FROM_ALL sethostname.c sethostname.h)
|
|
|
|
add_dependencies(testdeps hostname)
|
2014-11-05 19:32:44 -05:00
|
|
|
# Output to .libs for compatibility with autotools, the test data expects a
|
|
|
|
# library at (tests)/libtest/.libs/libhostname.so
|
|
|
|
set_target_properties(hostname PROPERTIES
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/.libs)
|
2016-09-04 06:37:46 -04:00
|
|
|
if(HIDES_CURL_PRIVATE_SYMBOLS)
|
|
|
|
set_property(TARGET hostname APPEND PROPERTY COMPILE_DEFINITIONS "CURL_HIDDEN_SYMBOLS")
|
|
|
|
set_property(TARGET hostname APPEND PROPERTY COMPILE_FLAGS ${CURL_CFLAG_SYMBOLS_HIDE})
|
|
|
|
endif()
|
2014-11-05 19:32:44 -05:00
|
|
|
endif()
|
2009-04-07 17:59:15 -04:00
|
|
|
|
2017-06-27 11:27:22 -04:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT lib1521.c
|
2018-09-07 09:45:11 -04:00
|
|
|
COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl < ${CURL_SOURCE_DIR}/include/curl/curl.h > lib1521.c
|
2017-06-27 11:27:22 -04:00
|
|
|
DEPENDS
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl"
|
2018-09-07 09:45:11 -04:00
|
|
|
"${CURL_SOURCE_DIR}/include/curl/curl.h"
|
2017-06-27 11:27:22 -04:00
|
|
|
VERBATIM)
|
|
|
|
|
2018-07-24 17:26:45 -04:00
|
|
|
set_property(TARGET chkdecimalpoint
|
|
|
|
APPEND PROPERTY COMPILE_DEFINITIONS "CURLX_NO_MEMORY_CALLBACKS;CURL_STATICLIB")
|