diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-08-05 07:48:42 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-08-05 07:48:45 -0400 |
commit | 6b6386e854920be76073ce60d9407c35f2914f5b (patch) | |
tree | 187d10866fd4df3942553cd0ffc959a0fee3f5de | |
parent | e55444a2a8a2b4a378e6d42b7bf73d13492a5716 (diff) | |
parent | fa566b2601ee5a40bf814e529d7db253dacd28e7 (diff) |
Merge #16538: test: Add missing sync_blocks to feature_pruning
fa566b2601ee5a40bf814e529d7db253dacd28e7 test: Add missing sync_blocks to feature_pruning (MarcoFalke)
Pull request description:
Fixes #16537
Fixes #16520
ACKs for top commit:
promag:
ACK fa566b2601ee5a40bf814e529d7db253dacd28e7.
jonatack:
ACK fa566b2601ee5a40bf814e529d7db253dacd28e7. These past few months I have been seeing intermittent failures with this test on master. Ran `(for i in {1..40}; do test/functional/feature_pruning.py -l=debug; done)` overnight with this change; no failures.
Tree-SHA512: 5181d5ea525f43ad09e1c8b9ae72e32219f483948854c6dc07dda24b790cbdf4012e586253a0e158a71a980d1ca9f5fdf06aafbe95b8ea3d9154ef2c8687395b
-rwxr-xr-x | test/functional/feature_pruning.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py index 66c395d7a2..727f4b9589 100755 --- a/test/functional/feature_pruning.py +++ b/test/functional/feature_pruning.py @@ -204,6 +204,7 @@ class PruneTest(BitcoinTestFramework): self.log.info("Mine 220 more large blocks so we have requisite history") mine_large_blocks(self.nodes[0], 220) + self.sync_blocks(self.nodes[0:3], timeout=120) usage = calc_usage(self.prunedir) self.log.info("Usage should be below target: %d" % usage) |