Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jeevan B <jeevan.b@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: restrict execution based on number of outputs connected
Date: Mon,  8 Feb 2021 17:39:51 +0530	[thread overview]
Message-ID: <20210208120951.15224-1-jeevan.b@intel.com> (raw)

In multi display scenario test used to exit after running on two pipes and
it would skip other displays connected. so added a variable to correct this
behavior.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
 tests/kms_rotation_crc.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 6d4e87ed..eb66260b 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -424,13 +424,16 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form
 	drmModeModeInfo *mode;
 	igt_output_t *output;
 	enum pipe pipe;
-	int pipe_count = 0;
+	int pipe_count = 0, connected_outputs = 0;
 
 	if (plane_type == DRM_PLANE_TYPE_CURSOR)
 		igt_require(display->has_cursor_plane);
 
 	igt_display_require_output(display);
 
+	for_each_connected_output(&data->display, output)
+		connected_outputs++;
+
 	for_each_pipe_with_valid_output(display, pipe, output) {
 		igt_plane_t *plane;
 		int i, j, c;
@@ -467,7 +470,7 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form
 			continue;
 
 		/* restricting the execution to 2 pipes to reduce execution time*/
-		if (pipe_count == 2 && !data->extended)
+		if (pipe_count == 2 * connected_outputs && !data->extended)
 			break;
 		pipe_count++;
 
-- 
2.19.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

             reply	other threads:[~2021-02-08 12:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-08 12:09 Jeevan B [this message]
2021-02-08 15:37 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_rotation_crc: restrict execution based on number of outputs connected Patchwork
2021-02-08 21:15 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-02-09  4:22 ` [igt-dev] [PATCH i-g-t] " Karthik B S

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210208120951.15224-1-jeevan.b@intel.com \
    --to=jeevan.b@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox