X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Ffatal.hpp;h=77050e517b4842a2fe445e129a54a5b6d3463995;hb=20671681ff4e13ed84be72b699f71a90337245cd;hp=b64b3606e8da253770e183ba6efce2d9566be054;hpb=1d6aaf09ebb2aafad07307f736d7bab6fdb79d2c;p=m6w6%2Flibmemcached diff --git a/libtest/fatal.hpp b/libtest/fatal.hpp index b64b3606..77050e51 100644 --- a/libtest/fatal.hpp +++ b/libtest/fatal.hpp @@ -43,8 +43,8 @@ public: // The following are just for unittesting the exception class static bool is_disabled(); - static bool disable(); - static bool enable(); + static void disable(); + static void enable(); static uint32_t disabled_counter(); static void increment_disabled_counter(); @@ -55,4 +55,5 @@ private: } // namespace libtest -#define fatal_message(__mesg) libtest::fatal(LIBYATL_DEFAULT_PARAM, __mesg) +#define fatal_message(__mesg) throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s", __mesg) +#define fatal_assert(__assert) if((__assert)) {} else { throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s", #__assert); }