summaryrefslogtreecommitdiff
path: root/lib/igt_core.h
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2014-10-29 12:03:22 +0000
committerThomas Wood <thomas.wood@intel.com>2014-10-31 14:10:26 +0000
commitd950f37be32a2bcf1a3da867bed3f9f397fb912d (patch)
tree3c2e3997507984551b8642509eb0aa7eb8b08c97 /lib/igt_core.h
parent5a61421a02fe40a1dcf9f8575d5a5c136da3fdd4 (diff)
lib/igt_core.h: fix igt_skip_on_f requirement message
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'lib/igt_core.h')
-rw-r--r--lib/igt_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/igt_core.h b/lib/igt_core.h
index b8f67023..5318c5e9 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -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 */