aboutsummaryrefslogtreecommitdiff
path: root/qa/pull-tester/rpc-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qa/pull-tester/rpc-tests.sh')
-rwxr-xr-xqa/pull-tester/rpc-tests.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh
index 72a282bc00..2e8a7c69ce 100755
--- a/qa/pull-tester/rpc-tests.sh
+++ b/qa/pull-tester/rpc-tests.sh
@@ -5,8 +5,8 @@ CURDIR=$(cd $(dirname "$0"); pwd)
# Get BUILDDIR and REAL_BITCOIND
. "${CURDIR}/tests-config.sh"
-export BITCOINCLI=${BUILDDIR}/qa/pull-tester/run-bitcoin-cli
export BITCOIND=${REAL_BITCOIND}
+export BITCOINCLI=${REAL_BITCOINCLI}
if [ "x${EXEEXT}" = "x.exe" ]; then
echo "Win tests currently disabled"
@@ -36,6 +36,7 @@ testScripts=(
'nodehandling.py'
'reindex.py'
'decodescript.py'
+ 'p2p-fullblocktest.py'
);
testScriptsExt=(
'bipdersig-p2p.py'
@@ -56,8 +57,13 @@ testScriptsExt=(
'invalidblockrequest.py'
# 'forknotify.py'
'p2p-acceptblock.py'
+ 'mempool_packages.py'
);
+#if [ "x$ENABLE_ZMQ" = "x1" ]; then
+# testScripts+=('zmq_test.py')
+#fi
+
extArg="-extended"
passOn=${@#$extArg}