diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2018-11-30 16:32:23 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2018-11-30 16:32:23 +0200 |
commit | e4a0c3547ed886871f8b3d51c6b4ffdb181a8b9c (patch) | |
tree | e61a99bad4e74b3045aefddca626de91b2a9099c /test/functional | |
parent | c3f1821ac788e522e7558e3575150433450dcb8c (diff) |
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.
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/feature_blocksdir.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/feature_blocksdir.py b/test/functional/feature_blocksdir.py index c170f510c8..3a4889bbe9 100755 --- a/test/functional/feature_blocksdir.py +++ b/test/functional/feature_blocksdir.py @@ -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 ...") |