aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-01-07 20:56:57 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-01-07 22:12:09 +0200
commita1d2444e4aac7df1a7f5d36246f64ea0564d38a4 (patch)
tree3230f9aa162cfc5342f2b3705fcfb3b6ffb0b597
parenta8caf988c6bd0fb6678b4dedfcc5d7466b137858 (diff)
downloadmeson-a1d2444e4aac7df1a7f5d36246f64ea0564d38a4.zip
meson-a1d2444e4aac7df1a7f5d36246f64ea0564d38a4.tar.gz
meson-a1d2444e4aac7df1a7f5d36246f64ea0564d38a4.tar.bz2
One more symlink test skip.
-rw-r--r--test cases/common/227 fs module/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/227 fs module/meson.build b/test cases/common/227 fs module/meson.build
index 8795ee0..25778af 100644
--- a/test cases/common/227 fs module/meson.build
+++ b/test cases/common/227 fs module/meson.build
@@ -77,7 +77,7 @@ assert(fs.is_samepath(meson.source_root(), 'subdir/..'), 'is_samepath not detect
assert(not fs.is_samepath(f1, 'subdir/subdirfile.txt'), 'is_samepath known bad comparison')
assert(not fs.is_samepath('not-a-path', f2), 'is_samepath should not error if path(s) do not exist')
-if not is_windows and build_machine.system() != 'cygwin'
+if not is_windows and build_machine.system() != 'cygwin' and is_git_checkout
assert(fs.is_samepath('a_symlink', 'meson.build'), 'symlink is_samepath fail')
endif