From: Sami Kerola Date: Fri, 4 May 2018 19:38:03 +0000 (+0100) Subject: tests: move stderr redirection out from test expression X-Git-Tag: v2.33-rc1~241 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4520caa11e52999e40a208d4926952a28169a5f1;p=thirdparty%2Futil-linux.git tests: move stderr redirection out from test expression Fix shellcheck error. if ! [ "$paraller_jobs" -ge 0 2>/dev/null ]; then ^-- SC1009: The mentioned parser error was in this if expression. ^-- SC1073: Couldn't parse this test expression. ^-- SC1072: Expected test to end here (don't wrap commands in []/[[]]). Fix any mentioned problems and try again. Signed-off-by: Sami Kerola --- diff --git a/tests/run.sh b/tests/run.sh index f40c9f8014..3db20dcd89 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -82,7 +82,7 @@ while [ -n "$1" ]; do ;; --parallel=*) paraller_jobs="${1##--parallel=}" - if ! [ "$paraller_jobs" -ge 0 2>/dev/null ]; then + if ! [ "$paraller_jobs" -ge 0 ] 2>/dev/null; then echo "invalid argument '$paraller_jobs' for --parallel=" exit 1 fi