diff options
Diffstat (limited to 'test/suite/test_txn04.py')
-rw-r--r-- | test/suite/test_txn04.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/suite/test_txn04.py b/test/suite/test_txn04.py index 66f41903592..7e8b448856b 100644 --- a/test/suite/test_txn04.py +++ b/test/suite/test_txn04.py @@ -39,7 +39,12 @@ class test_txn04(wttest.WiredTigerTestCase, suite_subprocess): logmax = "100K" tablename = 'test_txn04' uri = 'table:' + tablename - sync_list = ['dsync', 'fsync', 'none'] + sync_list = [ + '(method=dsync,enabled)', + '(method=fsync,enabled)', + '(method=none,enabled)', + '(enabled=false)' + ] types = [ ('row', dict(tabletype='row', |