tests: Skip lint tests if bash is not available

They all require bash.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2024-02-12 14:15:51 +00:00
parent 3a7dfb14c6
commit 81700d9aa6

View File

@ -8,14 +8,16 @@ lint_scripts = [
'shellcheck.sh',
]
foreach test_name : lint_scripts
test(
test_name, files(test_name),
env : common_test_env,
suite : 'lint',
protocol : 'tap',
)
endforeach
if have_bash
foreach test_name : lint_scripts
test(
test_name, files(test_name),
env : common_test_env,
suite : 'lint',
protocol : 'tap',
)
endforeach
endif
test(
'check-missing-install-tag.py',