diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-08-14 22:13:38 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-08-14 22:13:38 +0200 |
commit | f2198896087b160bdc13eb8cf9b2dd54e79d52da (patch) | |
tree | 3f816d66bb295fdfe811ae944b65905030dee88f | |
parent | ec834c995f96a9e2feb3a36cca5887c16c87dfc1 (diff) |
lib/drmtest: fix subtest output when skipping all tests
(null) isn't too nice ...
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | lib/drmtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c index 6e72c447..e05dda19 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -725,7 +725,7 @@ bool __igt_run_subtest(const char *subtest_name) } if (skip_subtests_henceforth) { - printf("Subtest %s: SKIP\n", in_subtest); + printf("Subtest %s: SKIP\n", subtest_name); return false; } |