diff options
Diffstat (limited to 'buildscripts/resmokelib/config.py')
-rw-r--r-- | buildscripts/resmokelib/config.py | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/buildscripts/resmokelib/config.py b/buildscripts/resmokelib/config.py index b6429d5498c..f0886877bfc 100644 --- a/buildscripts/resmokelib/config.py +++ b/buildscripts/resmokelib/config.py @@ -26,7 +26,6 @@ MONGO_RUNNER_SUBDIR = "mongorunner" # Default path for where to look for executables. DEFAULT_DBTEST_EXECUTABLE = os.path.join(os.curdir, "dbtest") DEFAULT_MONGO_EXECUTABLE = os.path.join(os.curdir, "mongo") -DEFAULT_MONGOEBENCH_EXECUTABLE = os.path.join(os.curdir, "mongoebench") DEFAULT_MONGOD_EXECUTABLE = os.path.join(os.curdir, "mongod") DEFAULT_MONGOS_EXECUTABLE = os.path.join(os.curdir, "mongos") @@ -43,9 +42,6 @@ DEFAULTS = { "archive_limit_mb": 5000, "archive_limit_tests": 10, "base_port": 20000, - "benchrun_device": "Desktop", - "benchrun_embedded_root": "/data/local/tmp/benchrun_embedded", - "benchrun_report_root": "benchrun_embedded/results", "buildlogger_url": "https://logkeeper.mongodb.org", "continue_on_failure": False, "dbpath_prefix": None, @@ -57,7 +53,6 @@ DEFAULTS = { "mongo_executable": None, "mongod_executable": None, "mongod_set_parameters": None, - "mongoebench_executable": None, "mongos_executable": None, "mongos_set_parameters": None, "no_journal": False, @@ -277,9 +272,6 @@ MONGOD_EXECUTABLE = None # The --setParameter options passed to mongod. MONGOD_SET_PARAMETERS = None -# The path to the mongoebench executable used by resmoke.py. -MONGOEBENCH_EXECUTABLE = None - # The path to the mongos executable used by resmoke.py. MONGOS_EXECUTABLE = None @@ -368,11 +360,6 @@ BENCHMARK_LIST_TESTS = None BENCHMARK_MIN_TIME = None BENCHMARK_REPETITIONS = None -# Embedded Benchrun Test options. -BENCHRUN_DEVICE = None -BENCHRUN_EMBEDDED_ROOT = None -BENCHRUN_REPORT_ROOT = None - ## # Internally used configuration options that aren't exposed to the user ## @@ -394,5 +381,4 @@ DEFAULT_INTEGRATION_TEST_LIST = "build/integration_tests.txt" # External files or executables, used as suite selectors, that are created during the build and # therefore might not be available when creating a test membership map. EXTERNAL_SUITE_SELECTORS = (DEFAULT_BENCHMARK_TEST_LIST, DEFAULT_UNIT_TEST_LIST, - DEFAULT_INTEGRATION_TEST_LIST, DEFAULT_DBTEST_EXECUTABLE, - DEFAULT_MONGOEBENCH_EXECUTABLE) + DEFAULT_INTEGRATION_TEST_LIST, DEFAULT_DBTEST_EXECUTABLE) |