summaryrefslogtreecommitdiff
path: root/test/suite/test_compact01.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/test_compact01.py')
-rw-r--r--test/suite/test_compact01.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/suite/test_compact01.py b/test/suite/test_compact01.py
index 861e957d18d..8da1a0df4da 100644
--- a/test/suite/test_compact01.py
+++ b/test/suite/test_compact01.py
@@ -54,9 +54,11 @@ class test_compact(wttest.WiredTigerTestCase, suite_subprocess):
('utility', dict(utility=1,reopen=0)),
]
scenarios = make_scenarios(types, compact)
- # We want a large cache so that eviction doesn't happen
- # (which could skew our compaction results).
- conn_config = 'cache_size=250MB,statistics=(all)'
+
+ # Configure the connection so that eviction doesn't happen (which could
+ # skew our compaction results).
+ conn_config = 'cache_size=1GB,eviction_checkpoint_target=80,' +\
+ 'eviction_dirty_target=80,eviction_dirty_trigger=95,statistics=(all)'
# Test compaction.
def test_compact(self):