File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,21 @@ testScripts=(
31
31
' proxy_test.py'
32
32
' merkle_blocks.py'
33
33
' signrawtransactions.py'
34
+ );
35
+ testScriptsExt=(
36
+ ' bipdersig-p2p.py'
37
+ ' bipdersig.py'
38
+ ' getblocktemplate_longpoll.py'
39
+ ' getblocktemplate_proposals.py'
40
+ ' prune.py'
41
+ ' forknotify.py'
42
+ ' invalidateblock.py'
43
+ ' keypool.py'
44
+ ' receivedby.py'
45
+ ' reindex.py'
46
+ ' rpcbind_test.py'
47
+ ' script_test.py'
48
+ ' smartfees.py'
34
49
' maxblocksinflight.py'
35
50
' invalidblockrequest.py'
36
51
' rawtransactions.py'
@@ -39,12 +54,20 @@ testScripts=(
39
54
if [ " x${ENABLE_BITCOIND}${ENABLE_UTILS}${ENABLE_WALLET} " = " x111" ]; then
40
55
for (( i = 0 ; i < ${# testScripts[@]} ; i++ ))
41
56
do
42
- if [ -z " $1 " ] || [ " $1 " == " ${testScripts[$i]} " ] || [ " $1 .py" == " ${testScripts[$i]} " ]
57
+ if [ -z " $1 " ] || [ " $1 " == " -extended " ] || [ " $1 " == " ${testScripts[$i]} " ] || [ " $1 .py" == " ${testScripts[$i]} " ]
43
58
then
44
59
echo -e " Running testscript \033[1m${testScripts[$i]} ...\033[0m"
45
60
${BUILDDIR} /qa/rpc-tests/${testScripts[$i]} --srcdir " ${BUILDDIR} /src"
46
61
fi
47
62
done
63
+ for (( i = 0 ; i < ${# testScriptsExt[@]} ; i++ ))
64
+ do
65
+ if [ " $1 " == " -extended" ] || [ " $1 " == " ${testScriptsExt[$i]} " ] || [ " $1 .py" == " ${testScriptsExt[$i]} " ]
66
+ then
67
+ echo -e " Running testscript \033[1m${testScriptsExt[$i]} ...\033[0m"
68
+ ${BUILDDIR} /qa/rpc-tests/${testScriptsExt[$i]} --srcdir " ${BUILDDIR} /src"
69
+ fi
70
+ done
48
71
else
49
72
echo " No rpc tests to run. Wallet, utils, and bitcoind must all be enabled"
50
73
fi
You can’t perform that action at this time.
0 commit comments