From 63cbf8fb02c3c53acc31c56a79c3f39e02c92f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Sun, 23 Aug 2015 19:58:58 +0100 Subject: [PATCH] fail on exception Change-Id: Ib48c6b05b7002db19e47d07fcfc0241468452190 --- vcl/workben/fftester.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/vcl/workben/fftester.cxx b/vcl/workben/fftester.cxx index b50df80969a6..adf03b9e880f 100644 --- a/vcl/workben/fftester.cxx +++ b/vcl/workben/fftester.cxx @@ -377,13 +377,9 @@ try_again: /* If AFL_PERSISTENT not set or PERSIST_MAX exceeded, exit normally. */ } - catch (const Exception& e) + catch (...) { - SAL_WARN("vcl.app", "Fatal exception: " << e.Message); - } - catch (const std::exception &e) - { - SAL_WARN("vcl.app", "Fatal exception: " << e.what()); + abort(); } _exit(ret);