X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_xmlutil.cpp;fp=src%2Ftest_xmlutil.cpp;h=ae9b57198ab2d63f280174474e0ba617d54e2d54;hb=85078c9292325d8c0c36007d68becf986bfc97c4;hp=13065a1cde3fc6105a6f0ce243e7a027ca730823;hpb=f361b19c06d801535a66ed1cd77b75e496b85426;p=metaproxy-moved-to-github.git diff --git a/src/test_xmlutil.cpp b/src/test_xmlutil.cpp index 13065a1..ae9b571 100644 --- a/src/test_xmlutil.cpp +++ b/src/test_xmlutil.cpp @@ -99,8 +99,13 @@ BOOST_AUTO_TEST_CASE( url_recipe ) xmlFreeDoc(doc); } } + catch ( std::runtime_error &e) { + std::cout << "std::runtime error: " << e.what() << std::endl; + BOOST_CHECK(false); + } catch ( ... ) { - BOOST_CHECK (false); + std::cout << "unknown exception" << std::endl; + BOOST_CHECK(false); } }