summaryrefslogtreecommitdiff
path: root/src/mongo/unittest/unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/unittest/unittest.h')
-rw-r--r--src/mongo/unittest/unittest.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mongo/unittest/unittest.h b/src/mongo/unittest/unittest.h
index 514a8e7d8d9..2b28667c3dc 100644
--- a/src/mongo/unittest/unittest.h
+++ b/src/mongo/unittest/unittest.h
@@ -928,19 +928,4 @@ T assertGet(StatusWith<T>&& swt) {
*/
std::vector<std::string> getAllSuiteNames();
-/** Invocation info (used e.g. by death test to exec). */
-struct SpawnInfo {
- /** Copy of the original `argv` from main. */
- std::vector<std::string> argVec;
- /** If nonempty, this process is a death test respawn. */
- std::string internalRunDeathTest;
- /**
- * A unit test main has to turn this on to indicate that it can be brought to
- * the death test from a fresh exec with `--suite` and `--filter` options.
- * Otherwise death tests simply fork. See death_test.cpp.
- */
- bool deathTestExecAllowed = false;
-};
-SpawnInfo& getSpawnInfo();
-
} // namespace mongo::unittest