From: Arturo Borrero Date: Sat, 11 Jun 2016 10:19:17 +0000 (+0200) Subject: tests: shell: delete unused variable in run-tests.sh X-Git-Tag: v0.7~158 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f42e5100d2fa470c20fc2a0c87a0fcf3dae54661;p=thirdparty%2Fnftables.git tests: shell: delete unused variable in run-tests.sh This ${TESTS_OUTPUT} variable is empty. Delete it. It was probably an idea about dinamically redirecting testscases output. Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- diff --git a/tests/shell/run-tests.sh b/tests/shell/run-tests.sh index 921080fe..b10445d2 100755 --- a/tests/shell/run-tests.sh +++ b/tests/shell/run-tests.sh @@ -76,7 +76,7 @@ do rc_spec=$(awk -F${RETURNCODE_SEPARATOR} '{print $NF}' <<< $testfile) msg_info "[EXECUTING] $testfile" - test_output=$(NFT=$NFT ${testfile} ${TESTS_OUTPUT} 2>&1) + test_output=$(NFT=$NFT ${testfile} 2>&1) rc_got=$? echo -en "\033[1A\033[K" # clean the [EXECUTING] foobar line