From 28368e74745757e5ce35f30b29b0e902cf0a0420 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 26 Jan 2016 17:03:10 +0100 Subject: [PATCH] fixup! t9100: don't use symlinks with SVN on MINGW Turns out that this patch is not needed at all (this came up when contributing the third batch of Windows-specific patches to upstream). Signed-off-by: Johannes Schindelin --- t/t9100-git-svn-basic.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/t/t9100-git-svn-basic.sh b/t/t9100-git-svn-basic.sh index f64189ecab..00e92241d1 100755 --- a/t/t9100-git-svn-basic.sh +++ b/t/t9100-git-svn-basic.sh @@ -25,14 +25,7 @@ test_expect_success \ ( cd import && echo foo >foo && - if test_have_prereq !MINGW - then - ln -s foo foo.link - else - # MSYS libsvn does not support symlinks, so always use cp, even if - # ln -s actually works - cp foo foo.link - fi + ln -s foo foo.link mkdir -p dir/a/b/c/d/e && echo "deep dir" >dir/a/b/c/d/e/file && mkdir bar &&