aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-08-24 09:41:37 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2024-08-24 09:43:51 +0300
commit348905a28c13702d43e2c1820ecb072ffa60e43a (patch)
treeeab09b8bd477e4abf954b377323e58c18b039fbf
parenta3fe382d0158e1b29650fd8f38fb9f1314a12023 (diff)
downloadmeson-fixwintests.zip
meson-fixwintests.tar.gz
meson-fixwintests.tar.bz2
Skip symlink tests on Windows.fixwintests
-rw-r--r--test cases/common/268 install functions and follow symlinks/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/common/268 install functions and follow symlinks/meson.build b/test cases/common/268 install functions and follow symlinks/meson.build
index 327c021..9158ea8 100644
--- a/test cases/common/268 install functions and follow symlinks/meson.build
+++ b/test cases/common/268 install functions and follow symlinks/meson.build
@@ -1,5 +1,9 @@
project('install_data following symlinks')
+if build_machine.system() == 'windows'
+ error('MESON_SKIP_TEST symlinks (typically) do not work on Windows.')
+endif
+
install_data(
'foo/link1',
install_dir: get_option('datadir') / 'followed',