summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-02-13 19:22:53 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-02-13 19:22:53 +0100
commit959783684e2010326d91db2aa55f424f7e041c84 (patch)
treef38d10975e0014800d2801b8b29e2a9b55a8461d /tests
parentcef9b31a2415f59899c2d7a9fc895aa7b66d3230 (diff)
test/kms_flip: fix up igt logging conversion
Silly me ... Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests')
-rw-r--r--tests/kms_flip.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 6b448be1..d8f64045 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -862,7 +862,7 @@ static unsigned int run_test_step(struct test_output *o)
if (o->flags & TEST_DPMS)
set_dpms(o, DRM_MODE_DPMS_ON);
- igt_log("."); fflush(stdout);
+ igt_info("."); fflush(stdout);
if (do_flip && (o->flags & TEST_HANG)) {
handle = gem_create(drm_fd, 4096);
@@ -1218,7 +1218,7 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
last_connector = o->kconnector[0];
- igt_log("Beginning %s\n", test_name);
+ igt_info("Beginning %s\n", test_name);
if (o->flags & TEST_PAN)
o->fb_width *= 2;
@@ -1284,7 +1284,7 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
if (o->flags & TEST_VBLANK)
check_final_state(o, &o->vblank_state, elapsed);
- igt_log("\n%s: PASSED\n\n", test_name);
+ igt_info("\n%s: PASSED\n\n", test_name);
out:
kmstest_remove_fb(drm_fd, &o->fb_info[2]);
@@ -1429,8 +1429,8 @@ static void get_timestamp_format(void)
ret = drmGetCap(drm_fd, DRM_CAP_TIMESTAMP_MONOTONIC, &cap_mono);
igt_assert(ret == 0 || errno == EINVAL);
monotonic_timestamp = ret == 0 && cap_mono == 1;
- igt_log("Using %s timestamps\n",
- monotonic_timestamp ? "monotonic" : "real");
+ igt_info("Using %s timestamps\n",
+ monotonic_timestamp ? "monotonic" : "real");
}
static void kms_flip_exit_handler(int sig)