mdbx-test: more for --ignore-dbfull.

This commit is contained in:
Leonid Yuriev
2022-01-21 01:29:59 +03:00
parent 981b10d10a
commit 50b843ecb7
3 changed files with 10 additions and 3 deletions

View File

@@ -95,7 +95,8 @@ bool testcase_nested::teardown() {
txn_begin(false);
db_table_drop(dbi);
int err = breakable_commit();
if (unlikely(err != MDBX_SUCCESS)) {
if (unlikely(err != MDBX_SUCCESS) &&
(err != MDBX_MAP_FULL || !config.params.ignore_dbfull)) {
log_notice("nested: bailout-clean due '%s'", mdbx_strerror(err));
ok = false;
}