minor testing fixes
This commit is contained in:
parent
e2ea3b5d26
commit
e092f44ace
4 changed files with 8 additions and 6 deletions
|
|
@ -799,7 +799,9 @@ class CmdTestXMRWallet(CmdTestBase):
|
|||
h = await self._get_height()
|
||||
imsg_r(f'Chain height: {h} ')
|
||||
|
||||
max_iterations, min_height = (300, 64) if gc.platform == 'win32' else (50, 300)
|
||||
max_iterations, min_height = (
|
||||
(300, 64) if gc.machine == 'riscv64' or gc.platform == 'win32' else
|
||||
(200, 300))
|
||||
verbose = False
|
||||
|
||||
for count in range(max_iterations):
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ sec = 'deadbeef' * 8
|
|||
|
||||
class unit_tests:
|
||||
|
||||
altcoin_deps = ('pycoin', 'monero_python', 'keyconv', 'zcash_mini', 'eth_keys', 'ssh_socks_proxy')
|
||||
altcoin_deps = ('monero_python', 'keyconv', 'zcash_mini', 'eth_keys', 'ssh_socks_proxy')
|
||||
win_skip = ('losetup', 'zcash_mini', 'sudo')
|
||||
mac_skip = ('losetup',)
|
||||
|
||||
|
|
|
|||
|
|
@ -287,9 +287,9 @@ init_tests() {
|
|||
"
|
||||
|
||||
[ "$SOC" ] && {
|
||||
xmr_env1="MMGEN_TEST_SUITE_PEXPECT_TIMEOUT=${MMGEN_TEST_SUITE_PEXPECT_TIMEOUT:-300} "
|
||||
xmr_env2="MMGEN_HTTP_TIMEOUT=${MMGEN_HTTP_TIMEOUT:-300} "
|
||||
xmr_env3="MMGEN_DAEMON_STATE_TIMEOUT=${MMGEN_DAEMON_STATE_TIMEOUT:-180} "
|
||||
xmr_env1="MMGEN_TEST_SUITE_PEXPECT_TIMEOUT=${MMGEN_TEST_SUITE_PEXPECT_TIMEOUT:-600} "
|
||||
xmr_env2="MMGEN_HTTP_TIMEOUT=${MMGEN_HTTP_TIMEOUT:-600} "
|
||||
xmr_env3="MMGEN_DAEMON_STATE_TIMEOUT=${MMGEN_DAEMON_STATE_TIMEOUT:-300} "
|
||||
}
|
||||
|
||||
d_xmr="Monero xmrwallet operations"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue