aboutsummaryrefslogtreecommitdiff
path: root/qa/pull-tester
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-09-17 15:45:14 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-09-17 15:45:14 +0200
commit312cfe63a347b40f913018c852b1182a8e576428 (patch)
treea25b773831c78bd24d78193c6216e670b979f60c /qa/pull-tester
parent0143a1f228c3447ae2e025c697b0ad53a0d8d306 (diff)
downloadbitcoin-312cfe63a347b40f913018c852b1182a8e576428.tar.xz
fix rpc-tests.sh
`${testScripts[@]}` now does split up `testscript --agument` in two elements pushed to the array (`testscript` and `--agument`).
Diffstat (limited to 'qa/pull-tester')
-rwxr-xr-xqa/pull-tester/rpc-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh
index c6181c48ca..2f2b9d86db 100755
--- a/qa/pull-tester/rpc-tests.sh
+++ b/qa/pull-tester/rpc-tests.sh
@@ -60,7 +60,7 @@ testScriptsExt=(
);
if [ "x$ENABLE_ZMQ" = "x1" ]; then
- testScripts=( ${testScripts[@]} 'zmq_test.py' )
+ testScripts+=('zmq_test.py')
fi
extArg="-extended"