summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_checkpoint01.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_checkpoint01.py')
-rwxr-xr-xsrc/third_party/wiredtiger/test/suite/test_checkpoint01.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_checkpoint01.py b/src/third_party/wiredtiger/test/suite/test_checkpoint01.py
index e8c08cbd48e..6f3940f47cb 100755
--- a/src/third_party/wiredtiger/test/suite/test_checkpoint01.py
+++ b/src/third_party/wiredtiger/test/suite/test_checkpoint01.py
@@ -209,15 +209,18 @@ class test_checkpoint_target(wttest.WiredTigerTestCase):
])
def update(self, uri, ds, value):
- cursor = self.session.open_cursor(uri, None, "overwrite")
+ cursor = ds.open_cursor(uri, None, "overwrite")
cursor[ds.key(10)] = value
cursor.close()
def check(self, uri, ds, value):
- cursor = self.session.open_cursor(uri, None, "checkpoint=checkpoint-1")
+ cursor = ds.open_cursor(uri, None, "checkpoint=checkpoint-1")
self.assertEquals(cursor[ds.key(10)], value)
cursor.close()
+ # FIXME-WT-9902
+ @wttest.skip_for_hook("tiered", "strange interaction with tiered and named checkpoints using target")
+ @wttest.skip_for_hook("timestamp", "strange interaction with timestamps and named checkpoints using target")
def test_checkpoint_target(self):
# Create 3 objects, change one record to an easily recognizable string.
uri = self.uri + '1'