functional_tests: add multisig and cold signing tests

This commit is contained in:
moneromooo-monero 2019-03-19 01:11:35 +00:00
parent b2fc571943
commit a5dbf7f5fa
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
4 changed files with 544 additions and 2 deletions

View file

@ -9,7 +9,7 @@ import socket
import string
USAGE = 'usage: functional_tests_rpc.py <python> <srcdir> <builddir> [<tests-to-run> | all]'
DEFAULT_TESTS = ['daemon_info', 'blockchain', 'wallet_address', 'integrated_address', 'mining', 'transfer', 'txpool']
DEFAULT_TESTS = ['daemon_info', 'blockchain', 'wallet_address', 'integrated_address', 'mining', 'transfer', 'txpool', 'multisig', 'cold_signing']
try:
python = sys.argv[1]
srcdir = sys.argv[2]
@ -34,7 +34,7 @@ except:
tests = DEFAULT_TESTS
N_MONERODS = 1
N_WALLETS = 3
N_WALLETS = 4
monerod_base = [builddir + "/bin/monerod", "--regtest", "--fixed-difficulty", "1", "--offline", "--no-igd", "--p2p-bind-port", "monerod_p2p_port", "--rpc-bind-port", "monerod_rpc_port", "--zmq-rpc-bind-port", "monerod_zmq_port", "--non-interactive", "--disable-dns-checkpoints", "--check-updates", "disabled", "--rpc-ssl", "disabled", "--log-level", "1"]
wallet_base = [builddir + "/bin/monero-wallet-rpc", "--wallet-dir", builddir + "/functional-tests-directory", "--rpc-bind-port", "wallet_port", "--disable-rpc-login", "--rpc-ssl", "disabled", "--daemon-ssl", "disabled", "--daemon-port", "18180", "--log-level", "1"]