From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTPS id 514B010EB05 for ; Wed, 2 Mar 2022 14:40:05 +0000 (UTC) From: Jeevan B To: igt-dev@lists.freedesktop.org Date: Wed, 2 Mar 2022 20:09:20 +0530 Message-Id: <20220302143923.26498-8-jeevan.b@intel.com> In-Reply-To: <20220302143923.26498-1-jeevan.b@intel.com> References: <20220302143923.26498-1-jeevan.b@intel.com> Subject: [igt-dev] [PATCH i-g-t v2 07/10] igt/tests: Add support for Tile4(TileF) format to tests/kms_plane_lowres List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: juha-pekka.heikkila@intel.com Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Adding subtest to test new tiling format. Signed-off-by: Jeevan B Reviewed-by: Stanislav Lisovskiy --- tests/kms_plane_lowres.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c index 6c0fce86..3f3f77c8 100644 --- a/tests/kms_plane_lowres.c +++ b/tests/kms_plane_lowres.c @@ -314,6 +314,9 @@ igt_main "high and low resolution with yf-tiling."); igt_subtest_f("pipe-%s-tiling-yf", kmstest_pipe_name(pipe)) test_planes_on_pipe(&data, I915_FORMAT_MOD_Yf_TILED); + + igt_subtest_f("pipe-%s-tiling-4", kmstest_pipe_name(pipe)) + test_planes_on_pipe(&data, I915_FORMAT_MOD_4_TILED); } igt_fixture { -- 2.17.1