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 1A0AF10E2E7 for ; Tue, 27 Jun 2023 12:21:11 +0000 (UTC) From: Swati Sharma To: igt-dev@lists.freedesktop.org Date: Tue, 27 Jun 2023 17:50:26 +0530 Message-Id: <20230627122030.675526-6-swati2.sharma@intel.com> In-Reply-To: <20230627122030.675526-1-swati2.sharma@intel.com> References: <20230627122030.675526-1-swati2.sharma@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 5/9] tests/i915/kms_dsc: add subtest List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: New subtest is added validating output format with different input bpc. Signed-off-by: Swati Sharma --- tests/i915/kms_dsc.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 793c4409d..cee3b4a8c 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -353,6 +353,19 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) output_format_list[k]); } + igt_describe("Tests basic display stream compression functionality if supported " + "by a connector by forcing DSC and output format on all connectors " + "that support it with certain input BPC for the connector"); + igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + output_format_list[k]); + } + } + } + igt_fixture { igt_display_fini(&data.display); close(data.drm_fd); -- 2.25.1