[igt-dev] [PATCH i-g-t] tests/kms_display_modes: Skip this test on DP MST config

Jeevan B jeevan.b at intel.com
Fri Apr 1 10:51:03 UTC 2022


currently this test fails on dp-mst setup. so, with this fix
test will skip which is expected for extended mode test case.

Signed-off-by: Jeevan B <jeevan.b at intel.com>
---
 tests/kms_display_modes.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index eff30cbb..4701c3ef 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -135,6 +135,8 @@ igt_main
 	int valid_output = 0, i, j = 0;
 	igt_output_t *output;
 	int pipe[IGT_MAX_PIPES];
+	struct kmstest_connector_config config;
+	const char *encoder;
 
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -146,6 +148,11 @@ igt_main
 
 			if (valid_output > 1)
 				break;
+
+			kmstest_get_connector_config(data.drm_fd,
+						     output->config.connector->connector_id,
+						     -1, &config);
+			encoder = kmstest_encoder_type_str(config.encoder->encoder_type);
 		}
 
 		data.n_pipes = 0;
@@ -160,6 +167,10 @@ igt_main
 
 	igt_describe("Test for validating display extended mode with a pair of connected displays");
 	igt_subtest_with_dynamic("extended-mode-basic") {
+
+		if (strcmp(encoder, "DP MST") == 0)
+			igt_skip("Test dosen't support DP MST\n");
+
 		for (i = 0; i < data.n_pipes - 1; i++) {
 			igt_dynamic_f("pipe-%s%s", kmstest_pipe_name(pipe[i]),
 					kmstest_pipe_name(pipe[i+1]));
-- 
2.35.1



More information about the igt-dev mailing list