X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fcollection.cc;h=86e7f864a922c4034cf29f32b1495d660be9bcd0;hb=4e7c4a986b51441df4241e94ee39cabe17cd3709;hp=1b4915e13d75ac1802e40a9cd37906b83fb814ad;hpb=ff3501d8602ddcf33b99d203f4ceb017ac411ce6;p=awesomized%2Flibmemcached diff --git a/libtest/collection.cc b/libtest/collection.cc index 1b4915e1..86e7f864 100644 --- a/libtest/collection.cc +++ b/libtest/collection.cc @@ -55,7 +55,7 @@ static test_return_t runner_code(libtest::Framework* frame, } // Special case where check for the testing of the exception // system. - catch (libtest::fatal &e) + catch (const libtest::fatal& e) { if (libtest::fatal::is_disabled()) { @@ -133,7 +133,7 @@ test_return_t Collection::exec() } libtest::cancel_alarm(); } - catch (libtest::fatal &e) + catch (const libtest::fatal& e) { stream::cerr(e.file(), e.line(), e.func()) << e.what(); _failed++; @@ -159,7 +159,7 @@ test_return_t Collection::exec() break; default: - fatal_message("invalid return code"); + FATAL("invalid return code"); } #if 0 @TODO add code here to allow for a collection to define a method to reset to allow tests to continue.