summaryrefslogtreecommitdiff
path: root/test/TestIcu.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-12-19 10:56:23 +0100
committerMax Kellermann <max@musicpd.org>2017-12-19 10:56:23 +0100
commit914df18bf93369d279fff85f87c4ac8524f32540 (patch)
treeb73edeeb37923be1c124e608423ad3b5da068958 /test/TestIcu.cxx
parenta539094c06114a6be862e219bfc03d6a3513d80b (diff)
Main, ...: catch any exception, not just std::runtime_error
Diffstat (limited to 'test/TestIcu.cxx')
-rw-r--r--test/TestIcu.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TestIcu.cxx b/test/TestIcu.cxx
index 4c9798d40..33de1fc6c 100644
--- a/test/TestIcu.cxx
+++ b/test/TestIcu.cxx
@@ -43,7 +43,7 @@ public:
try {
IcuConverter::Create("doesntexist");
CPPUNIT_FAIL("Exception expected");
- } catch (const std::runtime_error &) {
+ } catch (...) {
}
}
@@ -56,7 +56,7 @@ public:
try {
auto f = converter->FromUTF8(i);
CPPUNIT_FAIL("Exception expected");
- } catch (const std::runtime_error &) {
+ } catch (...) {
}
}