summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py')
-rwxr-xr-xsrc/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py b/src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py
index 04a303fef2b..1d567bf0c3a 100755
--- a/src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py
+++ b/src/third_party/wiredtiger/test/suite/test_rollback_to_stable08.py
@@ -58,18 +58,14 @@ class test_rollback_to_stable08(test_rollback_to_stable_base):
config = 'cache_size=50MB,statistics=(all)'
if self.in_memory:
config += ',in_memory=true'
- else:
- config += ',log=(enabled),in_memory=false'
return config
def test_rollback_to_stable(self):
nrows = 10000
- # Create a table without logging.
+ # Create a table.
uri = "table:rollback_to_stable08"
- ds = SimpleDataSet(
- self, uri, 0, key_format=self.key_format, value_format=self.value_format,
- config='log=(enabled=false)')
+ ds = SimpleDataSet(self, uri, 0, key_format=self.key_format, value_format=self.value_format)
ds.populate()
if self.value_format == '8t':