From 009828beac9bfe9c36d336a4de0d297f90aece52 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 28 Sep 2015 01:13:34 +0300 Subject: Initial version --- test.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test.h (limited to 'test.h') diff --git a/test.h b/test.h new file mode 100644 index 0000000..090ff38 --- /dev/null +++ b/test.h @@ -0,0 +1,15 @@ +#pragma once + +#define unlikely(x) __builtin_expect(!!(x), 0) + +static void ASSERT_FAIL(const char *cond, const char *file, + unsigned int line, const char *func) __attribute__ ((__noreturn__)); + +static void ASSERT_FAIL(const char *cond, const char *file, + unsigned int line, const char *func) +{ + fprintf(stderr, "%s:%d: %s: ASSERT(%s) failed\n", file, line, func, cond); + abort(); +} + +#define ASSERT(x) if (unlikely(!(x))) { ASSERT_FAIL( __STRING(x), __FILE__, __LINE__, __PRETTY_FUNCTION__); } -- cgit v1.2.3