diff --git a/buildscripts/resmokeconfig/suites/core.yml b/buildscripts/resmokeconfig/suites/core.yml
|
index ae4b60dc3e..c336731195 100644
|
--- a/buildscripts/resmokeconfig/suites/core.yml
|
+++ b/buildscripts/resmokeconfig/suites/core.yml
|
@@ -8,7 +8,9 @@ executor:
|
config:
|
shell_options:
|
readMode: commands
|
- eval: load("jstests/libs/override_methods/detect_spawning_own_mongod.js");
|
+ eval: >-
|
+ load("jstests/libs/override_methods/detect_spawning_own_mongod.js");
|
+ throw new Error("Intentionally thrown");
|
hooks:
|
- class: ValidateCollections
|
shell_options:
|
diff --git a/etc/test_lifecycle.yml b/etc/test_lifecycle.yml
|
index 6a5146c6a0..edb996ca3d 100644
|
--- a/etc/test_lifecycle.yml
|
+++ b/etc/test_lifecycle.yml
|
@@ -1,4 +1,7 @@
|
# This file is used to tag JS tests that run under resmoke.py.
|
# The content of this file lives in the https://github.com/mongodb/mongo-test-metadata repository.
|
# It is fetched automatically as part of the compile task.
|
-selector: {}
|
+selector:
|
+ js_test:
|
+ jstests/core/all.js:
|
+ - unreliable
|