Index: chrome_frame/test_utils.cc |
diff --git a/chrome_frame/test_utils.cc b/chrome_frame/test_utils.cc |
index 4aca8e7d2df82795bba15cf6cfd5507266199c22..596b43be3ff391e776a197f69baa83bbdb705823 100644 |
--- a/chrome_frame/test_utils.cc |
+++ b/chrome_frame/test_utils.cc |
@@ -123,10 +123,11 @@ void ScopedChromeFrameRegistrar::DoRegistration( |
} |
if (exit_code != 0) { |
if (registration_operation == REGISTER) { |
- LOG(FATAL) |
+ LOG(ERROR) |
<< "DLL registration failed (exit code: 0x" << std::hex << exit_code |
<< ", command: " << registration_command |
<< "). Make sure you are running as Admin."; |
+ ::ExitProcess(1); |
} else { |
LOG(WARNING) |
<< "DLL unregistration failed (exit code: 0x" << std::hex << exit_code |