From e3df6f2a626498609ef79af041adff7cad72a34e Mon Sep 17 00:00:00 2001 From: "Niall Douglas (s [underscore] sourceforge {at} nedprod [dot] com)" Date: Wed, 15 Aug 2018 21:13:10 +0100 Subject: Fix status code edition failing to build. Disable symlink tests on Appveyor --- .ci.cmake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.ci.cmake') diff --git a/.ci.cmake b/.ci.cmake index 99a4acf5..2a2b0962 100644 --- a/.ci.cmake +++ b/.ci.cmake @@ -15,7 +15,12 @@ ctest_update() ctest_configure(OPTIONS ${CTEST_CONFIGURE_OPTIONS}) ctest_build(TARGET _dl) ctest_build(TARGET _sl) -ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex") +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") +else() + ctest_test(RETURN_VALUE retval EXCLUDE "llfio_hl|shared_fs_mutex") +endif() if(WIN32) if(EXISTS "prebuilt/bin/Release/llfio_dl-2.0-Windows-x64-Release.dll") checked_execute_process("Tarring up binaries 1" -- cgit v1.2.3