Skip to content

Commit

Permalink
Skip the scan-test if strptime isn't defined (#3184)
Browse files Browse the repository at this point in the history
cygwin and embedded systems. By default newlib doesn't provide strptime
in time.h because it was added in a later X/Open versions. Issue: #3178
  • Loading branch information
thesmurph committed Nov 16, 2022
1 parent 7df30f9 commit c798054
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
add_subdirectory(gtest)

include(CheckSymbolExists)

set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
add_library(test-main STATIC ${TEST_MAIN_SRC})
target_include_directories(test-main PUBLIC
Expand Down Expand Up @@ -75,7 +77,14 @@ if (MSVC)
endif()
add_fmt_test(printf-test)
add_fmt_test(ranges-test ranges-odr-test.cc)
add_fmt_test(scan-test)

check_symbol_exists(strptime "time.h" HAVE_STRPTIME)
if (HAVE_STRPTIME)
add_fmt_test(scan-test)
else()
message(WARNING "Skipping scan-test due to missing strptime dependency.")
endif ()

add_fmt_test(std-test)
try_compile(compile_result_unused
${CMAKE_CURRENT_BINARY_DIR}
Expand Down

0 comments on commit c798054

Please sign in to comment.