@@ -23,6 +23,7 @@ _found_test() {
unset DESCRIPTION QUICK TIMED requires device_requires test test_device
+ # shellcheck disable=SC1090
if ! . "tests/${test_name}"; then
return 1
fi
@@ -392,6 +393,7 @@ _run_test() {
CHECK_DMESG=1
DMESG_FILTER=cat
+ # shellcheck disable=SC1090
. "tests/${TEST_NAME}"
if declare -fF test >/dev/null; then
@@ -432,6 +434,7 @@ _run_group() {
local tests=("$@")
local group="${tests[0]%/*}"
+ # shellcheck disable=SC1090
. "tests/${group}/group"
if declare -fF group_requires >/dev/null && ! group_requires; then
This causes shellcheck to stop complaining about these include statements. Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> --- check | 3 +++ 1 file changed, 3 insertions(+)