lib/igt_core.h: fix igt_skip_on_f requirement message

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
Thomas Wood 2014-10-29 12:03:22 +00:00
parent 5a61421a02
commit d950f37be3

View File

@ -397,7 +397,7 @@ void igt_exit(void) __attribute__((noreturn));
* information to help debugging test failures.
*/
#define igt_skip_on_f(expr, f...) do { \
if ((expr)) igt_skip_check(#expr , f); \
if ((expr)) igt_skip_check("!("#expr")", f); \
} while (0)
/* fork support code */