summary refs log tree commit diff
path: root/www/git.causal.agency/cgit/tests/setup.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-06-08 14:30:12 -0400
committerJune McEnroe <june@causal.agency>2021-06-08 14:34:33 -0400
commitd7bd11e9b326caad68b88ae5804b7b97c9282c16 (patch)
tree14b07a9e9865abc4c57513189e31af0afb6358fa /www/git.causal.agency/cgit/tests/setup.sh
parentFetch git .tar.gz for compatibility (diff)
parentSquashed 'www/git.causal.agency/cgit/' changes from 55fa25ad..5258c297 (diff)
downloadsrc-d7bd11e9b326caad68b88ae5804b7b97c9282c16.tar.gz
src-d7bd11e9b326caad68b88ae5804b7b97c9282c16.zip
Merge commit 'f46c4521d761a0b9909e17ef29065c0aa09c7ab7'
Diffstat (limited to 'www/git.causal.agency/cgit/tests/setup.sh')
-rwxr-xr-xwww/git.causal.agency/cgit/tests/setup.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/www/git.causal.agency/cgit/tests/setup.sh b/www/git.causal.agency/cgit/tests/setup.sh
index 9a85d3a2..31e7d5bb 100755
--- a/www/git.causal.agency/cgit/tests/setup.sh
+++ b/www/git.causal.agency/cgit/tests/setup.sh
@@ -74,13 +74,17 @@ mkrepo() {
 			git commit -m "commit $n"
 			n=$(expr $n + 1)
 		done
-		if test "$3" = "testplus"
-		then
+		case "$3" in
+		testplus)
 			echo "hello" >a+b
 			git add a+b
 			git commit -m "add a+b"
 			git branch "1+2"
-		fi
+			;;
+		commit-graph)
+			git commit-graph write
+			;;
+		esac
 	)
 }
 
@@ -89,7 +93,7 @@ setup_repos()
 	rm -rf cache
 	mkdir -p cache
 	mkrepo repos/foo 5 >/dev/null
-	mkrepo repos/bar 50 >/dev/null
+	mkrepo repos/bar 50 commit-graph >/dev/null
 	mkrepo repos/foo+bar 10 testplus >/dev/null
 	mkrepo "repos/with space" 2 >/dev/null
 	mkrepo repos/filter 5 testplus >/dev/null