aboutsummaryrefslogtreecommitdiff
path: root/qa/pull-tester
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-01-07 11:21:53 +0100
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-01-07 16:41:12 +0100
commit84d919974bfa22c9332faa36768d52cbbcc594f5 (patch)
tree60c4684f334c1c6daf202a82e52e936fe15a7fcd /qa/pull-tester
parent729ba317498bf644c62975dbde07da5ab9ef0043 (diff)
downloadbitcoin-84d919974bfa22c9332faa36768d52cbbcc594f5.tar.xz
[QA] fix zapwallettxes test
- remove shell test script and add a python equivalent
Diffstat (limited to 'qa/pull-tester')
-rwxr-xr-xqa/pull-tester/rpc-tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh
index 15cac14595..efeee45530 100755
--- a/qa/pull-tester/rpc-tests.sh
+++ b/qa/pull-tester/rpc-tests.sh
@@ -26,6 +26,7 @@ testScripts=(
'mempool_spendcoinbase.py'
'mempool_coinbase_spends.py'
'httpbasics.py'
+ 'zapwallettxes.py'
# 'forknotify.py'
);
if [ "x${ENABLE_BITCOIND}${ENABLE_UTILS}${ENABLE_WALLET}" = "x111" ]; then
@@ -33,7 +34,7 @@ if [ "x${ENABLE_BITCOIND}${ENABLE_UTILS}${ENABLE_WALLET}" = "x111" ]; then
do
if [ -z "$1" ] || [ "$1" == "${testScripts[$i]}" ] || [ "$1.py" == "${testScripts[$i]}" ]
then
- echo -e "running testscript \033[1m${testScripts[$i]}...\033[0m"
+ echo -e "Running testscript \033[1m${testScripts[$i]}...\033[0m"
${BUILDDIR}/qa/rpc-tests/${testScripts[$i]} --srcdir "${BUILDDIR}/src"
fi
done