From fe8373d4376817de93d9bfc278005f2c67dcba50 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 8 Jul 2014 18:48:35 +0100 Subject: [PATCH] kms_rotation_crc: Remove the sleep(2) One can inspect the output of the igt_kms API by setting IGT_DISPLAY_WAIT_AT_COMMIT=1. Signed-off-by: Damien Lespiau --- tests/kms_rotation_crc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index 5b195f95..701fa702 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -152,7 +152,6 @@ static void test_plane_rotation(data_t *data, enum igt_plane plane) for_each_pipe(display, pipe) { if (!prepare_crtc(data, output, pipe)) continue; - sleep(2); data->plane = igt_output_get_plane(output, plane); @@ -164,7 +163,6 @@ static void test_plane_rotation(data_t *data, enum igt_plane plane) igt_pipe_crc_collect_crc(data->pipe_crc, &crc_output); igt_assert(igt_crc_equal(&data->ref_crc, &crc_output)); - sleep(2); valid_tests++; cleanup_crtc(data, output); }