summaryrefslogtreecommitdiff
path: root/test/format/compact.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/format/compact.c')
-rw-r--r--test/format/compact.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/format/compact.c b/test/format/compact.c
index 8a558d2b35b..c1a73bea64b 100644
--- a/test/format/compact.c
+++ b/test/format/compact.c
@@ -64,11 +64,11 @@ compact(void *arg)
break;
/*
- * Compact can return EBUSY if concurrent with alter.
+ * Compact can return EBUSY if concurrent with alter or if there
+ * is eviction pressure, or we collide with checkpoints.
*/
- while ((ret = session->compact(session, g.uri, NULL)) == EBUSY)
- __wt_yield();
- if (ret != 0 && ret != WT_ROLLBACK)
+ ret = session->compact(session, g.uri, NULL);
+ if (ret != 0 && ret != EBUSY && ret != WT_ROLLBACK)
testutil_die(ret, "session.compact");
}