diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-06-23 15:23:49 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-06-23 15:21:29 +0200 |
commit | fa748c6f2ac2f9cac7ce42fd745ed3c3eae093b7 (patch) | |
tree | ceb4dfdf4e724b0c07a4cdb399ac4aa64ee87258 | |
parent | 6a473373d4953cabbb219eae8b709150a45796e6 (diff) |
test: Fix intermittent issue in mining_getblocktemplate_longpoll.py
-rwxr-xr-x | test/functional/mining_getblocktemplate_longpoll.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/functional/mining_getblocktemplate_longpoll.py b/test/functional/mining_getblocktemplate_longpoll.py index 53182eb79e..c0e7195c82 100755 --- a/test/functional/mining_getblocktemplate_longpoll.py +++ b/test/functional/mining_getblocktemplate_longpoll.py @@ -41,7 +41,8 @@ class GetBlockTemplateLPTest(BitcoinTestFramework): self.log.info("Test that longpoll waits if we do nothing") thr = LongpollThread(self.nodes[0]) - thr.start() + with self.nodes[0].assert_debug_log(["ThreadRPCServer method=getblocktemplate"], timeout=3): + thr.start() # check that thread still lives thr.join(5) # wait 5 seconds or until thread exits assert thr.is_alive() @@ -55,14 +56,16 @@ class GetBlockTemplateLPTest(BitcoinTestFramework): self.log.info("Test that longpoll will terminate if we generate a block ourselves") thr = LongpollThread(self.nodes[0]) - thr.start() + with self.nodes[0].assert_debug_log(["ThreadRPCServer method=getblocktemplate"], timeout=3): + thr.start() self.generate(self.nodes[0], 1) # generate a block on own node thr.join(5) # wait 5 seconds or until thread exits assert not thr.is_alive() self.log.info("Test that introducing a new transaction into the mempool will terminate the longpoll") thr = LongpollThread(self.nodes[0]) - thr.start() + with self.nodes[0].assert_debug_log(["ThreadRPCServer method=getblocktemplate"], timeout=3): + thr.start() # generate a transaction and submit it self.miniwallet.send_self_transfer(from_node=random.choice(self.nodes)) # after one minute, every 10 seconds the mempool is probed, so in 80 seconds it should have returned |