diff options
author | Tomi Valkeinen <tomi.valkeinen@iki.fi> | 2015-10-02 21:34:38 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@iki.fi> | 2015-10-03 16:59:19 +0300 |
commit | 777216104ff6e1cd33e95cb5fac49c791fec0903 (patch) | |
tree | 0fd639810ba974f3931366748c688625629097db /libkmstest | |
parent | 2984c032ccef081c350f306c96e3c923126657c8 (diff) |
libkmstest: add FAIL_IF()
Diffstat (limited to 'libkmstest')
-rw-r--r-- | libkmstest/test.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libkmstest/test.h b/libkmstest/test.h index 0913e79..f4cec59 100644 --- a/libkmstest/test.h +++ b/libkmstest/test.h @@ -4,6 +4,8 @@ #include "conv.h" #include "testpat.h" +#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) + #define unlikely(x) __builtin_expect(!!(x), 0) static void ASSERT_FAIL(const char *cond, const char *file, @@ -18,4 +20,14 @@ static void ASSERT_FAIL(const char *cond, const char *file, #define ASSERT(x) if (unlikely(!(x))) { ASSERT_FAIL( __STRING(x), __FILE__, __LINE__, __PRETTY_FUNCTION__); } -#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) +static void FAIL_IF_FAIL(const char *txt, const char *file, + unsigned int line, const char *func) __attribute__ ((__noreturn__)); + +static void FAIL_IF_FAIL(const char *txt, const char *file, + unsigned int line, const char *func) +{ + fprintf(stderr, "%s:%d: %s: FAIL: %s\n", file, line, func, txt); + abort(); +} + +#define FAIL_IF(x, y) if (unlikely(x)) { FAIL_IF_FAIL(y, __FILE__, __LINE__, __PRETTY_FUNCTION__); } |