Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-06-24 04:52:02 +0400
committerJunio C Hamano <gitster@pobox.com>2008-06-24 04:52:02 +0400
commit6b516d984bc72b359a14eeddfddca578cef52297 (patch)
treeca63e5f4932f1a5cefcdae27d829f3dc0ff5a383 /t
parentf2ab7f82b7bd8f0147f656e7d279236d1bd68921 (diff)
parent74b1e1235781bbe5c90b802c1551446a5f5d69f1 (diff)
Merge branch 'maint'
* maint: git-svn: make rebuild respect rewriteRoot option Workaround for AIX mkstemp()
Diffstat (limited to 't')
-rwxr-xr-xt/t9123-git-svn-rebuild-with-rewriteroot.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/t/t9123-git-svn-rebuild-with-rewriteroot.sh b/t/t9123-git-svn-rebuild-with-rewriteroot.sh
new file mode 100755
index 0000000000..c18878fad1
--- /dev/null
+++ b/t/t9123-git-svn-rebuild-with-rewriteroot.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# Copyright (c) 2008 Jan Krüger
+#
+
+test_description='git-svn respects rewriteRoot during rebuild'
+
+. ./lib-git-svn.sh
+
+mkdir import
+cd import
+ touch foo
+ svn import -m 'import for git-svn' . "$svnrepo" >/dev/null
+cd ..
+rm -rf import
+
+test_expect_success 'init, fetch and checkout repository' '
+ git svn init --rewrite-root=http://invalid.invalid/ "$svnrepo" &&
+ git svn fetch
+ git checkout -b mybranch remotes/git-svn
+ '
+
+test_expect_success 'remove rev_map' '
+ rm "$GIT_SVN_DIR"/.rev_map.*
+ '
+
+test_expect_success 'rebuild rev_map' '
+ git svn rebase >/dev/null
+ '
+
+test_done
+