X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/1b1974c45e5e23e5527aa43c4d9ece423a13dfdc..refs/heads/main:/tests/setup.sh diff --git a/tests/setup.sh b/tests/setup.sh index 5476ced..8db810f 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -58,6 +58,14 @@ else PATH="$(pwd)/../..:$PATH" fi +FILTER_DIRECTORY=$(cd ../filters && pwd) + +if cgit --version | grep -F -q "[+] Lua scripting"; then + export CGIT_HAS_LUA=1 +else + export CGIT_HAS_LUA=0 +fi + mkrepo() { name=$1 count=$2 @@ -72,13 +80,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 ) } @@ -87,21 +99,23 @@ 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 cat >cgitrc <>cgitrc <