core: Improve phrasing for test requirements

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson
2014-07-25 14:28:51 +01:00
parent 72b1263649
commit e0dffbdeda
2 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -648,12 +648,12 @@ void __igt_skip_check(const char *file, const int line,
va_end(args);
igt_skip("Test requirement not met in function %s, file %s:%i:\n"
"Test requirement: (%s)\n%s"
"Test requirement: %s\n%s"
"%s",
func, file, line, check, buf, err_str ?: "");
} else {
igt_skip("Test requirement not met in function %s, file %s:%i:\n"
"Test requirement: (%s)\n"
"Test requirement: %s\n"
"%s",
func, file, line, check, err_str ?: "");
}