Compare commits

...

2 Commits

Author SHA1 Message Date
Angelio Mason f1d748e5e3
Remove the fileapi.h include in os-inl.h (#3444)
2 months ago
Vitaly 3edc8036db
Run tests in the order they are declared in the source file. (#3451)
2 months ago

@ -23,7 +23,6 @@
#ifdef _WIN32
#include <spdlog/details/windows_include.h>
#include <fileapi.h> // for FlushFileBuffers
#include <io.h> // for _get_osfhandle, _isatty, _fileno
#include <process.h> // for _get_pid

@ -75,7 +75,7 @@ function(spdlog_prepare_test test_target spdlog_lib)
elseif(SPDLOG_SANITIZE_THREAD)
spdlog_enable_thread_sanitizer(${test_target})
endif()
add_test(NAME ${test_target} COMMAND ${test_target})
add_test(NAME ${test_target} COMMAND ${test_target} --order decl)
set_tests_properties(${test_target} PROPERTIES RUN_SERIAL ON)
endfunction()

Loading…
Cancel
Save