diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2020-05-19 08:49:26 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-07-17 15:52:43 +0000 |
commit | 00fbc981646d9e6ebc391f45a31f4070d4466753 (patch) | |
tree | 226e1cdfea70be2b4b71d872350e7fd8b82436a9 /jstests/parallel | |
parent | 9238911d0a46f26419ecdbec4293457b9e1a891d (diff) | |
download | mongo-00fbc981646d9e6ebc391f45a31f4070d4466753.tar.gz |
SERVER-38987 Replace ephemeralForTest storage engine with biggie implementation
ephemeralForTest is now a document level locking engine
unittests instantiate the oplog as it is required with doc-level locking engines
Added a 'incompatible_with_eft' tag for tests that don't work with this engine for different reasons.
Many concurrency suites are disabled due to excessive memory usage
Diffstat (limited to 'jstests/parallel')
-rw-r--r-- | jstests/parallel/basic.js | 3 | ||||
-rw-r--r-- | jstests/parallel/basicPlus.js | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/jstests/parallel/basic.js b/jstests/parallel/basic.js index 8ea755a3307..a90413dd4ba 100644 --- a/jstests/parallel/basic.js +++ b/jstests/parallel/basic.js @@ -1,4 +1,7 @@ // perform basic js tests in parallel +// SERVER-49674: Disabled for ephemeralForTest +// @tags: [incompatible_with_eft] + load('jstests/libs/parallelTester.js'); Random.setRandomSeed(); diff --git a/jstests/parallel/basicPlus.js b/jstests/parallel/basicPlus.js index 44faf5c439b..7ed7cb82747 100644 --- a/jstests/parallel/basicPlus.js +++ b/jstests/parallel/basicPlus.js @@ -1,4 +1,6 @@ // perform basic js tests in parallel & some other tasks as well +// SERVER-49673: Incompatible with ephemeralForTest +// @tags: [incompatible_with_eft] load('jstests/libs/parallelTester.js'); var c = db.jstests_parallel_basicPlus; |