diff options
-rw-r--r-- | lib/drmtest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/drmtest.h b/lib/drmtest.h index 663e309a..f55825e7 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -186,7 +186,8 @@ void igt_exit(void) __attribute__((noreturn)); * This is useful to streamline the skip logic since it allows for a more flat * code control flow. */ -#define igt_require(expr) do { if (!(expr)) __igt_skip_check(__FILE__, __LINE__, __func__, #expr ); } while (0) +#define igt_require(expr) igt_skip_on(!(expr)) +#define igt_skip_on(expr) do { if ((expr)) __igt_skip_check(__FILE__, __LINE__, __func__, #expr ); } while (0) bool __igt_fixture(void); void __igt_fixture_complete(void); |