summaryrefslogtreecommitdiffabout
path: root/tests/setup.sh
Unidiff
Diffstat (limited to 'tests/setup.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xtests/setup.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/setup.sh b/tests/setup.sh
index 9f66d89..b2f1169 100755
--- a/tests/setup.sh
+++ b/tests/setup.sh
@@ -17,16 +17,16 @@
17 17
18 18
19mkrepo() { 19mkrepo() {
20 name=$1 20 name=$1
21 count=$2 21 count=$2
22 dir=$PWD 22 dir=$PWD
23 test -d $name && return 23 test -d "$name" && return
24 printf "Creating testrepo %s\n" $name 24 printf "Creating testrepo %s\n" $name
25 mkdir -p $name 25 mkdir -p "$name"
26 cd $name 26 cd "$name"
27 git init 27 git init
28 n=1 28 n=1
29 while test $n -le $count 29 while test $n -le $count
30 do 30 do
31 echo $n >file-$n 31 echo $n >file-$n
32 git add file-$n 32 git add file-$n
@@ -47,12 +47,13 @@ setup_repos()
47{ 47{
48 rm -rf trash/cache 48 rm -rf trash/cache
49 mkdir -p trash/cache 49 mkdir -p trash/cache
50 mkrepo trash/repos/foo 5 >/dev/null 50 mkrepo trash/repos/foo 5 >/dev/null
51 mkrepo trash/repos/bar 50 >/dev/null 51 mkrepo trash/repos/bar 50 >/dev/null
52 mkrepo trash/repos/foo+bar 10 testplus >/dev/null 52 mkrepo trash/repos/foo+bar 10 testplus >/dev/null
53 mkrepo "trash/repos/with space" 2 >/dev/null
53 cat >trash/cgitrc <<EOF 54 cat >trash/cgitrc <<EOF
54virtual-root=/ 55virtual-root=/
55cache-root=$PWD/trash/cache 56cache-root=$PWD/trash/cache
56 57
57cache-size=1021 58cache-size=1021
58snapshots=tar.gz tar.bz zip 59snapshots=tar.gz tar.bz zip
@@ -72,12 +73,16 @@ repo.url=bar
72repo.path=$PWD/trash/repos/bar/.git 73repo.path=$PWD/trash/repos/bar/.git
73repo.desc=the bar repo 74repo.desc=the bar repo
74 75
75repo.url=foo+bar 76repo.url=foo+bar
76repo.path=$PWD/trash/repos/foo+bar/.git 77repo.path=$PWD/trash/repos/foo+bar/.git
77repo.desc=the foo+bar repo 78repo.desc=the foo+bar repo
79
80repo.url=with space
81repo.path=$PWD/trash/repos/with space/.git
82repo.desc=spaced repo
78EOF 83EOF
79} 84}
80 85
81prepare_tests() 86prepare_tests()
82{ 87{
83 setup_repos 88 setup_repos