Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2019-10-09 19:51:59 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2019-10-09 19:51:59 +0300
commitc6ed09566e600d9fd54e871b7f407f80d2573062 (patch)
tree5fa05ca065cfd5eb9c9b6443d572a4736b2b4d0c /.ci.cmake
parent9740ba82970f959840c982372f3abf4a026a10fd (diff)
Add C++ 20 testing to CI for GCC, clang and MSVC.
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 1cfef639..61c91b76 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -13,15 +13,16 @@ set(CTEST_GIT_COMMAND "${GIT_EXECUTABLE}")
ctest_start("Experimental")
ctest_update()
ctest_configure(OPTIONS "${CTEST_CONFIGURE_OPTIONS}")
+ctest_build(TARGET _hl)
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
set(retval 0)
if(NOT CTEST_DISABLE_TESTING)
if(WIN32)
# Appveyor's Windows version doesn't permit unprivileged creation of symbolic links
- ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex|symlink")
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|symlink")
else()
- ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex")
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex")
endif()
endif()
if(WIN32)