mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-28 12:51:03 +00:00
build test-main library again to improve build time
This commit is contained in:
parent
c1a4cd0fa7
commit
ded46cc1b6
@ -37,6 +37,10 @@ endif ()
|
|||||||
# Build the actual library tests
|
# Build the actual library tests
|
||||||
|
|
||||||
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
|
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
|
||||||
|
add_library(test-main STATIC ${TEST_MAIN_SRC})
|
||||||
|
target_compile_definitions(test-main PUBLIC
|
||||||
|
FMT_USE_FILE_DESCRIPTORS=$<BOOL:${HAVE_OPEN}>)
|
||||||
|
target_link_libraries(test-main gmock cppformat)
|
||||||
|
|
||||||
# relax pedantic flags for the tests
|
# relax pedantic flags for the tests
|
||||||
# TODO: fix warnings in tests to make this redundant. (e.g. -Wshadow,...)
|
# TODO: fix warnings in tests to make this redundant. (e.g. -Wshadow,...)
|
||||||
@ -45,19 +49,14 @@ if (CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang"))
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
# Adds a test.
|
# Adds a test.
|
||||||
# Usage: add_fmt_test(name [CUSTOM_LINK] srcs...)
|
# Usage: add_fmt_test(name srcs...)
|
||||||
function(add_fmt_test name)
|
function(add_fmt_test name)
|
||||||
cmake_parse_arguments(add_fmt_test CUSTOM_LINK "" "" ${ARGN})
|
add_executable(${name} ${name}.cc ${ARGN})
|
||||||
add_executable(${name} ${name}.cc ${TEST_MAIN_SRC} ${add_fmt_test_UNPARSED_ARGUMENTS})
|
target_link_libraries(${name} test-main)
|
||||||
target_link_libraries(${name} gmock)
|
|
||||||
if (NOT add_fmt_test_CUSTOM_LINK)
|
|
||||||
target_link_libraries(${name} cppformat)
|
|
||||||
endif ()
|
|
||||||
# define if certain c++ features can be used
|
# define if certain c++ features can be used
|
||||||
target_compile_definitions(${name} PRIVATE
|
target_compile_definitions(${name} PRIVATE
|
||||||
FMT_USE_TYPE_TRAITS=$<BOOL:${SUPPORTS_TYPE_TRAITS}>
|
FMT_USE_TYPE_TRAITS=$<BOOL:${SUPPORTS_TYPE_TRAITS}>
|
||||||
FMT_USE_ENUM_BASE=$<BOOL:${SUPPORTS_ENUM_BASE}>
|
FMT_USE_ENUM_BASE=$<BOOL:${SUPPORTS_ENUM_BASE}>)
|
||||||
FMT_USE_FILE_DESCRIPTORS=$<BOOL:${HAVE_OPEN}>)
|
|
||||||
if (FMT_PEDANTIC)
|
if (FMT_PEDANTIC)
|
||||||
target_compile_options(${name} PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
target_compile_options(${name} PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
||||||
endif ()
|
endif ()
|
||||||
@ -70,6 +69,7 @@ add_fmt_test(format-test)
|
|||||||
add_fmt_test(format-impl-test)
|
add_fmt_test(format-impl-test)
|
||||||
add_fmt_test(printf-test)
|
add_fmt_test(printf-test)
|
||||||
add_fmt_test(util-test mock-allocator.h)
|
add_fmt_test(util-test mock-allocator.h)
|
||||||
|
add_fmt_test(macro-test)
|
||||||
|
|
||||||
# Enable stricter options for one test to make sure that the header is free of
|
# Enable stricter options for one test to make sure that the header is free of
|
||||||
# warnings.
|
# warnings.
|
||||||
@ -78,9 +78,6 @@ if (FMT_PEDANTIC AND MSVC)
|
|||||||
target_compile_options(format-test PRIVATE /W4)
|
target_compile_options(format-test PRIVATE /W4)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
add_executable(macro-test macro-test.cc ${TEST_MAIN_SRC})
|
|
||||||
target_link_libraries(macro-test gmock cppformat)
|
|
||||||
|
|
||||||
if (HAVE_OPEN)
|
if (HAVE_OPEN)
|
||||||
add_executable(posix-mock-test posix-mock-test.cc ../cppformat/format.cc ${TEST_MAIN_SRC})
|
add_executable(posix-mock-test posix-mock-test.cc ../cppformat/format.cc ${TEST_MAIN_SRC})
|
||||||
target_include_directories(posix-mock-test PRIVATE ${PROJECT_SOURCE_DIR})
|
target_include_directories(posix-mock-test PRIVATE ${PROJECT_SOURCE_DIR})
|
||||||
|
@ -67,7 +67,7 @@ TEST(UtilTest, NArg) {
|
|||||||
int result;
|
int result;
|
||||||
|
|
||||||
#define MAKE_TEST(func) \
|
#define MAKE_TEST(func) \
|
||||||
void func(const char *format, const fmt::ArgList &args) { \
|
void func(const char *, const fmt::ArgList &args) { \
|
||||||
result = 0; \
|
result = 0; \
|
||||||
for (unsigned i = 0; args[i].type; ++i) \
|
for (unsigned i = 0; args[i].type; ++i) \
|
||||||
result += args[i].int_value; \
|
result += args[i].int_value; \
|
||||||
|
Loading…
Reference in New Issue
Block a user