aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-03-11 13:29:20 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-03-11 13:37:17 -0400
commitfa9b3040e7f21733416c3ea155f372c8c398ea80 (patch)
treead9dd918217b799d2df3c9b55a413ce297ecb693 /test
parentfa72d270ad5326d8ad78bb7100e74dd460188c32 (diff)
downloadbitcoin-fa9b3040e7f21733416c3ea155f372c8c398ea80.tar.xz
test: Bump rpc timeout in feature_assumevalid to avoid valgrind timeouts
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/feature_assumevalid.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/feature_assumevalid.py b/test/functional/feature_assumevalid.py
index 1b434c4485..ef4d9411c5 100755
--- a/test/functional/feature_assumevalid.py
+++ b/test/functional/feature_assumevalid.py
@@ -47,16 +47,19 @@ from test_framework.script import (CScript, OP_TRUE)
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal
+
class BaseNode(P2PInterface):
def send_header_for_blocks(self, new_blocks):
headers_message = msg_headers()
headers_message.headers = [CBlockHeader(b) for b in new_blocks]
self.send_message(headers_message)
+
class AssumeValidTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 3
+ self.rpc_timeout = 120
def setup_network(self):
self.add_nodes(3)
@@ -187,5 +190,6 @@ class AssumeValidTest(BitcoinTestFramework):
self.send_blocks_until_disconnected(p2p2)
self.assert_blockchain_height(self.nodes[2], 101)
+
if __name__ == '__main__':
AssumeValidTest().main()