Skip to content

Commit

Permalink
WT-8419 Disable test_inmem01.test_insert_over_delete_replace for FLCS (
Browse files Browse the repository at this point in the history
…#7208)

Disable test_inmem01.test_insert_over_delete_replace for FLCS.
  • Loading branch information
sauclovian-wt committed Nov 17, 2021
1 parent 195a8af commit f392752
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/suite/test_inmem01.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,13 @@ def test_insert_over_delete_replace(self):
# Note that with 141676 rows there are several retries in the bottom loop, so things are
# working as designed and the desired scenario is being tested.

if self.valuefmt == '8t' and last_key >= 141677:
self.skipTest('Load too high; test will get stuck')
# While I'm pretty sure the above analysis is sound, the threshold is not as portable as
# I'd hoped, so just skip the test entirely until someone has the patience to track down
# a suitable threshold value for the test environment.
#if self.valuefmt == '8t' and last_key >= 141677:
# self.skipTest('Load too high; test will get stuck')
if self.valuefmt == '8t':
self.skipTest('Gets stuck and fails sometimes under load')

# Now that the database contains as much data as will fit into
# the configured cache, verify removes succeed.
Expand Down

0 comments on commit f392752

Please sign in to comment.