summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib
diff options
context:
space:
mode:
authorJason Chan <jason.chan@mongodb.com>2023-04-04 20:05:32 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-04-04 22:30:36 +0000
commit8f27a596df0b2be9a44a8fff6b9bf1985937e25b (patch)
tree61c46d888c96ea0cda66f1085449e3083d557912 /buildscripts/resmokelib
parent6ea782c29dcabe233bf84f92ba0fb190d390b606 (diff)
downloadmongo-8f27a596df0b2be9a44a8fff6b9bf1985937e25b.tar.gz
SERVER-73943 Pin program code segments in memory on startup
Diffstat (limited to 'buildscripts/resmokelib')
-rw-r--r--buildscripts/resmokelib/mongod_fuzzer_configs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/mongod_fuzzer_configs.py b/buildscripts/resmokelib/mongod_fuzzer_configs.py
index c980e33424c..be00b89931d 100644
--- a/buildscripts/resmokelib/mongod_fuzzer_configs.py
+++ b/buildscripts/resmokelib/mongod_fuzzer_configs.py
@@ -127,6 +127,8 @@ def generate_independent_parameters(rng, mode):
ret["storeFindAndModifyImagesInSideCollection"] = True
ret["syncdelay"] = rng.choice([60, rng.randint(15, 180)])
ret["minSnapshotHistoryWindowInSeconds"] = rng.choice([300, rng.randint(5, 600)])
+ # TODO (SERVER-75632): Uncomment this to enable passthrough testing.
+ # ret["lockCodeSegmentsInMemory"] = rng.choice([True, False])
return ret