Skip to content

Commit b218a80

Browse files
mwiniarstursulin
authored andcommitted
drm/i915/selftests: Upgrade printing test/subtest name to pr_info
We're using pr_debug for things that we don't really want to see in the CI log, but we may find useful during test development. Let's upgrade the test name printer - we do want to see those in CI log. Signed-off-by: Michał Winiarski <michal.winiarski@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190305144717.10000-1-michal.winiarski@intel.com
1 parent 161996a commit b218a80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/i915/selftests/i915_selftest.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ static int __run_selftests(const char *name,
133133
if (signal_pending(current))
134134
return -EINTR;
135135

136-
pr_debug(DRIVER_NAME ": Running %s\n", st->name);
136+
pr_info(DRIVER_NAME ": Running %s\n", st->name);
137137
if (data)
138138
err = st->live(data);
139139
else
@@ -255,7 +255,7 @@ int __i915_subtests(const char *caller,
255255
if (!apply_subtest_filter(caller, st->name))
256256
continue;
257257

258-
pr_debug(DRIVER_NAME ": Running %s/%s\n", caller, st->name);
258+
pr_info(DRIVER_NAME ": Running %s/%s\n", caller, st->name);
259259
GEM_TRACE("Running %s/%s\n", caller, st->name);
260260

261261
err = st->func(data);

0 commit comments

Comments
 (0)