Browse Source

fix rpc-tests.sh

`${testScripts[@]}` now does split up `testscript --agument` in two elements pushed to the array (`testscript` and `--agument`).
pull/4/head
Jonas Schnelli 9 years ago
committed by Jack Grigg
parent
commit
9bbc220641
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 2
      qa/pull-tester/rpc-tests.sh

2
qa/pull-tester/rpc-tests.sh

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

Loading…
Cancel
Save