From 6a844b1d85be2804e1cbf6771f4249f5172b08c7 Mon Sep 17 00:00:00 2001 From: mmentovai Date: Mon, 2 Jul 2007 19:41:05 +0000 Subject: Allow finer control over installed handler types (#193). r=ted.mielczarek http://groups.google.com/group/google-breakpad-dev/browse_thread/thread/992a1bb09dc58a32 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@193 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/processor/testdata/test_app.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/processor') diff --git a/src/processor/testdata/test_app.cc b/src/processor/testdata/test_app.cc index 0d2a3394..e2b9c3a9 100644 --- a/src/processor/testdata/test_app.cc +++ b/src/processor/testdata/test_app.cc @@ -61,7 +61,9 @@ static void CrashFunction() { } // namespace int main(int argc, char **argv) { - google_breakpad::ExceptionHandler eh(L".", NULL, callback, NULL, true); + google_breakpad::ExceptionHandler eh( + L".", NULL, callback, NULL, + google_breakpad::ExceptionHandler::HANDLER_ALL); CrashFunction(); printf("did not crash?\n"); return 0; -- cgit v1.2.1