Johannes Schindelin <johannes.schindelin@xxxxxx> writes: > From: Karsten Blees <blees@xxxxxxx> > > The SVN library does not seem to support symlinks, even if symlinks are > enabled in MSYS2 and Git. Use 'cp' instead of 'ln -s'. > > This partially fixes t/t9100-git-svn-basic.sh > > Signed-off-by: Karsten Blees <blees@xxxxxxx> > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > --- > t/t9100-git-svn-basic.sh | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) For the purpose of SVN test, is it important that foo.link is a link to foo? I am wondering what would be the fallout from making this change without "only on MINGW do this". On the other hand, perhaps such a change may make this particular test meaningless for whatever reason. Perhaps this test is about git-svn handling a symbolic link correctly, and you wouldn't be testing anything useful if you unconditionally changed "ln -s" to "cp" on all platforms. But if that is the case, I suspect that it would make more sense to mark the test to be skipped using the prerequiste, instead of pretending that this test passes. While the updated test may be testing that the same "works correctly on symbolic links" as before on all the other platforms, on MINGW, it is testing something completely different. I cannot quite tell if that is the case. > diff --git a/t/t9100-git-svn-basic.sh b/t/t9100-git-svn-basic.sh > index 258d9b8..dbb440b 100755 > --- a/t/t9100-git-svn-basic.sh > +++ b/t/t9100-git-svn-basic.sh > @@ -25,7 +25,14 @@ test_expect_success \ > ( > cd import && > echo foo >foo && > - ln -s foo foo.link > + 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 > mkdir -p dir/a/b/c/d/e && > echo "deep dir" >dir/a/b/c/d/e/file && > mkdir bar && -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html