summaryrefslogtreecommitdiff
path: root/lib/igt_core.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-09-06 12:21:25 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-09-06 12:45:44 +0100
commitfb9c9e3adcc18b137b8931bc4f6fb05ca4d19863 (patch)
treeaea80c9c87e8973802f744db0a7d3db61106dd58 /lib/igt_core.h
parent9df77d566409fcef90c7ea63bb6d3df8d8c76dde (diff)
core: Prettify igt_require_f output
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_core.h')
-rw-r--r--lib/igt_core.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/igt_core.h b/lib/igt_core.h
index b4eb724f..d74cbf9d 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -198,6 +198,8 @@ __attribute__((format(printf, 5, 6)))
void __igt_skip_check(const char *file, const int line,
const char *func, const char *check,
const char *format, ...) __attribute__((noreturn));
+#define igt_skip_check(E, F...) \
+ __igt_skip_check(__FILE__, __LINE__, __func__, E, F);
void igt_success(void);
void igt_fail(int exitcode) __attribute__((noreturn));
@@ -343,10 +345,9 @@ void igt_exit(void) __attribute__((noreturn));
* skipping. This is useful to streamline the skip logic since it allows for a more flat
* code control flow, similar to igt_assert()
*/
-#define igt_require(expr) \
- do { if (!(expr)) \
- __igt_skip_check(__FILE__, __LINE__, __func__, #expr , NULL); \
- } while (0)
+#define igt_require(expr) do { \
+ if (!(expr)) igt_skip_check(#expr , NULL); \
+} while (0)
/**
* igt_skip_on:
@@ -358,10 +359,9 @@ void igt_exit(void) __attribute__((noreturn));
* skipping. This is useful to streamline the skip logic since it allows for a more flat
* code control flow, similar to igt_assert()
*/
-#define igt_skip_on(expr) \
- do { if ((expr)) \
- __igt_skip_check(__FILE__, __LINE__, __func__, "!(" #expr ")" , NULL); \
- } while (0)
+#define igt_skip_on(expr) do { \
+ if ((expr)) igt_skip_check("!(" #expr ")" , NULL); \
+} while (0)
/**
* igt_require_f:
@@ -377,7 +377,9 @@ void igt_exit(void) __attribute__((noreturn));
* In addition to the plain igt_require() helper this allows to print additional
* information to help debugging test failures.
*/
-#define igt_require_f(expr, f...) igt_skip_on_f(!(expr), f)
+#define igt_require_f(expr, f...) do { \
+ if (!(expr)) igt_skip_check(#expr , f); \
+} while (0)
/**
* igt_skip_on_f:
@@ -393,10 +395,9 @@ void igt_exit(void) __attribute__((noreturn));
* In addition to the plain igt_skip_on() helper this allows to print additional
* information to help debugging test failures.
*/
-#define igt_skip_on_f(expr, f...) \
- do { if ((expr)) \
- __igt_skip_check(__FILE__, __LINE__, __func__, #expr , f); \
- } while (0)
+#define igt_skip_on_f(expr, f...) do { \
+ if ((expr)) igt_skip_check(#expr , f); \
+} while (0)
/* fork support code */
bool __igt_fork(void);