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>2020-11-24 17:00:44 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-24 17:00:44 +0300
commit6c384945a87cc4f20ce6012e74f94936c7356201 (patch)
treed2aa185cdddd9762f0c9cbbae96dac0e980789b9 /.ci.cmake
parent63cfa5af86526937360189594852605d6384dddf (diff)
Disable one of the MSVC Experimental Filesystem emulations, because it is literally insanity on a plate.
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake8
1 files changed, 6 insertions, 2 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 73b50dc5..65ac1c56 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -20,8 +20,12 @@ 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 "shared_fs_mutex|symlink")
+ # Azure's Windows version doesn't permit unprivileged creation of symbolic links
+ if(CMAKE_GENERATOR MATCHES "Visual Studio 15 2017 Win64")
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|symlink|process")
+ else()
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|symlink")
+ endif()
elseif("$ENV{CXX}" MATCHES "clang")
# clang 10 with libc++ in C++ 20 currently segfaults
ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|llfio_hl--coroutines")