Merge branch 'en/keep-cwd' into maint
[git/debian.git] / t / t9167-git-svn-cmd-branch-subproject.sh
blobd9fd111c1052a251b918ad7e66f30e52c2b4574c
1 #!/bin/sh
3 # Copyright (c) 2013 Tobias Schulte
6 test_description='git svn branch for subproject clones'
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./lib-git-svn.sh
11 test_expect_success 'initialize svnrepo' '
12 mkdir import &&
14 cd import &&
15 mkdir -p trunk/project branches tags &&
17 cd trunk/project &&
18 echo foo > foo
19 ) &&
20 svn_cmd import -m "import for git-svn" . "$svnrepo" >/dev/null
21 ) &&
22 rm -rf import &&
23 svn_cmd co "$svnrepo"/trunk/project trunk/project &&
25 cd trunk/project &&
26 echo bar >> foo &&
27 svn_cmd ci -m "updated trunk"
28 ) &&
29 rm -rf trunk
32 test_expect_success 'import into git' '
33 git svn init --trunk=trunk/project --branches=branches/*/project \
34 --tags=tags/*/project "$svnrepo" &&
35 git svn fetch &&
36 git checkout remotes/origin/trunk
39 test_expect_success 'git svn branch tests' '
40 test_must_fail git svn branch a &&
41 git svn branch --parents a &&
42 test_must_fail git svn branch -t tag1 &&
43 git svn branch --parents -t tag1 &&
44 test_must_fail git svn branch --tag tag2 &&
45 git svn branch --parents --tag tag2 &&
46 test_must_fail git svn tag tag3 &&
47 git svn tag --parents tag3
50 test_done