git-svn: t/t9100-git-svn-basic: remove old check for NO_SYMLINK

We don't support the svn command-line client anymore; nor
do we support anything before SVN 1.1.0, so we can be certain
symlinks will be supported in the SVN repository.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Eric Wong 2006-12-31 21:49:46 -08:00 committed by Junio C Hamano
parent c6d499a82f
commit 5bd3870c37
1 changed files with 35 additions and 49 deletions

View File

@ -24,10 +24,7 @@ test_expect_success \
mkdir import && mkdir import &&
cd import && cd import &&
echo foo > foo && echo foo > foo &&
if test -z '$NO_SYMLINK'
then
ln -s foo foo.link ln -s foo foo.link
fi
mkdir -p dir/a/b/c/d/e && mkdir -p dir/a/b/c/d/e &&
echo 'deep dir' > dir/a/b/c/d/e/file && echo 'deep dir' > dir/a/b/c/d/e/file &&
mkdir bar && mkdir bar &&
@ -136,10 +133,7 @@ test_expect_success "$name" "
test -x '$SVN_TREE'/exec.sh" test -x '$SVN_TREE'/exec.sh"




if test -z "$NO_SYMLINK"
then
name='executable file becomes a symlink to bar/zzz (file)' name='executable file becomes a symlink to bar/zzz (file)'

test_expect_success "$name" " test_expect_success "$name" "
rm exec.sh && rm exec.sh &&
ln -s bar/zzz exec.sh && ln -s bar/zzz exec.sh &&
@ -176,8 +170,6 @@ then
test -f '$SVN_TREE'/exec-2.sh && test -f '$SVN_TREE'/exec-2.sh &&
test ! -L '$SVN_TREE'/exec-2.sh && test ! -L '$SVN_TREE'/exec-2.sh &&
diff -u help $SVN_TREE/exec-2.sh" diff -u help $SVN_TREE/exec-2.sh"
fi



if test "$have_utf8" = t if test "$have_utf8" = t
then then
@ -203,12 +195,6 @@ test_expect_success "$name" \
git-rev-list --pretty=raw remotes/alt | grep ^tree | uniq > b && git-rev-list --pretty=raw remotes/alt | grep ^tree | uniq > b &&
diff -u a b" diff -u a b"


if test -n "$NO_SYMLINK"
then
test_done
exit 0
fi

name='check imported tree checksums expected tree checksums' name='check imported tree checksums expected tree checksums'
rm -f expected rm -f expected
if test "$have_utf8" = t if test "$have_utf8" = t