[igt-dev] [i-g-t V2 17/52] tests/kms_flip_event_leak: Add support for Bigjoiner
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Tue Sep 6 09:49:55 UTC 2022
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.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem at intel.com>
---
tests/kms_flip_event_leak.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tests/kms_flip_event_leak.c b/tests/kms_flip_event_leak.c
index ac201293..1df2474c 100644
--- a/tests/kms_flip_event_leak.c
+++ b/tests/kms_flip_event_leak.c
@@ -48,6 +48,9 @@ static void test(data_t *data, enum pipe pipe, igt_output_t *output)
struct igt_fb fb[2];
int fd, ret;
+ igt_info("Using (pipe %s + %s) to run the subtest.\n",
+ kmstest_pipe_name(pipe), igt_output_name(output));
+
/* select the pipe we want to use */
igt_output_set_pipe(output, pipe);
@@ -102,6 +105,13 @@ igt_simple_main
igt_display_require(&data.display, data.drm_fd);
for_each_pipe_with_valid_output(&data.display, pipe, output) {
+ igt_display_reset(&data.display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!igt_test_constraint(&data.display))
+ continue;
+
+ igt_output_set_pipe(output, PIPE_NONE);
test(&data, pipe, output);
valid_tests++;
}
--
2.35.1
More information about the igt-dev
mailing list