$FULL is a global variable. Avoid that shellcheck complains about it.
Signed-off-by: Bart Van Assche <[email protected]>
---
check | 2 ++
1 file changed, 2 insertions(+)
diff --git a/check b/check
index 5f53fa105f72..f1feb96b293e 100755
--- a/check
+++ b/check
@@ -301,6 +301,8 @@ _call_test() {
local test_func="$1"
local seqres="${RESULTS_DIR}/${TEST_NAME}"
FULL="${seqres}.full"
+ # Avoid that shellcheck complains that $FULL appears unused.
+ echo "$FULL" >/dev/null
declare -A TEST_DEV_QUEUE_SAVED
_read_last_test_run
--
2.17.1