Index: chrome/plugin/plugin_main.cc |
=================================================================== |
--- chrome/plugin/plugin_main.cc (revision 72011) |
+++ chrome/plugin/plugin_main.cc (working copy) |
@@ -149,8 +149,10 @@ |
BOOL result = run_security_tests(&test_count); |
DCHECK(result) << "Test number " << test_count << " has failed."; |
// If we are in release mode, crash or debug the process. |
- if (!result) |
+ if (!result) { |
__debugbreak(); |
+ _exit(1); |
+ } |
} |
FreeLibrary(sandbox_test_module); |