summaryrefslogtreecommitdiff
path: root/test/run_filter.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-07-17 21:56:43 +0200
committerMax Kellermann <max@musicpd.org>2018-07-17 21:58:39 +0200
commitd6529d8c6005e42c69a9402b31ddcd9f4be4cfa6 (patch)
treeb98690cc13e49bff6a58b0e5a754e17ac056e9b8 /test/run_filter.cxx
parentedb44a536a726e6889f02ee26fb393432152ae7b (diff)
test/*: catch and print all exceptions
Diffstat (limited to 'test/run_filter.cxx')
-rw-r--r--test/run_filter.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/run_filter.cxx b/test/run_filter.cxx
index d81342069..8cd144c8e 100644
--- a/test/run_filter.cxx
+++ b/test/run_filter.cxx
@@ -31,8 +31,7 @@
#include "util/ConstBuffer.hxx"
#include "util/StringBuffer.hxx"
#include "util/RuntimeError.hxx"
-#include "system/FatalError.hxx"
-#include "Log.hxx"
+#include "util/PrintException.hxx"
#include <memory>
#include <stdexcept>
@@ -122,7 +121,7 @@ try {
config_global_finish();
return EXIT_SUCCESS;
-} catch (const std::exception &e) {
- LogError(e);
+} catch (...) {
+ PrintException(std::current_exception());
return EXIT_FAILURE;
}