summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/config.py')
-rw-r--r--buildscripts/resmokelib/config.py83
1 files changed, 42 insertions, 41 deletions
diff --git a/buildscripts/resmokelib/config.py b/buildscripts/resmokelib/config.py
index 99841a84c8e..29398c2bfcf 100644
--- a/buildscripts/resmokelib/config.py
+++ b/buildscripts/resmokelib/config.py
@@ -35,51 +35,52 @@ MONGO_RUNNER_SUBDIR = "mongorunner"
# Names below correspond to how they are specified via the command line or in the options YAML file.
DEFAULTS = {
- "archiveFile": None,
- "archiveLimitMb": 5000,
- "archiveLimitTests": 10,
- "basePort": 20000,
- "buildloggerUrl": "https://logkeeper.mongodb.org",
- "continueOnFailure": False,
- "dbpathPrefix": None,
- "dbtest": None,
- "distroId": None,
- "dryRun": None,
- "excludeWithAnyTags": None,
- "executionNumber": 0,
- "gitRevision": None,
- "includeWithAnyTags": None,
+ "archive_file": None,
+ "archive_limit_mb": 5000,
+ "archive_limit_tests": 10,
+ "base_port": 20000,
+ "buildlogger_url": "https://logkeeper.mongodb.org",
+ "continue_on_failure": False,
+ "dbpath_prefix": None,
+ "dbtest_executable": None,
+ "distro_id": None,
+ "dry_run": None,
+ "exclude_with_any_tags": None,
+ "execution_number": 0,
+ "git_revision": None,
+ "include_with_any_tags": None,
"jobs": 1,
- "mongo": None,
- "mongod": None,
- "mongodSetParameters": None,
- "mongos": None,
- "mongosSetParameters": None,
- "nojournal": False,
- "numClientsPerFixture": 1,
- "shellPort": None,
- "shellConnString": None,
- "patchBuild": False,
- "projectName": "mongodb-mongo-master",
+ "mongo_executable": None,
+ "mongod_executable": None,
+ "mongod_set_parameters": None,
+ "mongos_executable": None,
+ "mongos_set_parameters": None,
+ "no_journal": False,
+ "num_clients_per_fixture": 1,
+ "patch_build": False,
+ "prealloc_journal": None, # Default is set on the commandline.
+ "project_name": "mongodb-mongo-master",
"repeat": 1,
- "reportFailureStatus": "fail",
- "reportFile": None,
+ "report_failure_status": "fail",
+ "report_file": None,
"seed": long(time.time() * 256), # Taken from random.py code in Python 2.7.
- "serviceExecutor": None,
- "shellReadMode": None,
- "shellWriteMode": None,
+ "service_executor": None,
+ "shell_conn_string": None,
+ "shell_port": None,
+ "shell_read_mode": None,
+ "shell_write_mode": None,
"shuffle": None,
- "staggerJobs": None,
- "storageEngine": None,
- "storageEngineCacheSizeGB": None,
- "tagFile": None,
- "taskId": None,
- "taskName": None,
- "transportLayer": None,
- "variantName": None,
- "wiredTigerCollectionConfigString": None,
- "wiredTigerEngineConfigString": None,
- "wiredTigerIndexConfigString": None
+ "stagger_jobs": None,
+ "storage_engine": None,
+ "storage_engine_cache_size_gb": None,
+ "tag_file": None,
+ "task_id": None,
+ "task_name": None,
+ "transport_layer": None,
+ "variant_name": None,
+ "wt_coll_config": None,
+ "wt_engine_config": None,
+ "wt_index_config": None
}