2008-08-08 10:41:57 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (c) 2008 Marcus Griep
|
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn multi-glob branch names'
|
2008-08-08 10:41:57 +02:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup svnrepo' '
|
|
|
|
mkdir project project/trunk project/branches \
|
|
|
|
project/branches/v14.1 project/tags &&
|
|
|
|
echo foo > project/trunk/foo &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd import -m "$test_description" project "$svnrepo/project" &&
|
2008-08-08 10:41:57 +02:00
|
|
|
rm -rf project &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd cp -m "fun" "$svnrepo/project/trunk" \
|
2008-08-08 10:41:57 +02:00
|
|
|
"$svnrepo/project/branches/v14.1/beta" &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd cp -m "more fun!" "$svnrepo/project/branches/v14.1/beta" \
|
2008-08-08 10:41:57 +02:00
|
|
|
"$svnrepo/project/branches/v14.1/gold"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'test clone with multi-glob in branch names' '
|
|
|
|
git svn clone -T trunk -b branches/*/* -t tags \
|
|
|
|
"$svnrepo/project" project &&
|
2010-09-06 20:39:54 +02:00
|
|
|
(cd project &&
|
2008-08-08 10:41:57 +02:00
|
|
|
git rev-parse "refs/remotes/v14.1/beta" &&
|
2010-09-06 20:39:54 +02:00
|
|
|
git rev-parse "refs/remotes/v14.1/gold"
|
|
|
|
)
|
2008-08-08 10:41:57 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'test dcommit to multi-globbed branch' "
|
2010-09-06 20:39:54 +02:00
|
|
|
(cd project &&
|
2008-08-08 10:41:57 +02:00
|
|
|
git reset --hard 'refs/remotes/v14.1/gold' &&
|
|
|
|
echo hello >> foo &&
|
|
|
|
git commit -m 'hello' -- foo &&
|
2010-09-06 20:39:54 +02:00
|
|
|
git svn dcommit
|
|
|
|
)
|
2008-08-08 10:41:57 +02:00
|
|
|
"
|
|
|
|
|
|
|
|
test_done
|