]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: move stderr redirection out from test expression
authorSami Kerola <kerolasa@iki.fi>
Fri, 4 May 2018 19:38:03 +0000 (20:38 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 28 May 2018 11:36:38 +0000 (13:36 +0200)
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 <kerolasa@iki.fi>
tests/run.sh

index f40c9f8014f98c090cd91c7e72a828fc374875d3..3db20dcd8949cf28dfb48ca3c9a58dd7592d0fa5 100755 (executable)
@@ -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