Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: restrict execution based on number of outputs connected
@ 2021-02-08 12:09 Jeevan B
  2021-02-08 15:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jeevan B @ 2021-02-08 12:09 UTC (permalink / raw)
  To: igt-dev

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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-09  4:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-08 12:09 [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: restrict execution based on number of outputs connected Jeevan B
2021-02-08 15:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox