2008-03-20 21:08:49 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 Kevin Ballard
|
|
|
|
#
|
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn clone with percent escapes'
|
2008-03-20 21:08:49 +01:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'setup svnrepo' '
|
2008-03-20 21:08:49 +01:00
|
|
|
mkdir project project/trunk project/branches project/tags &&
|
|
|
|
echo foo > project/trunk/foo &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd import -m "$test_description" project "$svnrepo/pr ject" &&
|
2008-03-20 21:08:49 +01:00
|
|
|
rm -rf project &&
|
|
|
|
start_httpd
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2008-03-20 21:08:49 +01:00
|
|
|
|
2009-05-26 08:15:47 +02:00
|
|
|
test_expect_success 'test clone with percent escapes' '
|
|
|
|
git svn clone "$svnrepo/pr%20ject" clone &&
|
|
|
|
cd clone &&
|
|
|
|
git rev-parse refs/${remotes_git_svn} &&
|
|
|
|
cd ..
|
|
|
|
'
|
2008-03-20 21:08:49 +01:00
|
|
|
|
|
|
|
stop_httpd
|
|
|
|
|
|
|
|
test_done
|