Do some verify tests with no pruning

This commit is contained in:
Josh Slocum 2022-03-01 12:52:26 -06:00
parent e0578f24d2
commit a14f3ff067
1 changed files with 3 additions and 1 deletions

View File

@ -538,7 +538,9 @@ struct BlobGranuleVerifierWorkload : TestWorkload {
clients.push_back(timeout(findGranules(cx, this), testDuration, Void()));
for (int i = 0; i < threads; i++) {
clients.push_back(
timeout(reportErrors(verifyGranules(cx, this, clientId == 0 && i == 0), "BlobGranuleVerifier"),
timeout(reportErrors(verifyGranules(
cx, this, clientId == 0 && i == 0 && deterministicRandom()->random01() < 0.5),
"BlobGranuleVerifier"),
testDuration,
Void()));
}