Newer
Older
# Copyright © 2018-2023 Collabora Ltd
if ! command -v shellcheck >/dev/null 2>&1; then
echo "1..0 # SKIP shellcheck not available"
exit 0
fi
G_TEST_SRCDIR="${me%/*}"
cd "$G_TEST_SRCDIR/.."
echo "TAP version 13"
./pressure-vessel/pressure-vessel-locale-gen \
./pressure-vessel/pressure-vessel-unruntime \
./subprojects/container-runtime/common/_v2-entry-point \
./subprojects/container-runtime/debian/tests/depot \
./subprojects/container-runtime/runtimes/scout-on-soldier/_v2-entry-point \
./subprojects/container-runtime/runtimes/scout-on-soldier/scout-on-soldier-entry-point-v2 \
./subprojects/container-runtime/tests/*.sh \
# Ignore SC2039,SC3043: we assume a Debian-style shell that has 'local'.
if shellcheck --exclude=SC2039,SC3043 "$shell_script" >&2; then
elif [ -n "${LINT_WARNINGS_ARE_ERRORS-}" ]; then
echo "not ok $n - $shell_script"
echo "not ok $n # TO""DO - $shell_script"
fi
done
echo "1..$n"
# vim:set sw=4 sts=4 et ft=sh: