mirror of
https://git.zx2c4.com/cgit
synced 2025-08-05 10:34:28 +02:00
tests: only do lua tests if lua is compiled-in
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
6a1563343c
commit
f759cc0f08
2 changed files with 17 additions and 2 deletions
|
@ -3,7 +3,12 @@
|
|||
test_description='Check filtered content'
|
||||
. ./setup.sh
|
||||
|
||||
for prefix in exec lua
|
||||
prefixes="exec"
|
||||
if [ $CGIT_HAS_LUA -eq 1 ]; then
|
||||
prefixes="$prefixes lua"
|
||||
fi
|
||||
|
||||
for prefix in $prefixes
|
||||
do
|
||||
test_expect_success "generate filter-$prefix/tree/a%2bb" "
|
||||
cgit_url 'filter-$prefix/tree/a%2bb' >tmp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue