From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa5.hgst.iphmx.com ([216.71.153.144]:31673 "EHLO esa5.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757248AbeFSUYJ (ORCPT ); Tue, 19 Jun 2018 16:24:09 -0400 From: Bart Van Assche To: Omar Sandoval Cc: linux-block@vger.kernel.org, Bart Van Assche Subject: [PATCH 5/9] check: Avoid that shellcheck complains that $FULL appears unused Date: Tue, 19 Jun 2018 13:23:49 -0700 Message-Id: <20180619202353.23631-6-bart.vanassche@wdc.com> In-Reply-To: <20180619202353.23631-1-bart.vanassche@wdc.com> References: <20180619202353.23631-1-bart.vanassche@wdc.com> Sender: linux-block-owner@vger.kernel.org List-Id: linux-block@vger.kernel.org $FULL is a global variable. Avoid that shellcheck complains about it. Signed-off-by: Bart Van Assche --- 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