summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBhanuprakash Modem <bhanuprakash.modem@intel.com>2022-06-10 14:15:40 +0530
committerBhanuprakash Modem <bhanuprakash.modem@intel.com>2022-06-15 09:26:53 +0530
commit4d9a8db54b4709a24a2e5a81a20fd8808e079ea1 (patch)
tree8dd25bb1e6415f108e9665ab340afce21d9f126e
parent54ff3199bc2c1ba586f5d608bd91d2b3eea66202 (diff)
tests/kms_dither: Rename dynamic tests
Instead of using dynamic subtests as <output name>-<pipe name>, update as <pipe name>-<output name>. Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
-rw-r--r--tests/kms_dither.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/kms_dither.c b/tests/kms_dither.c
index 21c1618a..c72f83be 100644
--- a/tests/kms_dither.c
+++ b/tests/kms_dither.c
@@ -210,7 +210,8 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc)
for_each_pipe(display, pipe) {
if (igt_pipe_connector_valid(pipe, output)) {
- igt_dynamic_f("%s-pipe-%s", output->name, kmstest_pipe_name(pipe))
+ igt_dynamic_f("pipe-%s-%s",
+ kmstest_pipe_name(pipe), output->name)
test_dithering(data, pipe, output, fb_bpc,
fb_format, output_bpc);