summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 27a1a80)
raw | patch | inline | side by side (parent: 27a1a80)
author | Eric Wong <normalperson@yhbt.net> | |
Tue, 28 Nov 2006 05:46:50 +0000 (21:46 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 28 Nov 2006 06:23:06 +0000 (22:23 -0800) |
* Enable test for delta transfers in full-svn-test.
* Run tests against the root of the repository so we won't have
to revisit 308906fa6e98132cab839a4f42701386fba368ef and
efe4631def181d32f932672a7ea31e52ee0ab308 again.
The graft-branches test still runs as before.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
* Run tests against the root of the repository so we won't have
to revisit 308906fa6e98132cab839a4f42701386fba368ef and
efe4631def181d32f932672a7ea31e52ee0ab308 again.
The graft-branches test still runs as before.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/Makefile | patch | blob | history | |
t/lib-git-svn.sh | patch | blob | history | |
t/t9100-git-svn-basic.sh | patch | blob | history | |
t/t9103-git-svn-graft-branches.sh | patch | blob | history |
diff --git a/t/Makefile b/t/Makefile
index e1c6c92d9c0fb552081a65cd99d5b50bd65b5a09..c9bd9a46905a1709668f6d37790cb2457940ac12 100644 (file)
--- a/t/Makefile
+++ b/t/Makefile
# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
full-svn-test:
+ $(MAKE) $(TSVN) GIT_SVN_NO_LIB=0 GIT_SVN_DELTA_FETCH=1 \
+ GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
$(MAKE) $(TSVN) GIT_SVN_NO_LIB=1 GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
- $(MAKE) $(TSVN) GIT_SVN_NO_LIB=0 GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
$(MAKE) $(TSVN) GIT_SVN_NO_LIB=1 GIT_SVN_NO_OPTIMIZE_COMMITS=0 \
LC_ALL=en_US.UTF-8
$(MAKE) $(TSVN) GIT_SVN_NO_LIB=0 GIT_SVN_NO_OPTIMIZE_COMMITS=0 \
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh
index 29a1e72c61eb6e67a70c12361dada49fd77fad49..63c670304f0241d93c8a1661080735ca4a14258a 100644 (file)
--- a/t/lib-git-svn.sh
+++ b/t/lib-git-svn.sh
svnadmin create "$svnrepo"
fi
-svnrepo="file://$svnrepo/test-git-svn"
+svnrepo="file://$svnrepo"
index 34a3ccd31cee8e82fd8a9867637cf610efae3e4c..f9de2323669ac0db21be10a6699b00810565393c 100755 (executable)
--- a/t/t9100-git-svn-basic.sh
+++ b/t/t9100-git-svn-basic.sh
tree d667270a1f7b109f5eb3aaea21ede14b56bfdd6e
tree 8f51f74cf0163afc9ad68a4b1537288c4558b5a4
EOF
+
+if test -z "$GIT_SVN_NO_LIB" || test "$GIT_SVN_NO_LIB" -eq 0; then
+ echo tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904 >> expected
+fi
+
test_expect_success "$name" "diff -u a expected"
test_done
index cc62d4ece888a3be5c237a00c35699ab152cbdf5..293b98f92850375aa3223b6af85461a22cd151ea 100755 (executable)
test_description='git-svn graft-branches'
. ./lib-git-svn.sh
+svnrepo="$svnrepo/test-git-svn"
+
test_expect_success 'initialize repo' "
mkdir import &&
cd import &&