Merge #16888: test: Bump timeouts in slow running tests
fa502cb6f0
test: Bump timeouts in slow running tests (MarcoFalke) Pull request description: Fixes #16794 ACKs for top commit: jamesob: ACKfa502cb6f0
Tree-SHA512: 52d1a6f9febe066332cc9df40638fdc3e8aaf1990caf912073b42f2f6615879da5512533ff71b85b4865034bc30da46945d34916669068e004e68058aeb04e90
This commit is contained in:
commit
318890b1ee
7 changed files with 10 additions and 7 deletions
|
@ -40,7 +40,7 @@ from test_framework.messages import (
|
|||
CTxIn,
|
||||
CTxOut,
|
||||
msg_block,
|
||||
msg_headers
|
||||
msg_headers,
|
||||
)
|
||||
from test_framework.mininode import P2PInterface
|
||||
from test_framework.script import (CScript, OP_TRUE)
|
||||
|
@ -180,7 +180,7 @@ class AssumeValidTest(BitcoinTestFramework):
|
|||
for i in range(2202):
|
||||
p2p1.send_message(msg_block(self.blocks[i]))
|
||||
# Syncing 2200 blocks can take a while on slow systems. Give it plenty of time to sync.
|
||||
p2p1.sync_with_ping(200)
|
||||
p2p1.sync_with_ping(960)
|
||||
assert_equal(self.nodes[1].getblock(self.nodes[1].getbestblockhash())['height'], 2202)
|
||||
|
||||
# Send blocks to node2. Block 102 will be rejected.
|
||||
|
|
|
@ -1261,7 +1261,7 @@ class FullBlockTest(BitcoinTestFramework):
|
|||
self.save_spendable_output()
|
||||
spend = self.get_spendable_output()
|
||||
|
||||
self.send_blocks(blocks, True, timeout=480)
|
||||
self.send_blocks(blocks, True, timeout=960)
|
||||
chain1_tip = i
|
||||
|
||||
# now create alt chain of same length
|
||||
|
@ -1273,14 +1273,14 @@ class FullBlockTest(BitcoinTestFramework):
|
|||
|
||||
# extend alt chain to trigger re-org
|
||||
block = self.next_block("alt" + str(chain1_tip + 1), version=4)
|
||||
self.send_blocks([block], True, timeout=480)
|
||||
self.send_blocks([block], True, timeout=960)
|
||||
|
||||
# ... and re-org back to the first chain
|
||||
self.move_tip(chain1_tip)
|
||||
block = self.next_block(chain1_tip + 1, version=4)
|
||||
self.send_blocks([block], False, force_send=True)
|
||||
block = self.next_block(chain1_tip + 2, version=4)
|
||||
self.send_blocks([block], True, timeout=480)
|
||||
self.send_blocks([block], True, timeout=960)
|
||||
|
||||
self.log.info("Reject a block with an invalid block header version")
|
||||
b_v1 = self.next_block('b_v1', version=1)
|
||||
|
|
|
@ -50,7 +50,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework):
|
|||
def set_test_params(self):
|
||||
self.num_nodes = 4
|
||||
self.setup_clean_chain = False
|
||||
self.rpc_timeout = 180
|
||||
self.rpc_timeout = 480
|
||||
|
||||
# Set -maxmempool=0 to turn off mempool memory sharing with dbcache
|
||||
# Set -rpcservertimeout=900 to reduce socket disconnects in this
|
||||
|
|
|
@ -92,6 +92,7 @@ class PruneTest(BitcoinTestFramework):
|
|||
["-maxreceivebuffer=20000"],
|
||||
["-prune=550"],
|
||||
]
|
||||
self.rpc_timeout = 120
|
||||
|
||||
def skip_test_if_missing_module(self):
|
||||
self.skip_if_no_wallet()
|
||||
|
|
|
@ -85,7 +85,7 @@ class InvalidMessagesTest(BitcoinTestFramework):
|
|||
|
||||
# Peer 1, despite serving up a bunch of nonsense, should still be connected.
|
||||
self.log.info("Waiting for node to drop junk messages.")
|
||||
node.p2p.sync_with_ping(timeout=120)
|
||||
node.p2p.sync_with_ping(timeout=320)
|
||||
assert node.p2p.is_connected
|
||||
|
||||
#
|
||||
|
|
|
@ -19,6 +19,7 @@ class ToolWalletTest(BitcoinTestFramework):
|
|||
def set_test_params(self):
|
||||
self.num_nodes = 1
|
||||
self.setup_clean_chain = True
|
||||
self.rpc_timeout = 120
|
||||
|
||||
def skip_test_if_missing_module(self):
|
||||
self.skip_if_no_wallet()
|
||||
|
|
|
@ -49,6 +49,7 @@ class WalletBackupTest(BitcoinTestFramework):
|
|||
self.setup_clean_chain = True
|
||||
# nodes 1, 2,3 are spenders, let's give them a keypool=100
|
||||
self.extra_args = [["-keypool=100"], ["-keypool=100"], ["-keypool=100"], []]
|
||||
self.rpc_timeout = 120
|
||||
|
||||
def skip_test_if_missing_module(self):
|
||||
self.skip_if_no_wallet()
|
||||
|
|
Loading…
Reference in a new issue