mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 18:57:34 +02:00
Rearrange tests to simplify inclusion in other projects.
This commit is contained in:
@ -70,11 +70,13 @@ if (CPP11_FLAG AND FMT_EXTRA_TESTS)
|
|||||||
set_target_properties(format PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
set_target_properties(format PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
||||||
# Test compilation with default flags.
|
# Test compilation with default flags.
|
||||||
file(GLOB src RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} test/*.cc test/*.h)
|
file(GLOB src RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} test/*.cc test/*.h)
|
||||||
add_library(testformat ${FMT_SOURCES} ${src})
|
add_library(testformat ${FMT_SOURCE_FILES} ${src})
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
add_subdirectory(doc)
|
add_subdirectory(doc)
|
||||||
|
|
||||||
|
include_directories(.)
|
||||||
|
|
||||||
# We compile Google Test ourselves instead of using pre-compiled libraries.
|
# We compile Google Test ourselves instead of using pre-compiled libraries.
|
||||||
# See the Google Test FAQ "Why is it not recommended to install a
|
# See the Google Test FAQ "Why is it not recommended to install a
|
||||||
# pre-compiled copy of Google Test (for example, into /usr/local)?"
|
# pre-compiled copy of Google Test (for example, into /usr/local)?"
|
||||||
@ -94,55 +96,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
add_subdirectory(test)
|
||||||
include_directories(.)
|
|
||||||
|
|
||||||
set(TEST_MAIN_SRC
|
|
||||||
test/test-main.cc test/gtest-extra.cc test/gtest-extra.h test/util.cc)
|
|
||||||
add_library(test-main ${TEST_MAIN_SRC})
|
|
||||||
target_link_libraries(test-main gtest format)
|
|
||||||
|
|
||||||
# Adds a test.
|
|
||||||
# Usage: add_fmt_test(name libs srcs...)
|
|
||||||
function(add_fmt_test name libs)
|
|
||||||
add_executable(${name} test/${name}.cc ${ARGN})
|
|
||||||
target_link_libraries(${name} ${libs})
|
|
||||||
add_test(${name} ${name})
|
|
||||||
endfunction()
|
|
||||||
|
|
||||||
add_fmt_test(gtest-extra-test test-main)
|
|
||||||
add_fmt_test(format-test test-main)
|
|
||||||
add_fmt_test(printf-test test-main)
|
|
||||||
foreach (target format-test printf-test)
|
|
||||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
||||||
set_target_properties(${target} PROPERTIES COMPILE_FLAGS
|
|
||||||
"-Wall -Wextra -pedantic -Wno-long-long -Wno-variadic-macros")
|
|
||||||
endif ()
|
|
||||||
if (CPP11_FLAG)
|
|
||||||
set_target_properties(${target} PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
|
||||||
endif ()
|
|
||||||
endforeach ()
|
|
||||||
add_fmt_test(util-test test-main)
|
|
||||||
|
|
||||||
add_executable(macro-test test/macro-test.cc ${FMT_SOURCES} ${TEST_MAIN_SRC})
|
|
||||||
set_target_properties(macro-test
|
|
||||||
PROPERTIES COMPILE_DEFINITIONS "FMT_USE_VARIADIC_TEMPLATES=0")
|
|
||||||
target_link_libraries(macro-test gtest)
|
|
||||||
|
|
||||||
if (HAVE_OPEN)
|
|
||||||
add_executable(posix-test test/posix-test.cc ${FMT_SOURCES} ${TEST_MAIN_SRC})
|
|
||||||
set_target_properties(posix-test
|
|
||||||
PROPERTIES COMPILE_DEFINITIONS "FMT_INCLUDE_POSIX_TEST=1")
|
|
||||||
target_link_libraries(posix-test gtest)
|
|
||||||
add_test(posix-test posix-test)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
add_test(compile-test ${CMAKE_CTEST_COMMAND}
|
|
||||||
--build-and-test
|
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/test"
|
|
||||||
"${CMAKE_CURRENT_BINARY_DIR}/test"
|
|
||||||
--build-generator ${CMAKE_GENERATOR}
|
|
||||||
--build-makeprogram ${CMAKE_MAKE_PROGRAM})
|
|
||||||
|
|
||||||
if (EXISTS .gitignore)
|
if (EXISTS .gitignore)
|
||||||
# Get the list of ignored files from .gitignore.
|
# Get the list of ignored files from .gitignore.
|
||||||
|
@ -1,46 +1,48 @@
|
|||||||
# Test if compile errors are produced where necessary.
|
include_directories(..)
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 2.8)
|
set(TEST_MAIN_SRC
|
||||||
|
test/test-main.cc test/gtest-extra.cc test/gtest-extra.h test/util.cc)
|
||||||
|
add_library(test-main ${TEST_MAIN_SRC})
|
||||||
|
target_link_libraries(test-main gtest format)
|
||||||
|
|
||||||
include(CheckCXXSourceCompiles)
|
# Adds a test.
|
||||||
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/..)
|
# Usage: add_fmt_test(name libs srcs...)
|
||||||
|
function(add_fmt_test name libs)
|
||||||
function (expect_compile_error code)
|
add_executable(${name} test/${name}.cc ${ARGN})
|
||||||
check_cxx_source_compiles("
|
target_link_libraries(${name} ${libs})
|
||||||
#include \"format.cc\"
|
add_test(${name} ${name})
|
||||||
int main() {
|
|
||||||
${code}
|
|
||||||
}
|
|
||||||
" compiles)
|
|
||||||
set (does_compile ${compiles})
|
|
||||||
# Unset the CMake cache variable compiles. Otherwise the compile test will
|
|
||||||
# just use cached information next time it runs.
|
|
||||||
unset(compiles CACHE)
|
|
||||||
if (does_compile)
|
|
||||||
message(FATAL_ERROR "No compile error for: ${code}")
|
|
||||||
endif ()
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# Array is noncopyable.
|
add_fmt_test(gtest-extra-test test-main)
|
||||||
expect_compile_error("fmt::internal::Array<char, 5> a, b(a);")
|
add_fmt_test(format-test test-main)
|
||||||
expect_compile_error("fmt::internal::Array<char, 5> a, b; b = a;")
|
add_fmt_test(printf-test test-main)
|
||||||
|
foreach (target format-test printf-test)
|
||||||
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||||
|
set_target_properties(${target} PROPERTIES COMPILE_FLAGS
|
||||||
|
"-Wall -Wextra -pedantic -Wno-long-long -Wno-variadic-macros")
|
||||||
|
endif ()
|
||||||
|
if (CPP11_FLAG)
|
||||||
|
set_target_properties(${target} PROPERTIES COMPILE_FLAGS ${CPP11_FLAG})
|
||||||
|
endif ()
|
||||||
|
endforeach ()
|
||||||
|
add_fmt_test(util-test test-main)
|
||||||
|
|
||||||
# Writer is noncopyable.
|
add_executable(macro-test test/macro-test.cc ${FMT_SOURCES} ${TEST_MAIN_SRC})
|
||||||
expect_compile_error("const fmt::Writer a, b(a);")
|
set_target_properties(macro-test
|
||||||
expect_compile_error("fmt::Writer a, b; b = a;")
|
PROPERTIES COMPILE_DEFINITIONS "FMT_USE_VARIADIC_TEMPLATES=0")
|
||||||
|
target_link_libraries(macro-test gtest)
|
||||||
|
|
||||||
# MakeArg doesn't accept [const] volatile char *.
|
if (HAVE_OPEN)
|
||||||
expect_compile_error("volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
|
add_executable(posix-test test/posix-test.cc ${FMT_SOURCES} ${TEST_MAIN_SRC})
|
||||||
expect_compile_error("const volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
|
set_target_properties(posix-test
|
||||||
|
PROPERTIES COMPILE_DEFINITIONS "FMT_INCLUDE_POSIX_TEST=1")
|
||||||
|
target_link_libraries(posix-test gtest)
|
||||||
|
add_test(posix-test posix-test)
|
||||||
|
endif ()
|
||||||
|
|
||||||
# MakeArg<char> doesn't accept wchar_t.
|
add_test(compile-test ${CMAKE_CTEST_COMMAND}
|
||||||
expect_compile_error("fmt::internal::MakeArg<char>(L'a');")
|
--build-and-test
|
||||||
expect_compile_error("fmt::internal::MakeArg<char>(L\"test\");")
|
"${CMAKE_CURRENT_SOURCE_DIR}/test"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/test"
|
||||||
# Writing a wide character to a character stream Writer is forbidden.
|
--build-generator ${CMAKE_GENERATOR}
|
||||||
expect_compile_error("fmt::Writer() << L'a';")
|
--build-makeprogram ${CMAKE_MAKE_PROGRAM})
|
||||||
expect_compile_error("fmt::Writer() << fmt::pad(\"abc\", 5, L' ');")
|
|
||||||
expect_compile_error("fmt::Writer() << fmt::pad(42, 5, L' ');")
|
|
||||||
|
|
||||||
# Formatting a wide character with a narrow format string is forbidden.
|
|
||||||
expect_compile_error("fmt::format(\"{}\", L'a';")
|
|
||||||
|
46
test/compile-test/CMakeLists.txt
Normal file
46
test/compile-test/CMakeLists.txt
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# Test if compile errors are produced where necessary.
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
|
||||||
|
include(CheckCXXSourceCompiles)
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/../..)
|
||||||
|
|
||||||
|
function (expect_compile_error code)
|
||||||
|
check_cxx_source_compiles("
|
||||||
|
#include \"format.cc\"
|
||||||
|
int main() {
|
||||||
|
${code}
|
||||||
|
}
|
||||||
|
" compiles)
|
||||||
|
set (does_compile ${compiles})
|
||||||
|
# Unset the CMake cache variable compiles. Otherwise the compile test will
|
||||||
|
# just use cached information next time it runs.
|
||||||
|
unset(compiles CACHE)
|
||||||
|
if (does_compile)
|
||||||
|
message(FATAL_ERROR "No compile error for: ${code}")
|
||||||
|
endif ()
|
||||||
|
endfunction ()
|
||||||
|
|
||||||
|
# Array is noncopyable.
|
||||||
|
expect_compile_error("fmt::internal::Array<char, 5> a, b(a);")
|
||||||
|
expect_compile_error("fmt::internal::Array<char, 5> a, b; b = a;")
|
||||||
|
|
||||||
|
# Writer is noncopyable.
|
||||||
|
expect_compile_error("const fmt::Writer a, b(a);")
|
||||||
|
expect_compile_error("fmt::Writer a, b; b = a;")
|
||||||
|
|
||||||
|
# MakeArg doesn't accept [const] volatile char *.
|
||||||
|
expect_compile_error("volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
|
||||||
|
expect_compile_error("const volatile char s[] = \"test\"; (fmt::internal::MakeArg<char>)(s);")
|
||||||
|
|
||||||
|
# MakeArg<char> doesn't accept wchar_t.
|
||||||
|
expect_compile_error("fmt::internal::MakeArg<char>(L'a');")
|
||||||
|
expect_compile_error("fmt::internal::MakeArg<char>(L\"test\");")
|
||||||
|
|
||||||
|
# Writing a wide character to a character stream Writer is forbidden.
|
||||||
|
expect_compile_error("fmt::Writer() << L'a';")
|
||||||
|
expect_compile_error("fmt::Writer() << fmt::pad(\"abc\", 5, L' ');")
|
||||||
|
expect_compile_error("fmt::Writer() << fmt::pad(42, 5, L' ');")
|
||||||
|
|
||||||
|
# Formatting a wide character with a narrow format string is forbidden.
|
||||||
|
expect_compile_error("fmt::format(\"{}\", L'a';")
|
Reference in New Issue
Block a user