summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorJosef Ahmad <josef.ahmad@mongodb.com>2022-03-24 16:07:41 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-24 18:58:47 +0000
commit16227df086c840630ded6e4304fd25c04b7fac6b (patch)
treed5220bc4c091773de111ed8bf97178fa857640d9 /buildscripts
parent7671b3cca3c5fb1024b8affcafe92c9dfed37280 (diff)
downloadmongo-16227df086c840630ded6e4304fd25c04b7fac6b.tar.gz
SERVER-63047 Make delete batches fully transactional
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/resmokeconfig/suites/cst_jscore_passthrough.yml1
-rw-r--r--buildscripts/resmokelib/testing/fixtures/standalone.py5
2 files changed, 6 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/cst_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/cst_jscore_passthrough.yml
index 66614e15afb..ac000fef42d 100755
--- a/buildscripts/resmokeconfig/suites/cst_jscore_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/cst_jscore_passthrough.yml
@@ -73,6 +73,7 @@ selector:
- jstests/core/bench_test2.js
- jstests/core/bindata_eq.js
- jstests/core/bindata_indexonly.js
+ - jstests/core/batched_multi_deletes.js
- jstests/core/capped_update.js
- jstests/core/collation.js
- jstests/core/collation_find_and_modify.js
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py
index b6375141305..394c025d510 100644
--- a/buildscripts/resmokelib/testing/fixtures/standalone.py
+++ b/buildscripts/resmokelib/testing/fixtures/standalone.py
@@ -345,6 +345,11 @@ class MongodLauncher(object):
if "replSet" in mongod_options and "configsvr" in mongod_options:
mongod_options["storageEngine"] = "wiredTiger"
+ # TODO (SERVER-63044): Remove the block below.
+ if executable.endswith("mongod"):
+ if "internalBatchUserMultiDeletesForTest" not in suite_set_parameters:
+ suite_set_parameters["internalBatchUserMultiDeletesForTest"] = 1
+
return self.fixturelib.mongod_program(logger, job_num, executable, process_kwargs,
mongod_options)