2016-05-10 18:27:31 +02:00
|
|
|
#!/usr/bin/env python3
|
2019-12-31 18:35:41 +01:00
|
|
|
# Copyright (c) 2016-2019 The Bitcoin Core developers
|
2016-05-10 18:27:31 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Create a blockchain cache.
|
2016-05-10 18:27:31 +02:00
|
|
|
|
2019-01-07 10:55:35 +01:00
|
|
|
Creating a cache of the blockchain speeds up test execution when running
|
2019-05-19 22:20:34 +02:00
|
|
|
multiple functional tests. This helper script is executed by test_runner when multiple
|
2019-01-07 10:55:35 +01:00
|
|
|
tests are being run in parallel.
|
|
|
|
"""
|
2016-05-10 18:27:31 +02:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
|
|
|
|
class CreateCache(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
# Test network and test nodes are not required:
|
2016-05-10 18:27:31 +02:00
|
|
|
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2016-09-16 11:24:14 +02:00
|
|
|
self.num_nodes = 0
|
|
|
|
|
2016-05-10 18:27:31 +02:00
|
|
|
def setup_network(self):
|
2016-09-16 11:24:14 +02:00
|
|
|
pass
|
2016-05-10 18:27:31 +02:00
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
CreateCache().main()
|