diff options
3 files changed, 1 insertions, 7 deletions
diff --git a/buildscripts/resmokeconfig/suites/multiversion.yml b/buildscripts/resmokeconfig/suites/multiversion.yml index 1627db46df1..88efab7d5a2 100644 --- a/buildscripts/resmokeconfig/suites/multiversion.yml +++ b/buildscripts/resmokeconfig/suites/multiversion.yml @@ -18,9 +18,6 @@ selector: # it attempts to connect to an upgraded mongoD. Un-blacklist when SERVER-42919 fixes this issue. - jstests/multiVersion/genericSetFCVUsage/crash_mongos_against_upgraded_cluster.js - # Disable incompatible with json logging per SERVER-46235 - - jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js - # Multiversion tests start their own mongod's. executor: config: diff --git a/buildscripts/resmokeconfig/suites/multiversion_auth.yml b/buildscripts/resmokeconfig/suites/multiversion_auth.yml index d419492e07b..df662863282 100644 --- a/buildscripts/resmokeconfig/suites/multiversion_auth.yml +++ b/buildscripts/resmokeconfig/suites/multiversion_auth.yml @@ -23,9 +23,6 @@ selector: # it attempts to connect to an upgraded mongoD. Un-blacklist when SERVER-42919 fixes this issue. - jstests/multiVersion/genericSetFCVUsage/crash_mongos_against_upgraded_cluster.js - # Disable incompatible with json logging per SERVER-46235 - - jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js - # Multiversion tests start their own mongod's. executor: config: diff --git a/jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js b/jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js index 7d40fb7ad38..b7bcf47541a 100644 --- a/jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js +++ b/jstests/multiVersion/genericSetFCVUsage/upgrade_downgrade_while_creating_collection.js @@ -37,7 +37,7 @@ for (let versions of [{from: lastStableFCV, to: latestFCV}, {from: latestFCV, to }, primary.port); assert.soon(function() { - return rawMongoProgramOutput().match("createCollection: test.mycoll"); + return rawMongoProgramOutput().match(/createCollection.*test.mycoll/); }); awaitUpgradeFCV = startParallelShell( |