commit | 348905a28c13702d43e2c1820ecb072ffa60e43a | [log] [tgz] |
---|---|---|
author | Jussi Pakkanen <jpakkane@gmail.com> | Sat Aug 24 09:41:37 2024 +0300 |
committer | Jussi Pakkanen <jpakkane@gmail.com> | Sat Aug 24 09:43:51 2024 +0300 |
tree | eab09b8bd477e4abf954b377323e58c18b039fbf | |
parent | a3fe382d0158e1b29650fd8f38fb9f1314a12023 [diff] |
Skip symlink tests on Windows.
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',