f6ade9ce1a
test_framework accepts a new --usecli parameter. Running the test with this parameter will cause all RPCs to be sent through bitcoin-cli rather than directly over http. By default, individual test cases do not support --usecli, and self.supports_cli must be set to True in the set_test_params method. We can make supports_cli default to True in future once we know which tests will fail with use_cli.
28 lines
826 B
Python
Executable file
28 lines
826 B
Python
Executable file
#!/usr/bin/env python3
|
|
# Copyright (c) 2016-2017 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Create a blockchain cache.
|
|
|
|
Creating a cache of the blockchain speeds up test execution when running
|
|
multiple functional tests. This helper script is executed by test_runner when multiple
|
|
tests are being run in parallel.
|
|
"""
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
class CreateCache(BitcoinTestFramework):
|
|
# Test network and test nodes are not required:
|
|
|
|
def set_test_params(self):
|
|
self.num_nodes = 0
|
|
self.supports_cli = True
|
|
|
|
def setup_network(self):
|
|
pass
|
|
|
|
def run_test(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
CreateCache().main()
|