From 13b91b55f4e2d28a10d6c2d39bc79cf47d592e3b Mon Sep 17 00:00:00 2001 From: Ian Whalen Date: Mon, 26 Feb 2018 17:17:38 -0500 Subject: SERVER-32831 Blacklist change_stream_chunk_migration.js for LSM buildvariant --- jstests/sharding/change_stream_chunk_migration.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jstests/sharding/change_stream_chunk_migration.js b/jstests/sharding/change_stream_chunk_migration.js index 207c8ab0dee..e5eaa0460fc 100644 --- a/jstests/sharding/change_stream_chunk_migration.js +++ b/jstests/sharding/change_stream_chunk_migration.js @@ -11,6 +11,12 @@ return; } + // TODO WT-3864: Re-enable test for LSM once transaction visibility bug in LSM is resolved. + if (jsTest.options().wiredTigerCollectionConfigString === "type=lsm") { + jsTestLog("Skipping test because we're running with WiredTiger's LSM tree."); + return; + } + const rsNodeOptions = { // Use a higher frequency for periodic noops to speed up the test. setParameter: {periodicNoopIntervalSecs: 1, writePeriodicNoops: true} -- cgit v1.2.1