aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2018-11-30 16:32:23 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2018-11-30 16:32:23 +0200
commite4a0c3547ed886871f8b3d51c6b4ffdb181a8b9c (patch)
treee61a99bad4e74b3045aefddca626de91b2a9099c
parentc3f1821ac788e522e7558e3575150433450dcb8c (diff)
downloadbitcoin-e4a0c3547ed886871f8b3d51c6b4ffdb181a8b9c.tar.xz
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.
-rwxr-xr-xtest/functional/feature_blocksdir.py2
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 ...")