2021-04-28 22:59:43 +00:00
|
|
|
add_subdirectory(gtest)
|
2018-01-17 13:46:14 +00:00
|
|
|
|
2014-08-09 16:07:15 +00:00
|
|
|
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
|
2016-02-03 11:59:03 +00:00
|
|
|
add_library(test-main STATIC ${TEST_MAIN_SRC})
|
2021-04-28 22:59:43 +00:00
|
|
|
target_link_libraries(test-main gtest fmt)
|
2016-01-29 15:21:17 +00:00
|
|
|
|
2016-03-18 15:10:06 +00:00
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
|
2016-02-04 16:15:19 +00:00
|
|
|
# Workaround GTest bug https://github.com/google/googletest/issues/705.
|
2016-02-04 16:36:41 +00:00
|
|
|
check_cxx_compiler_flag(
|
|
|
|
-fno-delete-null-pointer-checks HAVE_FNO_DELETE_NULL_POINTER_CHECKS)
|
|
|
|
if (HAVE_FNO_DELETE_NULL_POINTER_CHECKS)
|
|
|
|
target_compile_options(test-main PUBLIC -fno-delete-null-pointer-checks)
|
|
|
|
endif ()
|
2016-02-04 16:15:19 +00:00
|
|
|
|
2016-03-18 14:52:24 +00:00
|
|
|
# Use less strict pedantic flags for the tests because GMock doesn't compile
|
|
|
|
# cleanly with -pedantic and -std=c++98.
|
2016-01-29 15:21:17 +00:00
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang"))
|
2018-06-06 13:57:59 +00:00
|
|
|
#set(PEDANTIC_COMPILE_FLAGS -Wall -Wextra -Wno-long-long -Wno-variadic-macros)
|
2016-01-29 15:21:17 +00:00
|
|
|
endif ()
|
2014-08-09 16:04:38 +00:00
|
|
|
|
2016-07-16 14:58:42 +00:00
|
|
|
function(add_fmt_executable name)
|
|
|
|
add_executable(${name} ${ARGN})
|
|
|
|
if (MINGW)
|
|
|
|
target_link_libraries(${name} -static-libgcc -static-libstdc++)
|
|
|
|
endif ()
|
|
|
|
endfunction()
|
|
|
|
|
2014-08-09 16:04:38 +00:00
|
|
|
# Adds a test.
|
2016-02-03 11:59:03 +00:00
|
|
|
# Usage: add_fmt_test(name srcs...)
|
2014-09-05 14:12:20 +00:00
|
|
|
function(add_fmt_test name)
|
2021-04-30 21:21:49 +00:00
|
|
|
cmake_parse_arguments(ADD_FMT_TEST "HEADER_ONLY" "" "" ${ARGN})
|
|
|
|
|
|
|
|
set(sources ${name}.cc ${ADD_FMT_TEST_UNPARSED_ARGUMENTS})
|
|
|
|
set(libs test-main)
|
|
|
|
if (ADD_FMT_TEST_HEADER_ONLY)
|
|
|
|
set(sources ${sources} ${TEST_MAIN_SRC} ../src/os.cc)
|
|
|
|
set(libs gtest fmt-header-only)
|
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
set(PEDANTIC_COMPILE_FLAGS ${PEDANTIC_COMPILE_FLAGS} -Wno-weak-vtables)
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
add_fmt_executable(${name} ${sources})
|
|
|
|
target_link_libraries(${name} ${libs})
|
2016-07-16 14:58:42 +00:00
|
|
|
|
2018-03-21 14:50:59 +00:00
|
|
|
# Define if certain C++ features can be used.
|
2016-01-29 15:21:17 +00:00
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(${name} PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
2014-08-15 15:40:03 +00:00
|
|
|
endif ()
|
2019-08-31 16:26:45 +00:00
|
|
|
if (FMT_WERROR)
|
|
|
|
target_compile_options(${name} PRIVATE ${WERROR_FLAG})
|
|
|
|
endif ()
|
2015-03-02 00:12:26 +00:00
|
|
|
add_test(NAME ${name} COMMAND ${name})
|
2014-08-09 16:04:38 +00:00
|
|
|
endfunction()
|
|
|
|
|
2021-03-18 16:04:17 +00:00
|
|
|
add_fmt_test(args-test)
|
2015-06-22 15:17:23 +00:00
|
|
|
add_fmt_test(assert-test)
|
2018-12-07 18:19:44 +00:00
|
|
|
add_fmt_test(chrono-test)
|
2019-03-10 14:41:29 +00:00
|
|
|
add_fmt_test(color-test)
|
2018-09-19 15:55:45 +00:00
|
|
|
add_fmt_test(core-test)
|
2014-09-05 14:12:20 +00:00
|
|
|
add_fmt_test(gtest-extra-test)
|
2018-09-19 15:55:45 +00:00
|
|
|
add_fmt_test(format-test mock-allocator.h)
|
Making CUDA test work with CMAKE_MSVC_RUNTIME_LIBRARY
CMake 3.15 introduced a new way of handling MSVC CRT type definition for
the build: CMAKE_MSVC_RUNTIME_LIBRARY variable.
(https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html)
This is supposed to be the way to go with MSVC CRT selection in new
projects. Using this method however breaks the current CMake script for
CUDA test. The reason is the CUDA test uses "FindCUDA" CMake module to
detect and set up CUDA support in CMake, which is deprecated since CMake
version 3.10, and which does not support CMAKE_MSVC_RUNTIME_LIBRARY
selector correctly (i.e. it does not propagate the compiler option
related to the CRT).
I did not find a way to "patch" in the correct compiler options, so
(while knowing this feature is only available from CMake 3.15 on) I
decided to change also the way CUDA is handled and instead of using
FindCUDA, used enable_language. Apart from having some nice additional
side-effects, it also fixed the problem with CRT selection.
However, the propagation of the compiler options (and in particular the
options related to C++ standard selection) is still a bit flaky on
Windows+MSVC platform, so it had to be done manually.
The patch makes two things in parallel:
1) Introduces MSVC_BUILD_STATIC, which, together with CMake version >=
3.15, allows building static version of the 'fmt' lib (and all the
tests).
2) At the same time, for CMake >= 3.15 it switches handling of CUDA
support from (old) FindCUDA to (new) enable_language, to fix the
problems which the old method has with the new CRT selector for MSVC in
a new CMake.
Added a check for CUDA before enabling it.
Using VERSION_LESS instead of VERSION_GREATER_EQUAL
Since apparently VERSION_GREATER_EQUAL exists only from CMake 3.7, while
Android is using CMake 3.6.
Removed MSVC_RUNTIME_LIBRARY logic from the CMake file.
The static build can be set on the command line with CMake >= 3.15
by defining the policy and the CMAKE_MSVC_RUNTIME_LIBARY this way:
cmake -G <gen> <options>
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW
-DMSVC_BUILD_STATIC=ON
-DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded$<$<CONFIG:Debug>:Debug>"
When MSVC_BUILD_DEBUG is set the test 'posix-mock-test' is skipped as it
does not build with the static runtime.
2019-09-19 12:58:15 +00:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(format-test PRIVATE /bigobj)
|
|
|
|
endif ()
|
2018-11-20 15:43:40 +00:00
|
|
|
if (NOT (MSVC AND BUILD_SHARED_LIBS))
|
2021-05-02 12:55:55 +00:00
|
|
|
add_fmt_test(format-impl-test HEADER_ONLY header-only-test.cc)
|
2018-11-20 15:43:40 +00:00
|
|
|
endif ()
|
2018-11-14 17:39:37 +00:00
|
|
|
add_fmt_test(locale-test)
|
2016-05-06 14:37:20 +00:00
|
|
|
add_fmt_test(ostream-test)
|
2019-07-25 16:01:21 +00:00
|
|
|
add_fmt_test(compile-test)
|
2014-09-05 14:12:20 +00:00
|
|
|
add_fmt_test(printf-test)
|
2018-05-10 14:11:00 +00:00
|
|
|
add_fmt_test(ranges-test)
|
2019-05-15 17:02:40 +00:00
|
|
|
add_fmt_test(scan-test)
|
2021-05-18 03:47:38 +00:00
|
|
|
add_fmt_test(wchar-test)
|
2015-08-19 15:03:17 +00:00
|
|
|
|
2020-12-24 14:40:46 +00:00
|
|
|
if (NOT MSVC)
|
2020-12-24 14:54:33 +00:00
|
|
|
# FMT_ENFORCE_COMPILE_STRING is not supported under MSVC due to compiler bugs.
|
2021-05-01 00:02:14 +00:00
|
|
|
add_fmt_test(enforce-checks-test)
|
|
|
|
target_compile_definitions(enforce-checks-test PRIVATE
|
2020-12-24 14:54:33 +00:00
|
|
|
-DFMT_ENFORCE_COMPILE_STRING)
|
|
|
|
endif ()
|
2020-12-24 14:40:46 +00:00
|
|
|
|
2020-07-13 13:11:23 +00:00
|
|
|
if (NOT DEFINED MSVC_STATIC_RUNTIME AND MSVC)
|
|
|
|
foreach (flag_var
|
|
|
|
CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
|
|
|
|
CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
|
|
|
|
if (${flag_var} MATCHES "^(/|-)(MT|MTd)")
|
|
|
|
set(MSVC_STATIC_RUNTIME ON)
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT MSVC_STATIC_RUNTIME)
|
2016-07-16 14:58:42 +00:00
|
|
|
add_fmt_executable(posix-mock-test
|
2018-03-21 14:50:59 +00:00
|
|
|
posix-mock-test.cc ../src/format.cc ${TEST_MAIN_SRC})
|
2017-10-21 14:38:49 +00:00
|
|
|
target_include_directories(
|
|
|
|
posix-mock-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2021-04-28 22:59:43 +00:00
|
|
|
target_link_libraries(posix-mock-test gtest)
|
2018-06-06 13:57:59 +00:00
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(posix-mock-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
endif ()
|
2019-06-24 00:10:57 +00:00
|
|
|
if (HAVE_STRTOD_L)
|
|
|
|
target_compile_definitions(posix-mock-test PRIVATE FMT_LOCALE)
|
|
|
|
endif ()
|
2015-06-24 16:16:03 +00:00
|
|
|
add_test(NAME posix-mock-test COMMAND posix-mock-test)
|
2019-12-15 22:51:37 +00:00
|
|
|
add_fmt_test(os-test)
|
2014-08-09 16:04:38 +00:00
|
|
|
endif ()
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
message(STATUS "FMT_PEDANTIC: ${FMT_PEDANTIC}")
|
|
|
|
|
2020-11-15 17:03:20 +00:00
|
|
|
if (FMT_PEDANTIC AND CXX_STANDARD LESS 20)
|
2019-05-28 03:02:08 +00:00
|
|
|
# MSVC fails to compile GMock when C++17 is enabled.
|
|
|
|
if (FMT_HAS_VARIANT AND NOT MSVC)
|
|
|
|
add_fmt_test(std-format-test)
|
|
|
|
set_property(TARGET std-format-test PROPERTY CXX_STANDARD 17)
|
|
|
|
endif ()
|
|
|
|
|
2019-03-10 14:56:46 +00:00
|
|
|
# Test that the library can be compiled with exceptions disabled.
|
|
|
|
# -fno-exception is broken in icc: https://github.com/fmtlib/fmt/issues/822.
|
|
|
|
if (NOT CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
|
|
|
check_cxx_compiler_flag(-fno-exceptions HAVE_FNO_EXCEPTIONS_FLAG)
|
|
|
|
endif ()
|
|
|
|
if (HAVE_FNO_EXCEPTIONS_FLAG)
|
|
|
|
add_library(noexception-test ../src/format.cc)
|
|
|
|
target_include_directories(
|
|
|
|
noexception-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
target_compile_options(noexception-test PRIVATE -fno-exceptions)
|
|
|
|
if (FMT_PEDANTIC)
|
|
|
|
target_compile_options(noexception-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# Test that the library compiles without locale.
|
|
|
|
add_library(nolocale-test ../src/format.cc)
|
|
|
|
target_include_directories(
|
|
|
|
nolocale-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
target_compile_definitions(
|
|
|
|
nolocale-test PRIVATE FMT_STATIC_THOUSANDS_SEPARATOR=1)
|
|
|
|
|
2019-07-25 16:01:21 +00:00
|
|
|
add_test(compile-error-test ${CMAKE_CTEST_COMMAND}
|
2016-02-03 12:05:18 +00:00
|
|
|
--build-and-test
|
2019-07-25 16:01:21 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/compile-error-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/compile-error-test"
|
2016-02-03 12:05:18 +00:00
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
2016-05-02 21:51:37 +00:00
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2018-06-06 13:57:59 +00:00
|
|
|
--build-options
|
2016-05-02 21:51:37 +00:00
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2018-06-06 13:57:59 +00:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
|
|
|
"-DCXX_STANDARD_FLAG=${CXX_STANDARD_FLAG}"
|
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-02 21:51:37 +00:00
|
|
|
"-DSUPPORTS_USER_DEFINED_LITERALS=${SUPPORTS_USER_DEFINED_LITERALS}")
|
2018-09-21 20:55:33 +00:00
|
|
|
endif ()
|
2016-02-03 12:05:18 +00:00
|
|
|
|
2018-09-21 20:55:33 +00:00
|
|
|
# These tests are disabled on Windows because they take too long.
|
|
|
|
if (FMT_PEDANTIC AND NOT WIN32)
|
|
|
|
# Test if the targets are found from the build directory.
|
2016-02-03 12:05:18 +00:00
|
|
|
add_test(find-package-test ${CMAKE_CTEST_COMMAND}
|
|
|
|
-C ${CMAKE_BUILD_TYPE}
|
|
|
|
--build-and-test
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/find-package-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/find-package-test"
|
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2016-05-03 22:51:28 +00:00
|
|
|
--build-options
|
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2021-04-08 00:25:40 +00:00
|
|
|
"-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}"
|
2018-06-06 13:57:59 +00:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
2016-05-03 22:51:28 +00:00
|
|
|
"-DFMT_DIR=${PROJECT_BINARY_DIR}"
|
2018-06-06 13:57:59 +00:00
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-03 22:51:28 +00:00
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 12:05:18 +00:00
|
|
|
|
2018-09-21 20:55:33 +00:00
|
|
|
# Test if the targets are found when add_subdirectory is used.
|
2016-02-10 15:01:40 +00:00
|
|
|
add_test(add-subdirectory-test ${CMAKE_CTEST_COMMAND}
|
2016-02-03 12:05:18 +00:00
|
|
|
-C ${CMAKE_BUILD_TYPE}
|
|
|
|
--build-and-test
|
2016-02-10 15:01:40 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/add-subdirectory-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/add-subdirectory-test"
|
2016-02-03 12:05:18 +00:00
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
2016-05-03 22:51:28 +00:00
|
|
|
--build-options
|
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2018-06-06 13:57:59 +00:00
|
|
|
"-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}"
|
|
|
|
"-DPEDANTIC_COMPILE_FLAGS=${PEDANTIC_COMPILE_FLAGS}"
|
2016-05-03 22:51:28 +00:00
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 12:05:18 +00:00
|
|
|
endif ()
|
2019-08-28 09:58:37 +00:00
|
|
|
|
2019-12-09 15:30:34 +00:00
|
|
|
# Activate optional CUDA tests if CUDA is found. For version selection see
|
2019-08-28 09:58:37 +00:00
|
|
|
# https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#cpp14-language-features
|
2019-12-09 15:30:34 +00:00
|
|
|
if (FMT_CUDA_TEST)
|
|
|
|
if (${CMAKE_VERSION} VERSION_LESS 3.15)
|
|
|
|
find_package(CUDA 9.0)
|
|
|
|
else ()
|
|
|
|
include(CheckLanguage)
|
|
|
|
check_language(CUDA)
|
|
|
|
if (CMAKE_CUDA_COMPILER)
|
|
|
|
enable_language(CUDA OPTIONAL)
|
|
|
|
set(CUDA_FOUND TRUE)
|
|
|
|
endif ()
|
Making CUDA test work with CMAKE_MSVC_RUNTIME_LIBRARY
CMake 3.15 introduced a new way of handling MSVC CRT type definition for
the build: CMAKE_MSVC_RUNTIME_LIBRARY variable.
(https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html)
This is supposed to be the way to go with MSVC CRT selection in new
projects. Using this method however breaks the current CMake script for
CUDA test. The reason is the CUDA test uses "FindCUDA" CMake module to
detect and set up CUDA support in CMake, which is deprecated since CMake
version 3.10, and which does not support CMAKE_MSVC_RUNTIME_LIBRARY
selector correctly (i.e. it does not propagate the compiler option
related to the CRT).
I did not find a way to "patch" in the correct compiler options, so
(while knowing this feature is only available from CMake 3.15 on) I
decided to change also the way CUDA is handled and instead of using
FindCUDA, used enable_language. Apart from having some nice additional
side-effects, it also fixed the problem with CRT selection.
However, the propagation of the compiler options (and in particular the
options related to C++ standard selection) is still a bit flaky on
Windows+MSVC platform, so it had to be done manually.
The patch makes two things in parallel:
1) Introduces MSVC_BUILD_STATIC, which, together with CMake version >=
3.15, allows building static version of the 'fmt' lib (and all the
tests).
2) At the same time, for CMake >= 3.15 it switches handling of CUDA
support from (old) FindCUDA to (new) enable_language, to fix the
problems which the old method has with the new CRT selector for MSVC in
a new CMake.
Added a check for CUDA before enabling it.
Using VERSION_LESS instead of VERSION_GREATER_EQUAL
Since apparently VERSION_GREATER_EQUAL exists only from CMake 3.7, while
Android is using CMake 3.6.
Removed MSVC_RUNTIME_LIBRARY logic from the CMake file.
The static build can be set on the command line with CMake >= 3.15
by defining the policy and the CMAKE_MSVC_RUNTIME_LIBARY this way:
cmake -G <gen> <options>
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW
-DMSVC_BUILD_STATIC=ON
-DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded$<$<CONFIG:Debug>:Debug>"
When MSVC_BUILD_DEBUG is set the test 'posix-mock-test' is skipped as it
does not build with the static runtime.
2019-09-19 12:58:15 +00:00
|
|
|
endif ()
|
|
|
|
|
2019-12-09 15:30:34 +00:00
|
|
|
if (CUDA_FOUND)
|
|
|
|
add_subdirectory(cuda-test)
|
|
|
|
add_test(NAME cuda-test COMMAND fmt-in-cuda-test)
|
|
|
|
endif ()
|
2019-08-28 09:58:37 +00:00
|
|
|
endif ()
|