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
 
                if (signal_pending(current))
                        return -EINTR;
 
-               pr_debug(DRIVER_NAME ": Running %s\n", st->name);
+               pr_info(DRIVER_NAME ": Running %s\n", st->name);
                if (data)
                        err = st->live(data);
                else
                if (!apply_subtest_filter(caller, st->name))
                        continue;
 
-               pr_debug(DRIVER_NAME ": Running %s/%s\n", caller, st->name);
+               pr_info(DRIVER_NAME ": Running %s/%s\n", caller, st->name);
                GEM_TRACE("Running %s/%s\n", caller, st->name);
 
                err = st->func(data);