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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/config.py b/buildscripts/resmokelib/config.py
index b3ff831669a..91d44bd0ad1 100644
--- a/buildscripts/resmokelib/config.py
+++ b/buildscripts/resmokelib/config.py
@@ -50,6 +50,7 @@ DEFAULTS = {
"nojournal": False,
"numClientsPerFixture": 1,
"repeat": 1,
+ "reportFailureStatus": "fail",
"reportFile": None,
"seed": long(time.time() * 256), # Taken from random.py code in Python 2.7.
"shellReadMode": None,
@@ -133,6 +134,9 @@ RANDOM_SEED = None
# If set, then each suite is repeated the specified number of times.
REPEAT = None
+# Controls if the test failure status should be reported as failed or be silently ignored.
+REPORT_FAILURE_STATUS = None
+
# If set, then resmoke.py will write out a report file with the status of each test that ran.
REPORT_FILE = None