tools: fix parameters to "tools/run-nm-test.sh" in mixed order

Fixes: 608b5f0515 ('tools: parse parameters to "tools/run-nm-test.sh" in mixed order')
This commit is contained in:
Thomas Haller 2021-01-22 11:48:09 +01:00
parent ad0819081d
commit 462668b0c3
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -148,10 +148,10 @@ else
;;
*)
if test -z "${TEST+x}"; then
TEST="$1";
shift
TEST="$1";
else
TEST_ARGV+=("$1")
fi
TEST_ARGV+=("$1")
shift
;;
esac