Improve blocksdir functional test.

A new node should not create an unused `blocks` directory in the root of
the data directory when `-testnet` or `-regtest` is specified.
This commit is contained in:
Hennadii Stepanov 2018-11-30 16:32:23 +02:00
parent c3f1821ac7
commit e4a0c3547e
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -18,6 +18,8 @@ class BlocksdirTest(BitcoinTestFramework):
def run_test(self):
self.stop_node(0)
assert os.path.isdir(os.path.join(self.nodes[0].datadir, "regtest", "blocks"))
assert not os.path.isdir(os.path.join(self.nodes[0].datadir, "blocks"))
shutil.rmtree(self.nodes[0].datadir)
initialize_datadir(self.options.tmpdir, 0)
self.log.info("Starting with nonexistent blocksdir ...")