From 4520caa11e52999e40a208d4926952a28169a5f1 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Fri, 4 May 2018 20:38:03 +0100 Subject: 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 --- tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/run.sh') diff --git a/tests/run.sh b/tests/run.sh index f40c9f801..3db20dcd8 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 -- cgit v1.2.3-55-g7522