Browse Source

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 18 years ago committed by Junio C Hamano
parent
commit
5bd3870c37
  1. 14
      t/t9100-git-svn-basic.sh

14
t/t9100-git-svn-basic.sh

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


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

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


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

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

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

Loading…
Cancel
Save