aboutsummaryrefslogtreecommitdiff
path: root/tests/setup.sh
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'tests/setup.sh')
-rwxr-xr-xtests/setup.sh12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/setup.sh b/tests/setup.sh
index 8db810f..5879348 100755
--- a/tests/setup.sh
+++ b/tests/setup.sh
@@ -80,17 +80,13 @@ mkrepo() {
git commit -m "commit $n"
n=$(expr $n + 1)
done
- case "$3" in
- testplus)
+ if test "$3" = "testplus"
+ then
echo "hello" >a+b
git add a+b
git commit -m "add a+b"
git branch "1+2"
- ;;
- commit-graph)
- git commit-graph write
- ;;
- esac
+ fi
)
}
@@ -99,7 +95,7 @@ setup_repos()
rm -rf cache
mkdir -p cache
mkrepo repos/foo 5 >/dev/null
- mkrepo repos/bar 50 commit-graph >/dev/null
+ mkrepo repos/bar 50 >/dev/null
mkrepo repos/foo+bar 10 testplus >/dev/null
mkrepo "repos/with space" 2 >/dev/null
mkrepo repos/filter 5 testplus >/dev/null