diff options
author | Judah Schvimer <judah.schvimer@10gen.com> | 2019-10-21 15:16:10 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-10-21 15:16:10 +0000 |
commit | ce3261545db4767f18e390c50d59c6530e948655 (patch) | |
tree | 966cbb326847f3ff3721d374d3b0fdbc5e393efd /jstests/libs/parallelTester.js | |
parent | 713f6dd0dd90a000cb624c8d10ed2dfbdcd15772 (diff) | |
download | mongo-ce3261545db4767f18e390c50d59c6530e948655.tar.gz |
SERVER-43974 blacklist crud_ops_do_not_throw_locktimeout.js from parallel suites
Diffstat (limited to 'jstests/libs/parallelTester.js')
-rw-r--r-- | jstests/libs/parallelTester.js | 4 |
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. |