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 <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2016-01-26 17:03:10 +01:00
parent 57aa24a183
commit 28368e7474

View File

@@ -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 &&