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