summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_compat01.py
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-05-29 15:17:23 +1000
committerLuke Chen <luke.chen@mongodb.com>2019-05-29 15:17:23 +1000
commit441714bc4c70699950f3ac51a5cac41dcd413eaa (patch)
treebd9ebaedbbd2ad5e22cf0de79c1dd9e185807cca /src/third_party/wiredtiger/test/suite/test_compat01.py
parent76f671c7a714378951dc7d4d5e22073e45882633 (diff)
downloadmongo-441714bc4c70699950f3ac51a5cac41dcd413eaa.tar.gz
Import wiredtiger: 57bd75fee93b685c133281100719f886d0184589 from branch mongodb-4.2r4.1.13
ref: 5d321d0c60..57bd75fee9 for: 4.1.13 WT-4240 Document that system crashes may result in files that need salvaging WT-4710 Fix memory issue for non-verbose dump in datafile portability test WT-4712 Add debug log op record for non-logged tables WT-4732 Remove the bias from the eviction policy on the dhandle order WT-4760 Checkpoint should not read past a stable update WT-4771 Fix compatibility tests to handle a new version release WT-4799 wiredtiger.in references the wrong statistics script WT-4800 List all flags in the wt utility usage statement WT-4803 Implement file_max configuration for Cache Overflow mechanism WT-4804 Add support for ignore_prepare=force WT-4811 Fix durable timestamp assignment for updates created for truncate WT-4816 Don't disallow LSM configurations in test/format WT-4817 heap-buffer-overflow failure in timestamp_abort WT-4819 wt utility list command drops core on empty objects WT-4822 Extend statistics to track max pre compression page sizes WT-4823 Add check for uninitialised lookaside resources
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_compat01.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_compat01.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_compat01.py b/src/third_party/wiredtiger/test/suite/test_compat01.py
index faf5ed1673f..7181d474fa6 100644
--- a/src/third_party/wiredtiger/test/suite/test_compat01.py
+++ b/src/third_party/wiredtiger/test/suite/test_compat01.py
@@ -53,6 +53,7 @@ class test_compat01(wttest.WiredTigerTestCase, suite_subprocess):
# and without the patch number. Test both.
start_compat = [
('def', dict(compat1='none', logv1=3)),
+ ('32', dict(compat1='3.2', logv1=3)),
('31', dict(compat1="3.1", logv1=3)),
('30', dict(compat1="3.0", logv1=2)),
('30_patch', dict(compat1="3.0.0", logv1=2)),
@@ -62,6 +63,7 @@ class test_compat01(wttest.WiredTigerTestCase, suite_subprocess):
]
restart_compat = [
('def2', dict(compat2='none', logv2=3)),
+ ('32_2', dict(compat2='3.2', logv2=3)),
('31_2', dict(compat2="3.1", logv2=3)),
('30_2', dict(compat2="3.0", logv2=2)),
('30_patch2', dict(compat2="3.0.0", logv2=2)),