2016-01-29 15:21:17 +00:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Build the google test library
|
2015-12-09 13:52:09 +00:00
|
|
|
|
2015-08-19 14:27:08 +00:00
|
|
|
# We compile Google Test ourselves instead of using pre-compiled libraries.
|
|
|
|
# See the Google Test FAQ "Why is it not recommended to install a
|
|
|
|
# pre-compiled copy of Google Test (for example, into /usr/local)?"
|
|
|
|
# at http://code.google.com/p/googletest/wiki/FAQ for more details.
|
|
|
|
add_library(gmock STATIC
|
2016-02-10 15:16:49 +00:00
|
|
|
gmock-gtest-all.cc gmock/gmock.h gtest/gtest.h gtest/gtest-spi.h)
|
2017-09-28 15:46:47 +00:00
|
|
|
target_compile_options(gmock PUBLIC ${CPP14_FLAG})
|
2016-04-13 12:26:42 +00:00
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_HAS_STD_WSTRING=1)
|
2016-02-10 15:16:49 +00:00
|
|
|
target_include_directories(gmock PUBLIC .)
|
2016-01-29 15:21:17 +00:00
|
|
|
|
2015-08-19 14:27:08 +00:00
|
|
|
find_package(Threads)
|
|
|
|
if (Threads_FOUND)
|
|
|
|
target_link_libraries(gmock ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
else ()
|
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_HAS_PTHREAD=0)
|
|
|
|
endif ()
|
|
|
|
|
2016-01-29 12:03:47 +00:00
|
|
|
if (NOT SUPPORTS_VARIADIC_TEMPLATES OR NOT SUPPORTS_INITIALIZER_LIST)
|
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_LANG_CXX11=0)
|
2015-08-19 14:27:08 +00:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
# Workaround a bug in implementation of variadic templates in MSVC11.
|
|
|
|
if (MSVC)
|
|
|
|
target_compile_definitions(gmock PUBLIC _VARIADIC_MAX=10)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# GTest doesn't detect <tuple> with clang.
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
target_compile_definitions(gmock PUBLIC GTEST_USE_OWN_TR1_TUPLE=1)
|
|
|
|
endif ()
|
|
|
|
|
2018-01-17 13:46:14 +00:00
|
|
|
# Silence MSVC tr1 deprecation warning in gmock.
|
|
|
|
target_compile_definitions(gmock
|
|
|
|
PUBLIC _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING=0)
|
|
|
|
|
2016-01-29 15:21:17 +00:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Build the actual library tests
|
|
|
|
|
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})
|
|
|
|
target_compile_definitions(test-main PUBLIC
|
|
|
|
FMT_USE_FILE_DESCRIPTORS=$<BOOL:${HAVE_OPEN}>)
|
2016-04-24 14:45:13 +00:00
|
|
|
target_link_libraries(test-main gmock 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"))
|
2016-03-18 14:52:24 +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)
|
2016-07-16 14:58:42 +00:00
|
|
|
add_fmt_executable(${name} ${name}.cc ${ARGN})
|
2016-02-03 11:59:03 +00:00
|
|
|
target_link_libraries(${name} test-main)
|
2016-07-16 14:58:42 +00:00
|
|
|
|
2016-01-29 15:21:17 +00:00
|
|
|
# define if certain c++ features can be used
|
|
|
|
target_compile_definitions(${name} PRIVATE
|
|
|
|
FMT_USE_TYPE_TRAITS=$<BOOL:${SUPPORTS_TYPE_TRAITS}>
|
2016-02-03 11:59:03 +00:00
|
|
|
FMT_USE_ENUM_BASE=$<BOOL:${SUPPORTS_ENUM_BASE}>)
|
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 ()
|
2015-03-02 00:12:26 +00:00
|
|
|
add_test(NAME ${name} COMMAND ${name})
|
2014-08-09 16:04:38 +00:00
|
|
|
endfunction()
|
|
|
|
|
2015-06-22 15:17:23 +00:00
|
|
|
add_fmt_test(assert-test)
|
2014-09-05 14:12:20 +00:00
|
|
|
add_fmt_test(gtest-extra-test)
|
|
|
|
add_fmt_test(format-test)
|
2016-01-29 15:21:17 +00:00
|
|
|
add_fmt_test(format-impl-test)
|
2016-05-06 14:37:20 +00:00
|
|
|
add_fmt_test(ostream-test)
|
2014-09-05 14:12:20 +00:00
|
|
|
add_fmt_test(printf-test)
|
2016-08-04 15:34:07 +00:00
|
|
|
add_fmt_test(time-test)
|
2014-09-29 15:48:16 +00:00
|
|
|
add_fmt_test(util-test mock-allocator.h)
|
2016-06-07 23:23:32 +00:00
|
|
|
add_fmt_test(custom-formatter-test)
|
2015-08-19 15:03:17 +00:00
|
|
|
|
2016-02-02 16:14:51 +00:00
|
|
|
# Enable stricter options for one test to make sure that the header is free of
|
|
|
|
# warnings.
|
|
|
|
if (FMT_PEDANTIC AND MSVC)
|
|
|
|
target_compile_options(format-test PRIVATE /W4)
|
|
|
|
endif ()
|
|
|
|
|
2014-08-09 16:04:38 +00:00
|
|
|
if (HAVE_OPEN)
|
2016-07-16 14:58:42 +00:00
|
|
|
add_fmt_executable(posix-mock-test
|
2017-10-21 14:38:49 +00:00
|
|
|
posix-mock-test.cc ../include/fmt/format.cc ${TEST_MAIN_SRC})
|
|
|
|
target_include_directories(
|
|
|
|
posix-mock-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-01-29 12:18:02 +00:00
|
|
|
target_compile_definitions(posix-mock-test PRIVATE FMT_USE_FILE_DESCRIPTORS=1)
|
2015-06-24 16:16:03 +00:00
|
|
|
target_link_libraries(posix-mock-test gmock)
|
|
|
|
add_test(NAME posix-mock-test COMMAND posix-mock-test)
|
|
|
|
add_fmt_test(posix-test)
|
2014-08-09 16:04:38 +00:00
|
|
|
endif ()
|
|
|
|
|
2016-07-16 14:58:42 +00:00
|
|
|
add_fmt_executable(header-only-test
|
2014-12-09 14:22:55 +00:00
|
|
|
header-only-test.cc header-only-test2.cc test-main.cc)
|
|
|
|
target_link_libraries(header-only-test gmock)
|
2016-04-24 14:45:13 +00:00
|
|
|
if (TARGET fmt-header-only)
|
|
|
|
target_link_libraries(header-only-test fmt-header-only)
|
2016-01-29 12:18:02 +00:00
|
|
|
else ()
|
2017-10-21 14:38:49 +00:00
|
|
|
target_include_directories(
|
|
|
|
header-only-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-01-29 12:18:02 +00:00
|
|
|
target_compile_definitions(header-only-test PRIVATE FMT_HEADER_ONLY=1)
|
|
|
|
endif ()
|
2014-12-09 14:22:55 +00:00
|
|
|
|
2014-10-06 15:30:55 +00:00
|
|
|
# Test that the library can be compiled with exceptions disabled.
|
|
|
|
check_cxx_compiler_flag(-fno-exceptions HAVE_FNO_EXCEPTIONS_FLAG)
|
|
|
|
if (HAVE_FNO_EXCEPTIONS_FLAG)
|
2017-10-21 14:38:49 +00:00
|
|
|
add_library(noexception-test ../include/fmt/format.cc)
|
2017-09-28 15:46:47 +00:00
|
|
|
target_compile_options(noexception-test PUBLIC ${CPP14_FLAG})
|
2017-10-21 14:38:49 +00:00
|
|
|
target_include_directories(
|
|
|
|
noexception-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-01-29 15:21:17 +00:00
|
|
|
target_compile_options(noexception-test PRIVATE -fno-exceptions)
|
2014-10-06 15:30:55 +00:00
|
|
|
endif ()
|
|
|
|
|
2016-02-03 09:01:53 +00:00
|
|
|
if (FMT_PEDANTIC)
|
2016-02-03 12:05:18 +00:00
|
|
|
# Test that the library compiles without windows.h.
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
2017-10-21 14:38:49 +00:00
|
|
|
add_library(no-windows-h-test ../include/fmt/format.cc)
|
2017-09-28 15:46:47 +00:00
|
|
|
target_compile_options(no-windows-h-test PUBLIC ${CPP14_FLAG})
|
2017-10-21 14:38:49 +00:00
|
|
|
target_include_directories(
|
|
|
|
no-windows-h-test PRIVATE ${PROJECT_SOURCE_DIR}/include)
|
2016-02-03 12:05:18 +00:00
|
|
|
target_compile_definitions(no-windows-h-test PRIVATE FMT_USE_WINDOWS_H=0)
|
|
|
|
endif ()
|
2016-01-29 15:21:17 +00:00
|
|
|
|
2016-02-03 12:05:18 +00:00
|
|
|
add_test(compile-test ${CMAKE_CTEST_COMMAND}
|
|
|
|
--build-and-test
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/compile-test"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/compile-test"
|
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
2016-05-02 21:51:37 +00:00
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM}
|
|
|
|
--build-options
|
|
|
|
"-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
|
2017-09-28 15:46:47 +00:00
|
|
|
"-DCPP14_FLAG=${CPP14_FLAG}"
|
2016-05-02 21:51:37 +00:00
|
|
|
"-DSUPPORTS_USER_DEFINED_LITERALS=${SUPPORTS_USER_DEFINED_LITERALS}")
|
2016-02-03 12:05:18 +00:00
|
|
|
|
|
|
|
# test if the targets are findable from the build directory
|
|
|
|
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}"
|
2017-09-28 15:46:47 +00:00
|
|
|
"-DCPP14_FLAG=${CPP14_FLAG}"
|
2016-05-03 22:51:28 +00:00
|
|
|
"-DFMT_DIR=${PROJECT_BINARY_DIR}"
|
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 12:05:18 +00:00
|
|
|
|
|
|
|
# test if the targets are findable 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}"
|
2017-09-28 15:46:47 +00:00
|
|
|
"-DCPP14_FLAG=${CPP14_FLAG}"
|
2016-05-03 22:51:28 +00:00
|
|
|
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
|
2016-02-03 12:05:18 +00:00
|
|
|
endif ()
|