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 B491410E471 for ; Fri, 30 Dec 2022 17:52:50 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Fri, 30 Dec 2022 23:18:06 +0530 Message-Id: <20221230174825.3016716-32-bhanuprakash.modem@intel.com> In-Reply-To: <20221230174825.3016716-1-bhanuprakash.modem@intel.com> References: <20221230174825.3016716-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t v6 31/50] tests/kms_sequence: Add support for Bigjoiner List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Nidhi Gupta Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: This patch will add a check to Skip the subtest if a selected pipe/output combo won't support Bigjoiner or 8K mode. Example: * Pipe-D wont support a mode > 5K * To use 8K mode on a pipe then consecutive pipe must be available & free. V2: - Use updated helper name Signed-off-by: Bhanuprakash Modem Reviewed-by: Nidhi Gupta --- tests/kms_sequence.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/kms_sequence.c b/tests/kms_sequence.c index c72857a3..c8a3d6bb 100644 --- a/tests/kms_sequence.c +++ b/tests/kms_sequence.c @@ -285,6 +285,12 @@ igt_main "drmCrtcQueueSequence"); igt_subtest_with_dynamic_f("%s-%s", f->name, m->name) { for_each_pipe_with_valid_output(&data.display, p, output) { + igt_display_reset(&data.display); + + igt_output_set_pipe(output, p); + if (!i915_pipe_output_combo_valid(&data.display)) + continue; + igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(p)) { data.pipe = p; data.output = output; -- 2.39.0