diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-06-06 13:23:21 -0400 |
---|---|---|
committer | Michael Cahill <michael.cahill@mongodb.com> | 2015-06-29 13:52:26 +1000 |
commit | 2fc2b8bbe52b10e87ba898af13ea264018622bd9 (patch) | |
tree | 460c21717115887aa3fa6991efe9c9409d058abd /test/format | |
parent | a0c9c24db632dfed6df03f300375ea2a275898ef (diff) | |
download | mongo-2fc2b8bbe52b10e87ba898af13ea264018622bd9.tar.gz |
WT-1959 Add the "strict" configuration option to WT_SESSION.verify, default false, don't error if we leak blocks unless strict is configured.
(cherry picked from commit b3e3f19a08bbd8897dc0ba3f54b217292e35ea6b)
Diffstat (limited to 'test/format')
-rw-r--r-- | test/format/wts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/format/wts.c b/test/format/wts.c index 4d65ce78e8c..aa8309d9eea 100644 --- a/test/format/wts.c +++ b/test/format/wts.c @@ -462,7 +462,7 @@ wts_verify(const char *tag) "=============== verify start ==============="); /* Session operations for LSM can return EBUSY. */ - ret = session->verify(session, g.uri, NULL); + ret = session->verify(session, g.uri, "strict"); if (ret != 0 && !(ret == EBUSY && DATASOURCE("lsm"))) die(ret, "session.verify: %s: %s", g.uri, tag); |