diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-08-23 19:58:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-23 19:59:58 +0100 |
commit | 63cbf8fb02c3c53acc31c56a79c3f39e02c92f7b (patch) | |
tree | 2f3e6242bac92258ab324800bdbbd118467d1ff3 /vcl/workben | |
parent | e903601e636bcec8bdb7d1a4acb4bab27bf87533 (diff) |
fail on exception
Change-Id: Ib48c6b05b7002db19e47d07fcfc0241468452190
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/fftester.cxx | 8 |
1 files 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); |