diff options
author | seaona <mariona@gmx.es> | 2021-12-15 16:17:54 +0100 |
---|---|---|
committer | seaona <mariona@gmx.es> | 2021-12-15 16:17:54 +0100 |
commit | 618f4d289053ad7b8802c709f1d55e516b465573 (patch) | |
tree | 4f821c4df0ada6290c30646458c9b709d7564054 | |
parent | 71115a5e23be63ec18729eaaba09316c3b2cbfb9 (diff) |
test: re-organized array according to order of logs and included 2 more interruption events
-rwxr-xr-x | test/functional/feature_init.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/functional/feature_init.py b/test/functional/feature_init.py index 7d416ee3cc..40468c66e2 100755 --- a/test/functional/feature_init.py +++ b/test/functional/feature_init.py @@ -57,21 +57,23 @@ class InitStressTest(BitcoinTestFramework): assert_equal(200, node.getblockcount()) lines_to_terminate_after = [ + 'Validating signatures for all blocks', 'scheduler thread start', + 'Starting HTTP server', 'Loading P2P addresses', 'Loading banlist', 'Loading block index', 'Switching active chainstate', + 'Checking all blk files are present', 'Loaded best chain:', 'init message: Verifying blocks', + 'init message: Starting network threads', + 'net thread start', + 'addcon thread start', 'loadblk thread start', # TODO: reenable - see above TODO # 'txindex thread start', - 'net thread start', - 'addcon thread start', - 'msghand thread start', - 'Checking all blk files are present', - 'init message: Starting network threads' + 'msghand thread start' ] if self.is_wallet_compiled(): lines_to_terminate_after.append('Verifying wallet') |