summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJudah Schvimer <judah.schvimer@10gen.com>2019-10-21 15:16:10 +0000
committerevergreen <evergreen@mongodb.com>2019-10-21 15:16:10 +0000
commitce3261545db4767f18e390c50d59c6530e948655 (patch)
tree966cbb326847f3ff3721d374d3b0fdbc5e393efd
parent713f6dd0dd90a000cb624c8d10ed2dfbdcd15772 (diff)
downloadmongo-ce3261545db4767f18e390c50d59c6530e948655.tar.gz
SERVER-43974 blacklist crud_ops_do_not_throw_locktimeout.js from parallel suites
-rw-r--r--jstests/libs/parallelTester.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/jstests/libs/parallelTester.js b/jstests/libs/parallelTester.js
index 83d2878b68c..84c1a08cdad 100644
--- a/jstests/libs/parallelTester.js
+++ b/jstests/libs/parallelTester.js
@@ -208,6 +208,10 @@ if (typeof _threadInject != "undefined") {
// This test works close to the BSON document limit for entries in the durable catalog,
// so running it in parallel with other tests will cause failures.
"long_collection_names.js",
+
+ // This test causes collMod commands to hang, which interferes with other tests running
+ // collMod.
+ "crud_ops_do_not_throw_locktimeout.js",
]);
// The following tests cannot run when shell readMode is legacy.