diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2015-05-05 20:30:20 -0400 |
---|---|---|
committer | João Barbosa <joao@bitreserve.org> | 2015-09-16 10:59:32 +0100 |
commit | 1136879df8af2358efb706c5af886778fbd94989 (patch) | |
tree | a4082a5dbd33bc7373055989902ada818172a038 /qa/pull-tester | |
parent | 5624e055b310284e8dfd68833eea7f7246316354 (diff) |
Depends: Add ZeroMQ package
Diffstat (limited to 'qa/pull-tester')
-rwxr-xr-x | qa/pull-tester/rpc-tests.sh | 4 | ||||
-rwxr-xr-x | qa/pull-tester/tests-config.sh.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index 514bdf5640..c6181c48ca 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -59,6 +59,10 @@ testScriptsExt=( 'p2p-acceptblock.py' ); +if [ "x$ENABLE_ZMQ" = "x1" ]; then + testScripts=( ${testScripts[@]} 'zmq_test.py' ) +fi + extArg="-extended" passOn=${@#$extArg} diff --git a/qa/pull-tester/tests-config.sh.in b/qa/pull-tester/tests-config.sh.in index 10f4d33e47..e881a95110 100755 --- a/qa/pull-tester/tests-config.sh.in +++ b/qa/pull-tester/tests-config.sh.in @@ -10,6 +10,7 @@ EXEEXT="@EXEEXT@" @ENABLE_WALLET_TRUE@ENABLE_WALLET=1 @BUILD_BITCOIN_UTILS_TRUE@ENABLE_UTILS=1 @BUILD_BITCOIND_TRUE@ENABLE_BITCOIND=1 +@ENABLE_ZMQ_TRUE@ENABLE_ZMQ=1 REAL_BITCOIND="$BUILDDIR/src/bitcoind${EXEEXT}" REAL_BITCOINCLI="$BUILDDIR/src/bitcoin-cli${EXEEXT}" |