Marcus Griep | 570d35c | 2008-08-08 01:41:57 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright (c) 2008 Marcus Griep |
| 3 | |
Nanako Shiraishi | 1364ff2 | 2008-09-08 19:02:08 +0900 | [diff] [blame] | 4 | test_description='git svn multi-glob branch names' |
Marcus Griep | 570d35c | 2008-08-08 01:41:57 -0700 | [diff] [blame] | 5 | . ./lib-git-svn.sh |
| 6 | |
| 7 | test_expect_success 'setup svnrepo' ' |
| 8 | mkdir project project/trunk project/branches \ |
| 9 | project/branches/v14.1 project/tags && |
| 10 | echo foo > project/trunk/foo && |
| 11 | svn import -m "$test_description" project "$svnrepo/project" && |
| 12 | rm -rf project && |
| 13 | svn cp -m "fun" "$svnrepo/project/trunk" \ |
| 14 | "$svnrepo/project/branches/v14.1/beta" && |
| 15 | svn cp -m "more fun!" "$svnrepo/project/branches/v14.1/beta" \ |
| 16 | "$svnrepo/project/branches/v14.1/gold" |
| 17 | ' |
| 18 | |
| 19 | test_expect_success 'test clone with multi-glob in branch names' ' |
| 20 | git svn clone -T trunk -b branches/*/* -t tags \ |
| 21 | "$svnrepo/project" project && |
| 22 | cd project && |
| 23 | git rev-parse "refs/remotes/v14.1/beta" && |
| 24 | git rev-parse "refs/remotes/v14.1/gold" && |
| 25 | cd .. |
| 26 | ' |
| 27 | |
| 28 | test_expect_success 'test dcommit to multi-globbed branch' " |
| 29 | cd project && |
| 30 | git reset --hard 'refs/remotes/v14.1/gold' && |
| 31 | echo hello >> foo && |
| 32 | git commit -m 'hello' -- foo && |
| 33 | git svn dcommit && |
| 34 | cd .. |
| 35 | " |
| 36 | |
| 37 | test_done |