summaryrefslogtreecommitdiff
path: root/t/t9120-git-svn-clone-with-percent-escapes.sh
blob: 5979e133b9d5b9d85ddca31a40763ed4fb6feba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#
# Copyright (c) 2008 Kevin Ballard
#
 
test_description='git-svn clone with percent escapes'
. ./lib-git-svn.sh
 
test_expect_success 'setup svnrepo' '
	mkdir project project/trunk project/branches project/tags &&
	echo foo > project/trunk/foo &&
	svn import -m "$test_description" project "$svnrepo/pr ject" &&
	rm -rf project &&
	start_httpd
'
 
if test "$SVN_HTTPD_PORT" = ""
then
	test_expect_failure 'test clone with percent escapes - needs SVN_HTTPD_PORT set' 'false'
else
	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 ..
	'
fi
 
stop_httpd
 
test_done