diff options
Diffstat (limited to 'src/third_party/wiredtiger/test/suite')
4 files changed, 9 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_compat01.py b/src/third_party/wiredtiger/test/suite/test_compat01.py index b3533cde004..56f4e0f092f 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=5)), + ('112', dict(compat1='11.2', logv1=5)), ('111', dict(compat1='11.1', logv1=5)), ('110', dict(compat1='11.0', logv1=5)), ('100', dict(compat1='10.0', logv1=5)), @@ -67,6 +68,7 @@ class test_compat01(wttest.WiredTigerTestCase, suite_subprocess): ] restart_compat = [ ('def2', dict(compat2='none', logv2=5)), + ('112_2', dict(compat2='11.2', logv2=5)), ('111_2', dict(compat2='11.1', logv2=5)), ('110_2', dict(compat2='11.0', logv2=5)), ('100_2', dict(compat2='10.0', logv2=5)), diff --git a/src/third_party/wiredtiger/test/suite/test_compat02.py b/src/third_party/wiredtiger/test/suite/test_compat02.py index bfe9bef6814..923e6d3d75f 100644 --- a/src/third_party/wiredtiger/test/suite/test_compat02.py +++ b/src/third_party/wiredtiger/test/suite/test_compat02.py @@ -57,6 +57,7 @@ class test_compat02(wttest.WiredTigerTestCase, suite_subprocess): compat_create = [ ('def', dict(create_rel='none', log_create=5)), + ('112', dict(create_rel="11.2", log_create=5)), ('111', dict(create_rel="11.1", log_create=5)), ('110', dict(create_rel="11.0", log_create=5)), ('100', dict(create_rel="10.0", log_create=5)), @@ -69,6 +70,7 @@ class test_compat02(wttest.WiredTigerTestCase, suite_subprocess): compat_release = [ ('def_rel', dict(rel='none', log_rel=5)), + ('112_rel', dict(rel="11.2", log_rel=5)), ('111_rel', dict(rel="11.1", log_rel=5)), ('110_rel', dict(rel="11.0", log_rel=5)), ('100_rel', dict(rel="10.0", log_rel=5)), @@ -89,7 +91,7 @@ class test_compat02(wttest.WiredTigerTestCase, suite_subprocess): compat_max = [ ('future_max', dict(max_req=future_rel, log_max=future_logv)), ('def_max', dict(max_req='none', log_max=5)), - ('111_max', dict(max_req="11.1", log_max=5)), + ('112_max', dict(max_req="11.2", log_max=5)), ('33_max', dict(max_req="3.3", log_max=4)), ('32_max', dict(max_req="3.2", log_max=3)), ('30_max', dict(max_req="3.0", log_max=2)), diff --git a/src/third_party/wiredtiger/test/suite/test_compat03.py b/src/third_party/wiredtiger/test/suite/test_compat03.py index a6185a0ce02..b0e6c510858 100644 --- a/src/third_party/wiredtiger/test/suite/test_compat03.py +++ b/src/third_party/wiredtiger/test/suite/test_compat03.py @@ -58,6 +58,7 @@ class test_compat03(wttest.WiredTigerTestCase, suite_subprocess): compat_release = [ ('future_rel', dict(rel=future_rel, log_rel=future_logv)), ('def_rel', dict(rel='none', log_rel=5)), + ('112_rel', dict(rel="11.2", log_rel=5)), ('111_rel', dict(rel="11.1", log_rel=5)), ('110_rel', dict(rel="11.0", log_rel=5)), ('100_rel', dict(rel="10.0", log_rel=5)), @@ -78,7 +79,7 @@ class test_compat03(wttest.WiredTigerTestCase, suite_subprocess): compat_max = [ ('future_max', dict(max_req=future_rel, log_max=future_logv)), ('def_max', dict(max_req='none', log_max=5)), - ('111_max', dict(max_req="11.1", log_max=5)), + ('112_max', dict(max_req="11.2", log_max=5)), ('33_max', dict(max_req="3.3", log_max=4)), ('32_max', dict(max_req="3.2", log_max=3)), ('30_max', dict(max_req="3.0", log_max=2)), diff --git a/src/third_party/wiredtiger/test/suite/test_compat04.py b/src/third_party/wiredtiger/test/suite/test_compat04.py index 4d704a3ebcb..96691351ba5 100644 --- a/src/third_party/wiredtiger/test/suite/test_compat04.py +++ b/src/third_party/wiredtiger/test/suite/test_compat04.py @@ -54,6 +54,7 @@ class test_compat04(wttest.WiredTigerTestCase, suite_subprocess): # create_release = [ ('def_rel', dict(create_rel='none', log_crrel=5)), + ('112_rel', dict(create_rel="11.2", log_crrel=5)), ('111_rel', dict(create_rel="11.1", log_crrel=5)), ('110_rel', dict(create_rel="11.0", log_crrel=5)), ('100_rel', dict(create_rel="10.0", log_crrel=5)), @@ -64,6 +65,7 @@ class test_compat04(wttest.WiredTigerTestCase, suite_subprocess): ('26_rel', dict(create_rel="2.6", log_crrel=1)), ] reconfig_release = [ + ('112_rel', dict(rel="11.2", log_rel=5)), ('111_rel', dict(rel="11.1", log_rel=5)), ('110_rel', dict(rel="11.0", log_rel=5)), ('100_rel', dict(rel="10.0", log_rel=5)), |