X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_xmlutil.cpp;h=ae9b57198ab2d63f280174474e0ba617d54e2d54;hb=6e5694249f3031e2d1d09ef4449e446403054d5e;hp=13065a1cde3fc6105a6f0ce243e7a027ca730823;hpb=e5329397729e8959a821c6956f75012372fc0a77;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); } }