diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-19 10:56:23 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-12-19 10:56:23 +0100 |
commit | 914df18bf93369d279fff85f87c4ac8524f32540 (patch) | |
tree | b73edeeb37923be1c124e608423ad3b5da068958 /test/TestIcu.cxx | |
parent | a539094c06114a6be862e219bfc03d6a3513d80b (diff) |
Main, ...: catch any exception, not just std::runtime_error
Diffstat (limited to 'test/TestIcu.cxx')
-rw-r--r-- | test/TestIcu.cxx | 4 |
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 (...) { } } |