[igt-dev] [i-g-t V2 28/52] tests/kms_prime: Add support for Bigjoiner
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Tue Sep 6 09:50:06 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_prime.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/tests/kms_prime.c b/tests/kms_prime.c
index 3df690e0..a2a7ce1f 100644
--- a/tests/kms_prime.c
+++ b/tests/kms_prime.c
@@ -89,14 +89,17 @@ static igt_output_t *setup_display(int importer_fd, igt_display_t *display,
bool found = false;
for_each_pipe_with_valid_output(display, *pipe, output) {
- found = true;
- break;
+ igt_display_reset(display);
+
+ igt_output_set_pipe(output, *pipe);
+ if (igt_test_constraint(display)) {
+ found = true;
+ break;
+ }
}
igt_require_f(found, "No valid connector/pipe found\n");
- igt_display_reset(display);
- igt_output_set_pipe(output, *pipe);
return output;
}
--
2.35.1
More information about the igt-dev
mailing list