diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-19 01:11:35 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-21 19:28:15 +0000 |
commit | a5dbf7f5faf9013b3cc73e9b6d1fed93ed9c6805 (patch) | |
tree | 8b22b9941db812437f75350d9d34dca3e6d2f755 /tests/functional_tests/functional_tests_rpc.py | |
parent | functional_tests: support several daemons/wallets (diff) | |
download | monero-a5dbf7f5faf9013b3cc73e9b6d1fed93ed9c6805.tar.xz |
functional_tests: add multisig and cold signing tests
Diffstat (limited to 'tests/functional_tests/functional_tests_rpc.py')
-rwxr-xr-x | tests/functional_tests/functional_tests_rpc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py index db48844f3..abec0eef0 100755 --- a/tests/functional_tests/functional_tests_rpc.py +++ b/tests/functional_tests/functional_tests_rpc.py @@ -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"] |