Index: base/run_all_unittests.cc |
=================================================================== |
--- base/run_all_unittests.cc (revision 2361) |
+++ base/run_all_unittests.cc (working copy) |
@@ -2,9 +2,10 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "base/process_util.h" |
#include "base/test_suite.h" |
int main(int argc, char** argv) { |
+ process_util::EnableTerminationOnHeapCorruption(); |
return TestSuite(argc, argv).Run(); |
} |
- |