From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7F2118920C for ; Tue, 29 Dec 2020 07:46:04 +0000 (UTC) From: Jeevan B Date: Tue, 29 Dec 2020 13:16:04 +0530 Message-Id: <20201229074604.24064-1-jeevan.b@intel.com> MIME-Version: 1.0 Subject: [igt-dev] [PATCH i-g-t v2] tests/kms_rotation_crc: reduce execution time List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" To: igt-dev@lists.freedesktop.org List-ID: Restricting the execution to 2 pipes. Signed-off-by: Jeevan B --- tests/kms_rotation_crc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index ffcc2cc2..07639236 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -409,6 +409,10 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form if (IS_CHERRYVIEW(data->devid) && pipe != PIPE_B) continue; + /* restricting the execution to 2 pipes to reduce execution time*/ + if (pipe > PIPE_B && !data->extended) + break; + igt_output_set_pipe(output, pipe); plane = igt_output_get_plane_type(output, plane_type); -- 2.19.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev