docs: add a glossary of test name terms

Add a glossary of test name terms based on the details in
tests/NAMING-CONVENTION.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
Thomas Wood
2014-11-19 15:44:00 +00:00
parent bc6dc7efdb
commit a5425a101c
3 changed files with 115 additions and 15 deletions
+1 -13
View File
@@ -1433,20 +1433,8 @@ void igt_log(enum igt_log_level level, const char *format, ...)
{
va_list args;
assert(format);
if (list_subtests)
return;
if (igt_log_level > level)
return;
va_start(args, format);
if (level == IGT_LOG_WARN) {
fflush(stdout);
vfprintf(stderr, format, args);
} else
vprintf(format, args);
igt_vlog(level, format, args);
va_end(args);
}