2014-08-09 16:07:15 +00:00
|
|
|
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
|
2014-12-19 15:39:13 +00:00
|
|
|
add_library(test-main STATIC ${TEST_MAIN_SRC})
|
2015-06-23 13:40:22 +00:00
|
|
|
target_link_libraries(test-main cppformat gmock)
|
2014-08-09 16:04:38 +00:00
|
|
|
|
|
|
|
# Adds a test.
|
2014-09-05 14:12:20 +00:00
|
|
|
# Usage: add_fmt_test(name [CUSTOM_LINK] srcs...)
|
|
|
|
function(add_fmt_test name)
|
2014-08-15 15:40:03 +00:00
|
|
|
cmake_parse_arguments(add_fmt_test CUSTOM_LINK "" "" ${ARGN})
|
|
|
|
add_executable(${name} ${name}.cc ${add_fmt_test_UNPARSED_ARGUMENTS})
|
2014-09-05 14:12:20 +00:00
|
|
|
target_link_libraries(${name} test-main)
|
2014-08-15 15:40:03 +00:00
|
|
|
if (NOT add_fmt_test_CUSTOM_LINK)
|
2015-06-23 13:40:22 +00:00
|
|
|
target_link_libraries(${name} cppformat)
|
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-03-18 18:02:37 +00:00
|
|
|
check_cxx_source_compiles("
|
|
|
|
enum C : char {A};
|
|
|
|
int main() {}"
|
|
|
|
HAVE_ENUM_BASE)
|
|
|
|
if (HAVE_ENUM_BASE)
|
|
|
|
add_definitions(-DFMT_USE_ENUM_BASE=1)
|
|
|
|
endif ()
|
|
|
|
|
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)
|
2015-05-12 14:35:29 +00:00
|
|
|
if (FMT_PEDANTIC AND MSVC)
|
2015-03-29 00:29:12 +00:00
|
|
|
set_target_properties(format-test PROPERTIES COMPILE_FLAGS /W4)
|
|
|
|
endif ()
|
|
|
|
|
2014-09-05 14:12:20 +00:00
|
|
|
add_fmt_test(format-impl-test CUSTOM_LINK)
|
|
|
|
add_fmt_test(printf-test)
|
2014-08-09 16:04:38 +00:00
|
|
|
foreach (target format-test printf-test)
|
2015-05-12 14:35:29 +00:00
|
|
|
if (FMT_PEDANTIC AND CMAKE_COMPILER_IS_GNUCXX)
|
2014-08-09 16:04:38 +00:00
|
|
|
set_target_properties(${target} PROPERTIES COMPILE_FLAGS
|
|
|
|
"-Wall -Wextra -pedantic -Wno-long-long -Wno-variadic-macros")
|
2014-01-07 16:43:53 +00:00
|
|
|
endif ()
|
2014-08-09 16:04:38 +00:00
|
|
|
if (CPP11_FLAG)
|
|
|
|
set_target_properties(${target} PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
|
|
|
endif ()
|
|
|
|
endforeach ()
|
2014-09-29 15:48:16 +00:00
|
|
|
add_fmt_test(util-test mock-allocator.h)
|
|
|
|
if (CPP11_FLAG)
|
|
|
|
set_target_properties(util-test PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
|
|
|
endif ()
|
2014-08-09 16:04:38 +00:00
|
|
|
|
2014-08-09 16:07:15 +00:00
|
|
|
foreach (src ${FMT_SOURCES})
|
|
|
|
set(FMT_TEST_SOURCES ${FMT_TEST_SOURCES} ../${src})
|
|
|
|
endforeach ()
|
|
|
|
|
2014-09-29 16:15:41 +00:00
|
|
|
check_cxx_source_compiles("
|
|
|
|
#include <type_traits>
|
2014-09-29 17:42:16 +00:00
|
|
|
class C { void operator=(const C&); };
|
2014-09-29 18:03:18 +00:00
|
|
|
int main() { static_assert(!std::is_copy_assignable<C>::value, \"\"); }"
|
2014-09-29 17:42:16 +00:00
|
|
|
HAVE_TYPE_TRAITS)
|
2014-09-29 15:48:16 +00:00
|
|
|
if (HAVE_TYPE_TRAITS)
|
|
|
|
add_definitions(-DFMT_USE_TYPE_TRAITS=1)
|
|
|
|
endif ()
|
|
|
|
|
2014-08-09 16:07:15 +00:00
|
|
|
add_executable(macro-test macro-test.cc ${FMT_TEST_SOURCES} ${TEST_MAIN_SRC})
|
2014-09-17 15:01:42 +00:00
|
|
|
target_link_libraries(macro-test gmock)
|
2014-08-09 16:04:38 +00:00
|
|
|
|
|
|
|
if (HAVE_OPEN)
|
2015-06-24 16:16:03 +00:00
|
|
|
add_executable(posix-mock-test posix-mock-test.cc ../format.cc ${TEST_MAIN_SRC})
|
|
|
|
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 ()
|
|
|
|
|
2014-12-09 14:22:55 +00:00
|
|
|
add_executable(header-only-test
|
|
|
|
header-only-test.cc header-only-test2.cc test-main.cc)
|
|
|
|
set_target_properties(header-only-test
|
|
|
|
PROPERTIES COMPILE_DEFINITIONS "FMT_HEADER_ONLY=1")
|
|
|
|
target_link_libraries(header-only-test gmock)
|
|
|
|
|
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)
|
2014-12-19 15:39:13 +00:00
|
|
|
add_library(noexception-test STATIC ../format.cc)
|
2014-10-06 15:30:55 +00:00
|
|
|
set_target_properties(noexception-test
|
|
|
|
PROPERTIES COMPILE_FLAGS -fno-exceptions)
|
|
|
|
endif ()
|
|
|
|
|
2015-05-12 14:35:29 +00:00
|
|
|
if (FMT_PEDANTIC)
|
2015-05-11 14:34:07 +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}
|
|
|
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM})
|
2015-06-12 14:15:57 +00:00
|
|
|
|
|
|
|
# Test that the library compiles without windows.h.
|
|
|
|
add_library(no-windows-h-test ../format.cc)
|
|
|
|
set_target_properties(no-windows-h-test
|
|
|
|
PROPERTIES COMPILE_DEFINITIONS "FMT_USE_WINDOWS_H=0")
|
2015-05-11 14:34:07 +00:00
|
|
|
endif ()
|