diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2022-01-20 22:23:55 +0100 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2022-01-31 21:21:39 +0100 |
commit | bfcd60f5d505334230013de4115483b22a7898ee (patch) | |
tree | db77c6e7dc23f54abdefb2bb3a738c3c87a1a1fa /test/functional/feature_init.py | |
parent | 0243907faee0aa6af09974131d9a46a7f9c3ef38 (diff) |
test: activate all index types in feature_init.py
Diffstat (limited to 'test/functional/feature_init.py')
-rwxr-xr-x | test/functional/feature_init.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/feature_init.py b/test/functional/feature_init.py index dbd71a8b2d..d0cb1e10e2 100755 --- a/test/functional/feature_init.py +++ b/test/functional/feature_init.py @@ -64,6 +64,8 @@ class InitStressTest(BitcoinTestFramework): 'addcon thread start', 'loadblk thread start', 'txindex thread start', + 'block filter index thread start', + 'coinstatsindex thread start', 'msghand thread start', 'net thread start', 'addcon thread start', @@ -74,7 +76,7 @@ class InitStressTest(BitcoinTestFramework): for terminate_line in lines_to_terminate_after: self.log.info(f"Starting node and will exit after line '{terminate_line}'") with node.wait_for_debug_log([terminate_line], ignore_case=True): - node.start(extra_args=['-txindex=1']) + node.start(extra_args=['-txindex=1', '-blockfilterindex=1', '-coinstatsindex=1']) self.log.debug("Terminating node after terminate line was found") sigterm_node() @@ -109,7 +111,7 @@ class InitStressTest(BitcoinTestFramework): # investigate doing this later. node.assert_start_raises_init_error( - extra_args=['-txindex=1'], + extra_args=['-txindex=1', '-blockfilterindex=1', '-coinstatsindex=1'], expected_msg=err_fragment, match=ErrorMatch.PARTIAL_REGEX, ) |