fix rpc-tests.sh

`${testScripts[@]}` now does split up `testscript --agument` in two elements pushed to the array (`testscript` and `--agument`).
This commit is contained in:
Jonas Schnelli 2015-09-17 15:45:14 +02:00 committed by Jack Grigg
parent edcec148a8
commit 9bbc220641
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ testScriptsExt=(
);
if [ "x$ENABLE_ZMQ" = "x1" ]; then
testScripts=( ${testScripts[@]} 'zmq_test.py' )
testScripts+=('zmq_test.py')
fi
extArg="-extended"