File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,6 @@ namespace mongo {
72
72
73
73
log () << " warning assertion failure " << expr << ' ' << file << ' ' << dec << line << endl;
74
74
logContext ();
75
- #if defined(MONGO_DEBUG_BUILD)
76
- // this is so we notice in buildbot
77
- log () << " \n\n ***aborting after wassert() failure in a debug/test build\n\n " << endl;
78
- abort ();
79
- #endif
80
75
}
81
76
82
77
NOINLINE_DECL void verifyFailed (const char *expr, const char *file, unsigned line) {
@@ -85,11 +80,6 @@ namespace mongo {
85
80
stringstream temp;
86
81
temp << " assertion " << file << " :" << line;
87
82
AssertionException e (temp.str (),0 );
88
- #if defined(_DEBUG)
89
- // this is so we notice in buildbot
90
- log () << " \n\n ***aborting after verify() failure as this is a debug/test build\n\n " << endl;
91
- abort ();
92
- #endif
93
83
throw e;
94
84
}
95
85
You can’t perform that action at this time.
0 commit comments