* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only
@ 2024-06-17 16:10 Kunal Joshi
2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Kunal Joshi @ 2024-06-17 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
forcing DP connector doesn't work well on intel HW and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.
Kunal Joshi (2):
tests/kms_bw: add subtest for only connected outputs
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++
tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
tests/kms_bw.c | 43 ++++++++++++---
3 files changed, 167 insertions(+), 6 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi @ 2024-06-17 16:10 ` Kunal Joshi 2024-06-17 16:11 ` Pillai, Aurabindo 2024-06-17 16:10 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Kunal Joshi @ 2024-06-17 16:10 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai forcing DP connector doesn't work well and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. v2: added debug print for better clarity of skips on unsupported mode Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> --- tests/kms_bw.c | 43 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 37 insertions(+), 6 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 05f7e79ad..9f376bfe3 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -48,6 +48,19 @@ * @2560x1440p: 2560x1440 resolution * @3840x2160p: 3840x2160 resolution * @2160x1440p: 2160x1440 resolution + * + * SUBTEST: connected-linear-tiling-%d-displays-%s + * Description: bw test with %arg[2] + * + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 + * + * arg[2]: + * + * @1920x1080p: 1920x1080 resolution + * @2560x1440p: 2560x1440 resolution + * @3840x2160p: 3840x2160 resolution + * @2160x1440p: 2160x1440 resolution + * */ /* Common test data. */ @@ -55,6 +68,7 @@ typedef struct data { igt_display_t display; igt_plane_t *primary[IGT_MAX_PIPES]; igt_output_t *output[IGT_MAX_PIPES]; + igt_output_t *connected_output[IGT_MAX_PIPES]; igt_pipe_t *pipe[IGT_MAX_PIPES]; igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES]; drmModeModeInfo mode[IGT_MAX_PIPES]; @@ -62,6 +76,7 @@ typedef struct data { int w[IGT_MAX_PIPES]; int h[IGT_MAX_PIPES]; int fd; + int connected_outputs; } data_t; static drmModeModeInfo test_mode[] = { @@ -108,6 +123,7 @@ static void test_init(data_t *data) igt_display_t *display = &data->display; int i, max_pipes = display->n_pipes; igt_output_t *output; + data->connected_outputs = 0; for_each_pipe(display, i) { data->pipe_id[i] = i; @@ -124,12 +140,12 @@ static void test_init(data_t *data) continue; output = &display->outputs[i]; - data->output[i] = output; /* Only allow physically connected displays for the tests. */ if (!igt_output_is_connected(output)) continue; + data->connected_output[data->connected_outputs++] = output; igt_assert(kmstest_get_connector_default_mode( data->fd, output->config.connector, &data->mode[i])); @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output, igt_output_override_mode(output, mode); } -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) { +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { igt_display_t *display = &data->display; igt_output_t *output; struct igt_fb buffer[IGT_MAX_PIPES]; @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_skip_on_f(pipe >= num_pipes, "ASIC does not have %d pipes\n", pipe); + igt_skip_on_f(physical && pipe > data->connected_outputs , + "Only %d connected need %d pipes\n",data->connected_outputs, pipe); + + test_init(data); /* create buffers */ for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -208,6 +228,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_output_set_pipe(output, i); igt_plane_set_fb(data->primary[i], &buffer[i]); + igt_info("Assigning pipe %s to output %s with mode %s", + kmstest_pipe_name(i), igt_output_name(output), mode->name); } ret = igt_display_try_commit_atomic(display, @@ -219,7 +241,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -230,7 +252,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo } for (i = pipe; i >= 0; i--) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) continue; @@ -265,10 +287,19 @@ igt_main for (j = 0; j < ARRAY_SIZE(test_mode); j++) { igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j]); + run_test_linear_tiling(&data, i, &test_mode[j], false); } } + for (i = 0; i < IGT_MAX_PIPES; i++) { + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, + test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], true); + } + } + + igt_fixture { igt_display_fini(&data.display); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs 2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi @ 2024-06-17 16:11 ` Pillai, Aurabindo 0 siblings, 0 replies; 10+ messages in thread From: Pillai, Aurabindo @ 2024-06-17 16:11 UTC (permalink / raw) To: Kunal Joshi, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 6464 bytes --] [AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> -- Regards, Aurabindo ________________________________ From: Kunal Joshi <kunal1.joshi@intel.com> Sent: Monday, June 17, 2024 12:10 PM To: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org> Cc: Kunal Joshi <kunal1.joshi@intel.com>; Pillai, Aurabindo <Aurabindo.Pillai@amd.com> Subject: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs forcing DP connector doesn't work well and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. v2: added debug print for better clarity of skips on unsupported mode Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> --- tests/kms_bw.c | 43 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 37 insertions(+), 6 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 05f7e79ad..9f376bfe3 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -48,6 +48,19 @@ * @2560x1440p: 2560x1440 resolution * @3840x2160p: 3840x2160 resolution * @2160x1440p: 2160x1440 resolution + * + * SUBTEST: connected-linear-tiling-%d-displays-%s + * Description: bw test with %arg[2] + * + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 + * + * arg[2]: + * + * @1920x1080p: 1920x1080 resolution + * @2560x1440p: 2560x1440 resolution + * @3840x2160p: 3840x2160 resolution + * @2160x1440p: 2160x1440 resolution + * */ /* Common test data. */ @@ -55,6 +68,7 @@ typedef struct data { igt_display_t display; igt_plane_t *primary[IGT_MAX_PIPES]; igt_output_t *output[IGT_MAX_PIPES]; + igt_output_t *connected_output[IGT_MAX_PIPES]; igt_pipe_t *pipe[IGT_MAX_PIPES]; igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES]; drmModeModeInfo mode[IGT_MAX_PIPES]; @@ -62,6 +76,7 @@ typedef struct data { int w[IGT_MAX_PIPES]; int h[IGT_MAX_PIPES]; int fd; + int connected_outputs; } data_t; static drmModeModeInfo test_mode[] = { @@ -108,6 +123,7 @@ static void test_init(data_t *data) igt_display_t *display = &data->display; int i, max_pipes = display->n_pipes; igt_output_t *output; + data->connected_outputs = 0; for_each_pipe(display, i) { data->pipe_id[i] = i; @@ -124,12 +140,12 @@ static void test_init(data_t *data) continue; output = &display->outputs[i]; - data->output[i] = output; /* Only allow physically connected displays for the tests. */ if (!igt_output_is_connected(output)) continue; + data->connected_output[data->connected_outputs++] = output; igt_assert(kmstest_get_connector_default_mode( data->fd, output->config.connector, &data->mode[i])); @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output, igt_output_override_mode(output, mode); } -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) { +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { igt_display_t *display = &data->display; igt_output_t *output; struct igt_fb buffer[IGT_MAX_PIPES]; @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_skip_on_f(pipe >= num_pipes, "ASIC does not have %d pipes\n", pipe); + igt_skip_on_f(physical && pipe > data->connected_outputs , + "Only %d connected need %d pipes\n",data->connected_outputs, pipe); + + test_init(data); /* create buffers */ for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -208,6 +228,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_output_set_pipe(output, i); igt_plane_set_fb(data->primary[i], &buffer[i]); + igt_info("Assigning pipe %s to output %s with mode %s", + kmstest_pipe_name(i), igt_output_name(output), mode->name); } ret = igt_display_try_commit_atomic(display, @@ -219,7 +241,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -230,7 +252,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo } for (i = pipe; i >= 0; i--) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) continue; @@ -265,10 +287,19 @@ igt_main for (j = 0; j < ARRAY_SIZE(test_mode); j++) { igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j]); + run_test_linear_tiling(&data, i, &test_mode[j], false); } } + for (i = 0; i < IGT_MAX_PIPES; i++) { + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, + test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], true); + } + } + + igt_fixture { igt_display_fini(&data.display); -- 2.25.1 [-- Attachment #2: Type: text/html, Size: 14650 bytes --] ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/2] HAX patch do not merge 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi 2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi @ 2024-06-17 16:10 ` Kunal Joshi 2024-06-17 17:38 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2024-06-17 16:10 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi --- tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++ tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++ 2 files changed, 130 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..65a7fe663 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,6 +1,70 @@ # Try to load the driver if it's not available yet. igt@i915_module_load@load +igt@kms_bw@linear-tiling-1-displays-1920x1080p +igt@kms_bw@linear-tiling-1-displays-2560x1440p +igt@kms_bw@linear-tiling-1-displays-3840x2160p +igt@kms_bw@linear-tiling-1-displays-2160x1440p +igt@kms_bw@linear-tiling-2-displays-1920x1080p +igt@kms_bw@linear-tiling-2-displays-2560x1440p +igt@kms_bw@linear-tiling-2-displays-3840x2160p +igt@kms_bw@linear-tiling-2-displays-2160x1440p +igt@kms_bw@linear-tiling-3-displays-1920x1080p +igt@kms_bw@linear-tiling-3-displays-2560x1440p +igt@kms_bw@linear-tiling-3-displays-3840x2160p +igt@kms_bw@linear-tiling-3-displays-2160x1440p +igt@kms_bw@linear-tiling-4-displays-1920x1080p +igt@kms_bw@linear-tiling-4-displays-2560x1440p +igt@kms_bw@linear-tiling-4-displays-3840x2160p +igt@kms_bw@linear-tiling-4-displays-2160x1440p +igt@kms_bw@linear-tiling-5-displays-1920x1080p +igt@kms_bw@linear-tiling-5-displays-2560x1440p +igt@kms_bw@linear-tiling-5-displays-3840x2160p +igt@kms_bw@linear-tiling-5-displays-2160x1440p +igt@kms_bw@linear-tiling-6-displays-1920x1080p +igt@kms_bw@linear-tiling-6-displays-2560x1440p +igt@kms_bw@linear-tiling-6-displays-3840x2160p +igt@kms_bw@linear-tiling-6-displays-2160x1440p +igt@kms_bw@linear-tiling-7-displays-1920x1080p +igt@kms_bw@linear-tiling-7-displays-2560x1440p +igt@kms_bw@linear-tiling-7-displays-3840x2160p +igt@kms_bw@linear-tiling-7-displays-2160x1440p +igt@kms_bw@linear-tiling-8-displays-1920x1080p +igt@kms_bw@linear-tiling-8-displays-2560x1440p +igt@kms_bw@linear-tiling-8-displays-3840x2160p +igt@kms_bw@linear-tiling-8-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p # Keep alphabetically sorted by default igt@core_auth@basic-auth igt@debugfs_test@read_all_entries diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index aa98b37e6..207edcab8 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,6 +1,72 @@ # Should be the first test igt@xe_module_load@load +igt@kms_bw@linear-tiling-1-displays-1920x1080p +igt@kms_bw@linear-tiling-1-displays-2560x1440p +igt@kms_bw@linear-tiling-1-displays-3840x2160p +igt@kms_bw@linear-tiling-1-displays-2160x1440p +igt@kms_bw@linear-tiling-2-displays-1920x1080p +igt@kms_bw@linear-tiling-2-displays-2560x1440p +igt@kms_bw@linear-tiling-2-displays-3840x2160p +igt@kms_bw@linear-tiling-2-displays-2160x1440p +igt@kms_bw@linear-tiling-3-displays-1920x1080p +igt@kms_bw@linear-tiling-3-displays-2560x1440p +igt@kms_bw@linear-tiling-3-displays-3840x2160p +igt@kms_bw@linear-tiling-3-displays-2160x1440p +igt@kms_bw@linear-tiling-4-displays-1920x1080p +igt@kms_bw@linear-tiling-4-displays-2560x1440p +igt@kms_bw@linear-tiling-4-displays-3840x2160p +igt@kms_bw@linear-tiling-4-displays-2160x1440p +igt@kms_bw@linear-tiling-5-displays-1920x1080p +igt@kms_bw@linear-tiling-5-displays-2560x1440p +igt@kms_bw@linear-tiling-5-displays-3840x2160p +igt@kms_bw@linear-tiling-5-displays-2160x1440p +igt@kms_bw@linear-tiling-6-displays-1920x1080p +igt@kms_bw@linear-tiling-6-displays-2560x1440p +igt@kms_bw@linear-tiling-6-displays-3840x2160p +igt@kms_bw@linear-tiling-6-displays-2160x1440p +igt@kms_bw@linear-tiling-7-displays-1920x1080p +igt@kms_bw@linear-tiling-7-displays-2560x1440p +igt@kms_bw@linear-tiling-7-displays-3840x2160p +igt@kms_bw@linear-tiling-7-displays-2160x1440p +igt@kms_bw@linear-tiling-8-displays-1920x1080p +igt@kms_bw@linear-tiling-8-displays-2560x1440p +igt@kms_bw@linear-tiling-8-displays-3840x2160p +igt@kms_bw@linear-tiling-8-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p +igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p +igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p +igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p +igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p + + igt@fbdev@eof igt@fbdev@info igt@fbdev@nullptr -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only (rev2) 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi 2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 2024-06-17 16:10 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi @ 2024-06-17 17:38 ` Patchwork 2024-06-17 17:42 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-06-18 12:29 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-06-17 17:38 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6450 bytes --] == Series Details == Series: add subtest in kms_bw for connected outputs only (rev2) URL : https://patchwork.freedesktop.org/series/134822/ State : success == Summary == CI Bug Log - changes from XEIGT_7890_BAT -> XEIGTPW_11266_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11266_BAT: ### IGT changes ### #### Possible regressions #### * {igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p} (NEW): - bat-adlp-7: NOTRUN -> [SKIP][1] +11 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-adlp-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html - bat-dg2-oem2: NOTRUN -> [SKIP][2] +11 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-dg2-oem2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * {igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p} (NEW): - {bat-lnl-1}: NOTRUN -> [SKIP][3] +11 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html New tests --------- New tests have been introduced between XEIGT_7890_BAT and XEIGTPW_11266_BAT: ### New IGT tests (16) ### * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - Statuses : 3 pass(s) 2 skip(s) - Exec time: [0.0, 0.48] s * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - Statuses : 3 pass(s) 2 skip(s) - Exec time: [0.0, 0.49] s * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - Statuses : 3 pass(s) 2 skip(s) - Exec time: [0.0, 0.50] s * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - Statuses : 3 pass(s) 2 skip(s) - Exec time: [0.0, 0.56] s * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11266_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * {igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p} (NEW): - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +31 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-atsm-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#367]) +8 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-adlp-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#367]) +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-dg2-oem2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#1024]) +31 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-pvc-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html #### Possible fixes #### * igt@xe_intel_bb@blit-simple: - bat-atsm-2: [DMESG-WARN][8] ([Intel XE#2110]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/bat-atsm-2/igt@xe_intel_bb@blit-simple.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-atsm-2/igt@xe_intel_bb@blit-simple.html * igt@xe_live_ktest@xe_migrate: - bat-atsm-2: [SKIP][10] ([Intel XE#2109]) -> [PASS][11] +2 other tests pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#2109]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2109 [Intel XE#2110]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2110 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 Build changes ------------- * IGT: IGT_7890 -> IGTPW_11266 * Linux: xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb -> xe-1484-3b4eab7e82c7a1429e257890553ad571f320b8a3 IGTPW_11266: 11266 IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb: c00c421245452a4a82a893cd2e1bfd9663a761fb xe-1484-3b4eab7e82c7a1429e257890553ad571f320b8a3: 3b4eab7e82c7a1429e257890553ad571f320b8a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/index.html [-- Attachment #2: Type: text/html, Size: 7800 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.BAT: failure for add subtest in kms_bw for connected outputs only (rev2) 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi ` (2 preceding siblings ...) 2024-06-17 17:38 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only (rev2) Patchwork @ 2024-06-17 17:42 ` Patchwork 2024-06-18 12:29 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-06-17 17:42 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 22991 bytes --] == Series Details == Series: add subtest in kms_bw for connected outputs only (rev2) URL : https://patchwork.freedesktop.org/series/134822/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14957 -> IGTPW_11266 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11266 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11266, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/index.html Participating hosts (41 -> 41) ------------------------------ Additional (3): fi-kbl-7567u bat-kbl-2 fi-elk-e7500 Missing (3): bat-adlp-9 bat-dg2-11 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11266: ### IGT changes ### #### Possible regressions #### * {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW): - bat-dg2-14: NOTRUN -> [SKIP][1] +63 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-dg2-14/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * {igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p} (NEW): - {bat-arls-5}: NOTRUN -> [SKIP][2] +43 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arls-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW): - bat-dg2-8: NOTRUN -> [SKIP][3] +55 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-dg2-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html - bat-adls-6: NOTRUN -> [SKIP][4] +51 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-adls-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * {igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p} (NEW): - bat-jsl-3: NOTRUN -> [SKIP][5] +55 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-jsl-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * {igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p} (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][6] +57 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-tgl-1115g4/igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p.html * {igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p} (NEW): - {bat-arlh-2}: NOTRUN -> [SKIP][7] +47 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arlh-2/igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p.html * {igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p} (NEW): - bat-adln-1: NOTRUN -> [SKIP][8] +52 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-adln-1/igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - bat-jsl-1: NOTRUN -> [SKIP][9] +55 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-jsl-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - bat-adlp-6: NOTRUN -> [SKIP][10] +52 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-adlp-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - bat-arls-1: NOTRUN -> [SKIP][11] +59 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arls-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * {igt@kms_bw@linear-tiling-5-displays-2160x1440p} (NEW): - bat-mtlp-8: NOTRUN -> [SKIP][12] +63 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-8/igt@kms_bw@linear-tiling-5-displays-2160x1440p.html * igt@kms_bw@linear-tiling-6-displays-1920x1080p (NEW): - fi-rkl-11600: NOTRUN -> [SKIP][13] +57 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-rkl-11600/igt@kms_bw@linear-tiling-6-displays-1920x1080p.html * {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW): - {bat-rpls-4}: NOTRUN -> [SKIP][14] +44 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-rpls-4/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html - {bat-twl-1}: NOTRUN -> [SKIP][15] +43 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-twl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html - bat-rplp-1: NOTRUN -> [SKIP][16] +55 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-rplp-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html * {igt@kms_bw@linear-tiling-7-displays-1920x1080p} (NEW): - bat-arls-2: NOTRUN -> [SKIP][17] +55 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arls-2/igt@kms_bw@linear-tiling-7-displays-1920x1080p.html * {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW): - bat-dg1-7: NOTRUN -> [SKIP][18] +60 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-dg1-7/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html * {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW): - {bat-arlh-1}: NOTRUN -> [SKIP][19] +43 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arlh-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html - {bat-mtlp-9}: NOTRUN -> [SKIP][20] +43 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_rpm@module-reload: - {bat-mtlp-9}: [PASS][21] -> [FAIL][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_engines: - {bat-arlh-1}: [PASS][23] -> [INCOMPLETE][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-arlh-1/igt@i915_selftest@live@gt_engines.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arlh-1/igt@i915_selftest@live@gt_engines.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - {bat-rpls-4}: NOTRUN -> [SKIP][25] +15 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-rpls-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html - {bat-twl-1}: NOTRUN -> [SKIP][26] +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-twl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html - {bat-arls-5}: NOTRUN -> [SKIP][27] +15 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arls-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - {bat-arlh-2}: NOTRUN -> [SKIP][28] +15 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arlh-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - {bat-arlh-1}: NOTRUN -> [SKIP][29] +11 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arlh-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html - {bat-mtlp-9}: NOTRUN -> [SKIP][30] +16 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html New tests --------- New tests have been introduced between CI_DRM_14957 and IGTPW_11266: ### New IGT tests (48) ### * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - Statuses : 27 pass(s) 13 skip(s) - Exec time: [0.0, 0.63] s * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - Statuses : 26 pass(s) 14 skip(s) - Exec time: [0.0, 1.60] s * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - Statuses : 24 pass(s) 16 skip(s) - Exec time: [0.0, 1.60] s * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - Statuses : 17 pass(s) 23 skip(s) - Exec time: [0.0, 1.69] s * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-5-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-5-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-5-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-5-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-6-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-6-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-6-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-6-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-7-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-7-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-7-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-7-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-8-displays-1920x1080p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-8-displays-2160x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-8-displays-2560x1440p: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_bw@linear-tiling-8-displays-3840x2160p: - Statuses : 40 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_11266 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][31] ([i915#1849]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][32] ([i915#2190]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][33] +103 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - fi-kbl-7567u: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html * {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW): - fi-elk-e7500: NOTRUN -> [SKIP][35] +83 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-elk-e7500/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW): - fi-kbl-guc: NOTRUN -> [SKIP][36] +63 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-kbl-guc/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * {igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p} (NEW): - bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#9197]) +63 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-dg2-9/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html - fi-kbl-x1275: NOTRUN -> [SKIP][38] +63 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-kbl-x1275/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html - bat-adlp-11: NOTRUN -> [SKIP][39] ([i915#10470]) +63 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-adlp-11/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html * {igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p} (NEW): - fi-bsw-nick: NOTRUN -> [SKIP][40] +59 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-bsw-nick/igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p.html * {igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p} (NEW): - fi-cfl-8700k: NOTRUN -> [SKIP][41] +57 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-cfl-8700k/igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - fi-blb-e6850: NOTRUN -> [SKIP][42] +63 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-blb-e6850/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - bat-adlm-1: NOTRUN -> [SKIP][43] ([i915#9900]) +63 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-adlm-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - fi-pnv-d510: NOTRUN -> [SKIP][44] +63 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-pnv-d510/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - fi-cfl-guc: NOTRUN -> [SKIP][45] +57 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-cfl-guc/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html - bat-mtlp-6: NOTRUN -> [SKIP][46] ([i915#9792]) +63 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - fi-bsw-n3050: NOTRUN -> [SKIP][47] +59 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-bsw-n3050/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-5-displays-3840x2160p (NEW): - fi-ivb-3770: NOTRUN -> [SKIP][48] +55 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-ivb-3770/igt@kms_bw@linear-tiling-5-displays-3840x2160p.html * {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW): - fi-kbl-7567u: NOTRUN -> [SKIP][49] +67 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-kbl-7567u/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html - {bat-apl-1}: NOTRUN -> [SKIP][50] +43 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-apl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html * igt@kms_bw@linear-tiling-6-displays-2560x1440p (NEW): - fi-ilk-650: NOTRUN -> [SKIP][51] +55 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-ilk-650/igt@kms_bw@linear-tiling-6-displays-2560x1440p.html * {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW): - fi-glk-j4005: NOTRUN -> [SKIP][52] +47 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/fi-glk-j4005/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html * {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW): - bat-atsm-1: NOTRUN -> [SKIP][53] ([i915#6078]) +63 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-atsm-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - {bat-mtlp-9}: [DMESG-WARN][54] ([i915#11009]) -> [PASS][55] +4 other tests pass [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - {bat-mtlp-9}: [SKIP][56] ([i915#10580]) -> [PASS][57] +1 other test pass [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-dpms@b-dp7: - {bat-mtlp-9}: [FAIL][58] ([i915#6121]) -> [PASS][59] +3 other tests pass [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html * igt@kms_frontbuffer_tracking@basic: - bat-arls-2: [DMESG-WARN][60] ([i915#7507]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14957/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#11060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11060 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9224]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9224 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7890 -> IGTPW_11266 CI-20190529: 20190529 CI_DRM_14957: 3b4eab7e82c7a1429e257890553ad571f320b8a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11266: 11266 IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11266/index.html [-- Attachment #2: Type: text/html, Size: 25883 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for add subtest in kms_bw for connected outputs only (rev2) 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi ` (3 preceding siblings ...) 2024-06-17 17:42 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-06-18 12:29 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-06-18 12:29 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55687 bytes --] == Series Details == Series: add subtest in kms_bw for connected outputs only (rev2) URL : https://patchwork.freedesktop.org/series/134822/ State : failure == Summary == CI Bug Log - changes from XEIGT_7890_full -> XEIGTPW_11266_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11266_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11266_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11266_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * {igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * {igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p} (NEW): - {shard-lnl}: NOTRUN -> [SKIP][4] +9 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_pm@s4-d3hot-basic-exec.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][6] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][8] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_psr@psr-primary-render: - shard-dg2-set2: [SKIP][10] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_psr@psr-primary-render.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_psr@psr-primary-render.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - {shard-lnl}: [SKIP][12] ([Intel XE#1399]) -> [INCOMPLETE][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_psr@fbc-psr2-basic@edp-1: - {shard-lnl}: NOTRUN -> [FAIL][14] +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-4/igt@kms_psr@fbc-psr2-basic@edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend: - {shard-lnl}: NOTRUN -> [DMESG-WARN][15] +5 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-8/igt@kms_vblank@ts-continuation-dpms-suspend.html New tests --------- New tests have been introduced between XEIGT_7890_full and XEIGTPW_11266_full: ### New IGT tests (16) ### * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.01, 0.49] s * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - Statuses : 1 skip(s) - Exec time: [0.02] s * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.02, 0.53] s * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - Statuses : 1 skip(s) - Exec time: [0.02] s * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - Statuses : 2 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11266_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_interruptible@atomic-setmode: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1201]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_atomic_interruptible@atomic-setmode.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_atomic_interruptible@atomic-setmode.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#1201] / [Intel XE#829]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_big_fb@4-tiled-addfb.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * {igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201]) +13 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#787]) +20 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#373]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][25] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([i915#2575]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@torture-bo@all-pipes: - shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#282]) +1 other test dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_cursor_legacy@torture-bo@all-pipes.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_legacy@torture-bo@all-pipes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#616]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#929]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#327]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][36] -> [TIMEOUT][37] ([Intel XE#1473] / [Intel XE#402]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1195] / [Intel XE#1473]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_evict@evict-beng-threads-large.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_balancer@many-virtual-userptr-rebind: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#1130]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_exec_balancer@many-virtual-userptr-rebind.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_exec_balancer@many-virtual-userptr-rebind.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#288]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html * igt@xe_gt_freq@freq_low_max: - shard-dg2-set2: [PASS][45] -> [FAIL][46] ([Intel XE#1045] / [Intel XE#1204]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][47] -> [SKIP][48] ([Intel XE#1192] / [Intel XE#1201]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@xe_live_ktest@xe_bo.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@xe_live_ktest@xe_bo.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#569]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#1214]) +3 other tests dmesg-warn [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@xe_pm@s4-mocs.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-436/igt@xe_pm@s4-mocs.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [DMESG-WARN][55] ([Intel XE#1214]) -> [PASS][56] +1 other test pass [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@core_setmaster@master-drop-set-user.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - {shard-lnl}: [FAIL][57] ([Intel XE#1659]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][59] ([Intel XE#1201]) -> [PASS][60] +4 other tests pass [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2-set2: [DMESG-WARN][61] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][62] +4 other tests pass [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - {shard-lnl}: [DMESG-WARN][63] -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_fbcon_fbt@fbc-suspend.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: [INCOMPLETE][65] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4: - shard-dg2-set2: [INCOMPLETE][67] ([Intel XE#1195]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - {shard-lnl}: [FAIL][69] ([Intel XE#886]) -> [PASS][70] +1 other test pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][71] ([Intel XE#1201] / [i915#2575]) -> [PASS][72] +6 other tests pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - {shard-lnl}: [SKIP][73] ([Intel XE#1211]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#1664]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@xe_ccs@ctrl-surf-copy-new-ctx: - shard-dg2-set2: [SKIP][77] ([Intel XE#1130] / [Intel XE#1201]) -> [PASS][78] +14 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_ccs@ctrl-surf-copy-new-ctx.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@xe_ccs@ctrl-surf-copy-new-ctx.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][79] ([Intel XE#1600]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-threads-small-multi-vm: - shard-dg2-set2: [DMESG-FAIL][81] ([Intel XE#1760]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_evict@evict-threads-small-multi-vm.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-436/igt@xe_evict@evict-threads-small-multi-vm.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][84] +1 other test pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][85] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-exec-after: - {shard-lnl}: [ABORT][87] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@xe_pm@s4-exec-after.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-lnl-6/igt@xe_pm@s4-exec-after.html #### Warnings #### * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg2-set2: [SKIP][89] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#829]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-90.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][92] ([Intel XE#316]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][93] ([Intel XE#1201]) -> [SKIP][94] ([Intel XE#1124] / [Intel XE#1201]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][95] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][96] ([Intel XE#1124]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][97] ([Intel XE#1201]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#610]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][99] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][100] ([Intel XE#367]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][101] ([Intel XE#1201] / [Intel XE#367]) -> [DMESG-FAIL][102] ([Intel XE#1760]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][103] ([Intel XE#1201] / [i915#2575]) -> [SKIP][104] ([Intel XE#1201] / [Intel XE#367]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][105] ([Intel XE#1201]) -> [SKIP][106] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][107] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][108] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][109] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][110] ([Intel XE#1252]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][111] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][112] ([Intel XE#787]) +48 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: [SKIP][113] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][114] ([Intel XE#1152]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][115] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][116] ([Intel XE#306]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [i915#2575]) -> [SKIP][118] ([Intel XE#1201] / [Intel XE#373]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-436/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-dg2-set2: [SKIP][119] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][120] ([Intel XE#373]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2-set2: [SKIP][121] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][122] ([Intel XE#1201]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][124] ([Intel XE#308]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][125] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][126] ([Intel XE#282]) +3 other tests dmesg-warn [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: [FAIL][127] ([Intel XE#616]) -> [DMESG-FAIL][128] ([Intel XE#1551]) +1 other test dmesg-fail [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [i915#2575]) -> [DMESG-WARN][130] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_edge_walk@256x256-top-bottom.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][131] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][132] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: [SKIP][133] ([Intel XE#1201] / [i915#2575]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#323]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [DMESG-WARN][135] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][136] ([i915#2575]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][138] ([Intel XE#323]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [i915#2575]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#307]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][142] ([Intel XE#776]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][143] ([Intel XE#1201] / [i915#2575]) -> [SKIP][144] ([Intel XE#701]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_feature_discovery@chamelium.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][145] ([Intel XE#1214] / [Intel XE#1551]) -> [DMESG-WARN][146] ([Intel XE#1551]) +1 other test dmesg-warn [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][147] ([Intel XE#1201]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#455]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][149] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][150] ([Intel XE#651]) +23 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][151] ([Intel XE#1201]) -> [SKIP][152] ([Intel XE#1201] / [Intel XE#651]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][154] ([Intel XE#653]) +20 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-dg2-set2: [SKIP][155] ([Intel XE#1201]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][158] ([Intel XE#455] / [Intel XE#498]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][160] ([Intel XE#498]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-set2: [SKIP][161] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][162] ([Intel XE#305] / [Intel XE#455]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][164] ([Intel XE#305]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][165] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][166] ([Intel XE#1129]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][168] ([Intel XE#929]) +11 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-dg2-set2: [SKIP][169] ([Intel XE#1201]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#929]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_psr@psr2-sprite-blt.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][171] ([Intel XE#1201] / [i915#2575]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#327]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][174] ([Intel XE#1500]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][175] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][176] ([Intel XE#330]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][178] ([Intel XE#455]) +12 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_vrr@flip-dpms.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][180] ([Intel XE#756]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [i915#2575]) -> [SKIP][182] ([Intel XE#1091] / [Intel XE#1201]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@sriov_basic@bind-unbind-vf.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-433/igt@sriov_basic@bind-unbind-vf.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][183] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][184] ([Intel XE#1126]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][185] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][186] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][188] ([Intel XE#288]) +16 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_exec_fault_mode@once-basic.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_fault_mode@twice-basic-prefetch: - shard-dg2-set2: [SKIP][189] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#288]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_exec_fault_mode@twice-basic-prefetch.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@xe_exec_fault_mode@twice-basic-prefetch.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][191] ([Intel XE#1999]) -> [SKIP][192] ([Intel XE#1192] / [Intel XE#1201]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_live_ktest@xe_mocs.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@load: - shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][194] ([Intel XE#378]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_module_load@load.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [DMESG-WARN][195] ([Intel XE#1214]) -> [FAIL][196] ([Intel XE#1204]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@xe_module_load@reload-no-display.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-434/igt@xe_module_load@reload-no-display.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][197] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][198] ([Intel XE#366]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][200] ([Intel XE#944]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_query@multigpu-query-invalid-extension.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: [SKIP][201] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][202] ([Intel XE#944]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_query@multigpu-query-topology.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-432/igt@xe_query@multigpu-query-topology.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-WARN][203] ([Intel XE#1214] / [Intel XE#1760]) -> [SKIP][204] ([Intel XE#1130] / [Intel XE#1201]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1664 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_7890 -> IGTPW_11266 * Linux: xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb -> xe-1484-3b4eab7e82c7a1429e257890553ad571f320b8a3 IGTPW_11266: 11266 IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb: c00c421245452a4a82a893cd2e1bfd9663a761fb xe-1484-3b4eab7e82c7a1429e257890553ad571f320b8a3: 3b4eab7e82c7a1429e257890553ad571f320b8a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11266/index.html [-- Attachment #2: Type: text/html, Size: 69715 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only @ 2024-06-19 8:04 Kunal Joshi 2024-06-19 8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 0 siblings, 1 reply; 10+ messages in thread From: Kunal Joshi @ 2024-06-19 8:04 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi forcing DP connector doesn't work well on intel HW and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. Kunal Joshi (2): tests/kms_bw: add subtest for only connected outputs HAX patch do not merge tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++ tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++ tests/kms_bw.c | 48 +++++++++++++---- 3 files changed, 169 insertions(+), 9 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs 2024-06-19 8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi @ 2024-06-19 8:04 ` Kunal Joshi 0 siblings, 0 replies; 10+ messages in thread From: Kunal Joshi @ 2024-06-19 8:04 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai forcing DP connector doesn't work well and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. v2: added debug print for better clarity of skips on unsupported mode v3: added new line in info moved skip after test_init updated test_init logic based on physical flag Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> --- tests/kms_bw.c | 48 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 05f7e79ad..2c42acbdc 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -48,6 +48,19 @@ * @2560x1440p: 2560x1440 resolution * @3840x2160p: 3840x2160 resolution * @2160x1440p: 2160x1440 resolution + * + * SUBTEST: connected-linear-tiling-%d-displays-%s + * Description: bw test with %arg[2] + * + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 + * + * arg[2]: + * + * @1920x1080p: 1920x1080 resolution + * @2560x1440p: 2560x1440 resolution + * @3840x2160p: 3840x2160 resolution + * @2160x1440p: 2160x1440 resolution + * */ /* Common test data. */ @@ -55,6 +68,7 @@ typedef struct data { igt_display_t display; igt_plane_t *primary[IGT_MAX_PIPES]; igt_output_t *output[IGT_MAX_PIPES]; + igt_output_t *connected_output[IGT_MAX_PIPES]; igt_pipe_t *pipe[IGT_MAX_PIPES]; igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES]; drmModeModeInfo mode[IGT_MAX_PIPES]; @@ -62,6 +76,7 @@ typedef struct data { int w[IGT_MAX_PIPES]; int h[IGT_MAX_PIPES]; int fd; + int connected_outputs; } data_t; static drmModeModeInfo test_mode[] = { @@ -103,11 +118,12 @@ static drmModeModeInfo test_mode[] = { }; -static void test_init(data_t *data) +static void test_init(data_t *data, bool physical) { igt_display_t *display = &data->display; int i, max_pipes = display->n_pipes; igt_output_t *output; + data->connected_outputs = 0; for_each_pipe(display, i) { data->pipe_id[i] = i; @@ -120,16 +136,16 @@ static void test_init(data_t *data) } for (i = 0; i < display->n_outputs && i < max_pipes; i++) { - if (!data->pipe[i]) + if (!data->pipe[i] && !physical) continue; output = &display->outputs[i]; - data->output[i] = output; /* Only allow physically connected displays for the tests. */ if (!igt_output_is_connected(output)) continue; + data->connected_output[data->connected_outputs++] = output; igt_assert(kmstest_get_connector_default_mode( data->fd, output->config.connector, &data->mode[i])); @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output, igt_output_override_mode(output, mode); } -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) { +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { igt_display_t *display = &data->display; igt_output_t *output; struct igt_fb buffer[IGT_MAX_PIPES]; @@ -189,11 +205,14 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_skip_on_f(pipe >= num_pipes, "ASIC does not have %d pipes\n", pipe); - test_init(data); + test_init(data, physical); + + igt_skip_on_f(physical && pipe >= data->connected_outputs, + "Only %d connected need %d connected\n",data->connected_outputs, pipe+1); /* create buffers */ for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -208,6 +227,8 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_output_set_pipe(output, i); igt_plane_set_fb(data->primary[i], &buffer[i]); + igt_info("Assigning pipe %s to output %s with mode %s\n", + kmstest_pipe_name(i), igt_output_name(output), mode->name); } ret = igt_display_try_commit_atomic(display, @@ -219,7 +240,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -230,7 +251,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo } for (i = pipe; i >= 0; i--) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) continue; @@ -265,10 +286,19 @@ igt_main for (j = 0; j < ARRAY_SIZE(test_mode); j++) { igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j]); + run_test_linear_tiling(&data, i, &test_mode[j], false); } } + for (i = 0; i < IGT_MAX_PIPES; i++) { + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, + test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], true); + } + } + + igt_fixture { igt_display_fini(&data.display); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only @ 2024-06-13 13:07 Kunal Joshi 2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 0 siblings, 1 reply; 10+ messages in thread From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi forcing DP connector doesn't work well on intel HW and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. Kunal Joshi (2): tests/kms_bw: add subtest for only connected outputs HAX patch do not merge tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++ tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++ tests/kms_bw.c | 41 ++++++++++++--- 3 files changed, 165 insertions(+), 6 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs 2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi @ 2024-06-13 13:07 ` Kunal Joshi 2024-06-13 14:48 ` Aurabindo Pillai 0 siblings, 1 reply; 10+ messages in thread From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai forcing DP connector doesn't work well and tests are skipping with unsupported mode, add new test which runs test on connected outputs only. Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 05f7e79ad..bbf374612 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -48,6 +48,19 @@ * @2560x1440p: 2560x1440 resolution * @3840x2160p: 3840x2160 resolution * @2160x1440p: 2160x1440 resolution + * + * SUBTEST: connected-linear-tiling-%d-displays-%s + * Description: bw test with %arg[2] + * + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 + * + * arg[2]: + * + * @1920x1080p: 1920x1080 resolution + * @2560x1440p: 2560x1440 resolution + * @3840x2160p: 3840x2160 resolution + * @2160x1440p: 2160x1440 resolution + * */ /* Common test data. */ @@ -55,6 +68,7 @@ typedef struct data { igt_display_t display; igt_plane_t *primary[IGT_MAX_PIPES]; igt_output_t *output[IGT_MAX_PIPES]; + igt_output_t *connected_output[IGT_MAX_PIPES]; igt_pipe_t *pipe[IGT_MAX_PIPES]; igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES]; drmModeModeInfo mode[IGT_MAX_PIPES]; @@ -62,6 +76,7 @@ typedef struct data { int w[IGT_MAX_PIPES]; int h[IGT_MAX_PIPES]; int fd; + int connected_outputs; } data_t; static drmModeModeInfo test_mode[] = { @@ -108,6 +123,7 @@ static void test_init(data_t *data) igt_display_t *display = &data->display; int i, max_pipes = display->n_pipes; igt_output_t *output; + data->connected_outputs = 0; for_each_pipe(display, i) { data->pipe_id[i] = i; @@ -124,12 +140,12 @@ static void test_init(data_t *data) continue; output = &display->outputs[i]; - data->output[i] = output; /* Only allow physically connected displays for the tests. */ if (!igt_output_is_connected(output)) continue; + data->connected_output[data->connected_outputs++] = output; igt_assert(kmstest_get_connector_default_mode( data->fd, output->config.connector, &data->mode[i])); @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output, igt_output_override_mode(output, mode); } -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) { +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { igt_display_t *display = &data->display; igt_output_t *output; struct igt_fb buffer[IGT_MAX_PIPES]; @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_skip_on_f(pipe >= num_pipes, "ASIC does not have %d pipes\n", pipe); + igt_skip_on_f(physical && pipe > data->connected_outputs , + "Only %d connected need %d pipes\n",data->connected_outputs, pipe); + + test_init(data); /* create buffers */ for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); for (i = 0; i <= pipe; i++) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) { continue; } @@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo } for (i = pipe; i >= 0; i--) { - output = data->output[i]; + output = physical ? data->connected_output[i] : data->output[i]; if (!output) continue; @@ -265,10 +285,19 @@ igt_main for (j = 0; j < ARRAY_SIZE(test_mode); j++) { igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j]); + run_test_linear_tiling(&data, i, &test_mode[j], false); } } + for (i = 0; i < IGT_MAX_PIPES; i++) { + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, + test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], true); + } + } + + igt_fixture { igt_display_fini(&data.display); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs 2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi @ 2024-06-13 14:48 ` Aurabindo Pillai 0 siblings, 0 replies; 10+ messages in thread From: Aurabindo Pillai @ 2024-06-13 14:48 UTC (permalink / raw) To: Kunal Joshi, igt-dev On 6/13/24 9:07 AM, Kunal Joshi wrote: > forcing DP connector doesn't work well and tests are skipping > with unsupported mode, add new test which runs test on connected > outputs only. > > Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------ > 1 file changed, 35 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_bw.c b/tests/kms_bw.c > index 05f7e79ad..bbf374612 100644 > --- a/tests/kms_bw.c > +++ b/tests/kms_bw.c > @@ -48,6 +48,19 @@ > * @2560x1440p: 2560x1440 resolution > * @3840x2160p: 3840x2160 resolution > * @2160x1440p: 2160x1440 resolution > + * > + * SUBTEST: connected-linear-tiling-%d-displays-%s > + * Description: bw test with %arg[2] > + * > + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 > + * > + * arg[2]: > + * > + * @1920x1080p: 1920x1080 resolution > + * @2560x1440p: 2560x1440 resolution > + * @3840x2160p: 3840x2160 resolution > + * @2160x1440p: 2160x1440 resolution > + * > */ > > /* Common test data. */ > @@ -55,6 +68,7 @@ typedef struct data { > igt_display_t display; > igt_plane_t *primary[IGT_MAX_PIPES]; > igt_output_t *output[IGT_MAX_PIPES]; > + igt_output_t *connected_output[IGT_MAX_PIPES]; > igt_pipe_t *pipe[IGT_MAX_PIPES]; > igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES]; > drmModeModeInfo mode[IGT_MAX_PIPES]; > @@ -62,6 +76,7 @@ typedef struct data { > int w[IGT_MAX_PIPES]; > int h[IGT_MAX_PIPES]; > int fd; > + int connected_outputs; > } data_t; > > static drmModeModeInfo test_mode[] = { > @@ -108,6 +123,7 @@ static void test_init(data_t *data) > igt_display_t *display = &data->display; > int i, max_pipes = display->n_pipes; > igt_output_t *output; > + data->connected_outputs = 0; > > for_each_pipe(display, i) { > data->pipe_id[i] = i; > @@ -124,12 +140,12 @@ static void test_init(data_t *data) > continue; > > output = &display->outputs[i]; > - > data->output[i] = output; > > /* Only allow physically connected displays for the tests. */ > if (!igt_output_is_connected(output)) > continue; > + data->connected_output[data->connected_outputs++] = output; > > igt_assert(kmstest_get_connector_default_mode( > data->fd, output->config.connector, &data->mode[i])); > @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output, > igt_output_override_mode(output, mode); > } > > -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) { > +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { > igt_display_t *display = &data->display; > igt_output_t *output; > struct igt_fb buffer[IGT_MAX_PIPES]; > @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo > igt_skip_on_f(pipe >= num_pipes, > "ASIC does not have %d pipes\n", pipe); > > + igt_skip_on_f(physical && pipe > data->connected_outputs , > + "Only %d connected need %d pipes\n",data->connected_outputs, pipe); > + > + > test_init(data); > > /* create buffers */ > for (i = 0; i <= pipe; i++) { > - output = data->output[i]; > + output = physical ? data->connected_output[i] : data->output[i]; > if (!output) { > continue; > } > @@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > > for (i = 0; i <= pipe; i++) { > - output = data->output[i]; > + output = physical ? data->connected_output[i] : data->output[i]; > if (!output) { > continue; > } > @@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo > } > > for (i = pipe; i >= 0; i--) { > - output = data->output[i]; > + output = physical ? data->connected_output[i] : data->output[i]; > if (!output) > continue; > > @@ -265,10 +285,19 @@ igt_main > for (j = 0; j < ARRAY_SIZE(test_mode); j++) { > igt_subtest_f("linear-tiling-%d-displays-%s", i+1, > test_mode[j].name) > - run_test_linear_tiling(&data, i, &test_mode[j]); > + run_test_linear_tiling(&data, i, &test_mode[j], false); > } > } > > + for (i = 0; i < IGT_MAX_PIPES; i++) { > + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { > + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, > + test_mode[j].name) > + run_test_linear_tiling(&data, i, &test_mode[j], true); > + } > + } > + > + > igt_fixture > { > igt_display_fini(&data.display); Thanks! The patch is: Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> -- Thanks & Regards, Aurabindo Pillai ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-06-19 7:52 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-17 16:10 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi 2024-06-17 16:10 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 2024-06-17 16:11 ` Pillai, Aurabindo 2024-06-17 16:10 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi 2024-06-17 17:38 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only (rev2) Patchwork 2024-06-17 17:42 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-06-18 12:29 ` ✗ CI.xeFULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-06-19 8:04 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi 2024-06-19 8:04 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi 2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi 2024-06-13 14:48 ` Aurabindo Pillai
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox