* [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both
@ 2026-02-05 7:04 Jouni Högander
2026-02-05 7:04 ` [PATCH i-g-t v3 1/3] tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t Jouni Högander
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Jouni Högander @ 2026-02-05 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: Jouni Högander
Currently we are running only PR tests on panel supporting PSR2 and
PR. Running PSR2 tests as wel on such panel would provide us valuable
information. This patch set is addressing that.
Also some other improvements is made and code is simplified:
- drop some complexity from fixture for detection of working PSR
- instead of "not run" "fail" on setup where PSR is broken already
before kms_psr2_sf testcase is executed.
- drop et_flag from data_t and detect need for Early Transport check
on fly.
v3:
- use data->devid instead of intel_get_drm_devi
- changed IS_ALDERLAKE_S to !IS_ALDERLAKE_P
v2: patch 2. rebased and commit message updated
Jouni Högander (3):
tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t
tests/intel/kms_psr2_sf: Check pipe and output validity for Selective
Fetch test
tests/kms_psr2_sf: Allow testing of both PSR2 and Panel Replay if
supported
tests/intel/kms_psr2_sf.c | 239 +++++++++++++-------------------------
1 file changed, 78 insertions(+), 161 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t v3 1/3] tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander @ 2026-02-05 7:04 ` Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test Jouni Högander ` (5 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Jouni Högander @ 2026-02-05 7:04 UTC (permalink / raw) To: igt-dev; +Cc: Jouni Högander, Kunal Joshi Implement helper to detect need for Early Transport check and use that to figure out if Early Transport check is needed. Drop et_flag from data_t. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/intel/kms_psr2_sf.c | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c index e23999544..53565ada1 100644 --- a/tests/intel/kms_psr2_sf.c +++ b/tests/intel/kms_psr2_sf.c @@ -224,7 +224,6 @@ typedef struct { igt_plane_t *test_plane; bool big_fb_test; bool fbc_flag; - bool et_flag; cairo_t *cr; uint32_t screen_changes; int cur_x, cur_y; @@ -237,17 +236,30 @@ typedef struct { } coexist_feature; } data_t; +static bool is_et_check_needed(data_t *data) +{ + switch (data->psr_mode) { + case PR_MODE_SEL_FETCH: + case PR_MODE_SEL_FETCH_ET: + return true; + case PSR_MODE_2: + case PSR_MODE_2_SEL_FETCH: + case PSR_MODE_2_ET: + return psr_sink_support(data->drm_fd, data->debugfs_fd, + PSR_MODE_2_ET, data->output); + default: + igt_assert(false); + } +} + static bool set_sel_fetch_mode_for_output(data_t *data) { bool supported = false; - data->et_flag = false; - if (psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE_SEL_FETCH_ET, data->output)) { supported = true; data->psr_mode = PR_MODE_SEL_FETCH; - data->et_flag = true; } else if (psr_sink_support(data->drm_fd, data->debugfs_fd, PR_MODE_SEL_FETCH, data->output)) { supported = true; @@ -256,7 +268,6 @@ static bool set_sel_fetch_mode_for_output(data_t *data) PSR_MODE_2_ET, data->output)) { supported = true; data->psr_mode = PSR_MODE_2; - data->et_flag = true; } else if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_2, data->output)) { supported = true; @@ -977,9 +988,7 @@ static void run(data_t *data) data->pipe), "FBC still disabled\n"); - /* TODO: Enable this check if other connectors support Early Transport */ - if (data->et_flag && data->output != NULL && - data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) + if (is_et_check_needed(data)) igt_assert_f(early_transport_check(data->debugfs_fd), "Early Transport Disabled\n"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 1/3] tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t Jouni Högander @ 2026-02-05 7:04 ` Jouni Högander 2026-02-06 5:58 ` [i-g-t,v3,2/3] " Joshi, Kunal1 2026-02-05 7:04 ` [PATCH i-g-t v3 3/3] tests/kms_psr2_sf: Allow testing of both PSR2 and Panel Replay if supported Jouni Högander ` (4 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Jouni Högander @ 2026-02-05 7:04 UTC (permalink / raw) To: igt-dev; +Cc: Jouni Högander There are some restrictions in pipe usage for PSR2/PR Selective Fetch. Implement helper to checks these restrictions and use it to figure out if pipe/PSR/PR combo in data_t is valid. Also check if used output supports PSR/PR. v3: - use data->devid instead of intel_get_drm_devi - changed IS_ALDERLAKE_S to !IS_ALDERLAKE_P v2: rebase and commit message updated Signed-off-by: Jouni Högander <jouni.hogander@intel.com> --- tests/intel/kms_psr2_sf.c | 133 ++++++++++++++++++++++---------------- 1 file changed, 77 insertions(+), 56 deletions(-) diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c index 53565ada1..e537af121 100644 --- a/tests/intel/kms_psr2_sf.c +++ b/tests/intel/kms_psr2_sf.c @@ -1084,18 +1084,36 @@ static bool check_pr_psr2_sel_fetch_support(data_t *data) return status; } +static bool sel_fetch_pipe_combo_valid(data_t *data) +{ + if (data->devid < 14 && !IS_ALDERLAKE_P(data->devid) && data->pipe != PIPE_A) + return false; + + if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP && + data->pipe != PIPE_A && data->pipe != PIPE_B) + return false; + + return true; +} + static bool -pipe_output_combo_valid(igt_display_t *display, - enum pipe pipe, igt_output_t *output) +pipe_output_combo_valid(data_t *data) { - bool ret = true; + bool ret = psr_sink_support(data->drm_fd, data->debugfs_fd, + data->psr_mode, data->output); + if (!ret) + return ret; + + ret = sel_fetch_pipe_combo_valid(data); + if (!ret) + return ret; - igt_display_reset(display); + igt_display_reset(&data->display); - igt_output_set_crtc(output, igt_crtc_for_pipe(output->display, pipe)); - if (!intel_pipe_output_combo_valid(display)) + igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe)); + if (!intel_pipe_output_combo_valid(&data->display)) ret = false; - igt_output_set_crtc(output, NULL); + igt_output_set_crtc(data->output, NULL); return ret; } @@ -1268,11 +1286,12 @@ int igt_main() append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); @@ -1294,11 +1313,12 @@ int igt_main() append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1319,12 +1339,12 @@ int igt_main() append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1341,12 +1361,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%scursor-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1363,12 +1383,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%scursor-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1385,12 +1405,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%scursor-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1407,12 +1427,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%scursor-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1430,12 +1450,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%s%s-sf-dmg-area", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1451,12 +1471,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%soverlay-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1473,12 +1493,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%soverlay-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1495,11 +1515,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%soverlay-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1517,12 +1538,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%s%s-sf-dmg-area", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) @@ -1542,12 +1563,12 @@ int igt_main() igt_subtest_with_dynamic_f("%s%soverlay-%s-sf", append_fbc_subtest[y], append_psr_subtest[z], op_str(data.op)) { for (i = 0; i < n_pipes; i++) { - if (!pipe_output_combo_valid(&data.display, - pipes[i], - outputs[i])) - continue; data.pipe = pipes[i]; data.output = outputs[i]; + + if (!pipe_output_combo_valid(&data)) + continue; + igt_assert_f(set_sel_fetch_mode_for_output(&data), "Selective fetch is not supported\n"); if (!check_psr_mode_supported(&data, psr_status[z])) -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [i-g-t,v3,2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test 2026-02-05 7:04 ` [PATCH i-g-t v3 2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test Jouni Högander @ 2026-02-06 5:58 ` Joshi, Kunal1 2026-02-06 6:38 ` Hogander, Jouni 0 siblings, 1 reply; 10+ messages in thread From: Joshi, Kunal1 @ 2026-02-06 5:58 UTC (permalink / raw) To: Jouni Högander, igt-dev On 05-02-2026 12:34, Jouni Högander wrote: > There are some restrictions in pipe usage for PSR2/PR Selective > Fetch. Implement helper to checks these restrictions and use it to figure > out if pipe/PSR/PR combo in data_t is valid. Also check if used output > supports PSR/PR. > > v3: > - use data->devid instead of intel_get_drm_devi > - changed IS_ALDERLAKE_S to !IS_ALDERLAKE_P > v2: rebase and commit message updated > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [i-g-t,v3,2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test 2026-02-06 5:58 ` [i-g-t,v3,2/3] " Joshi, Kunal1 @ 2026-02-06 6:38 ` Hogander, Jouni 0 siblings, 0 replies; 10+ messages in thread From: Hogander, Jouni @ 2026-02-06 6:38 UTC (permalink / raw) To: Joshi, Kunal1, igt-dev@lists.freedesktop.org On Fri, 2026-02-06 at 11:28 +0530, Joshi, Kunal1 wrote: > > On 05-02-2026 12:34, Jouni Högander wrote: > > There are some restrictions in pipe usage for PSR2/PR Selective > > Fetch. Implement helper to checks these restrictions and use it to > > figure > > out if pipe/PSR/PR combo in data_t is valid. Also check if used > > output > > supports PSR/PR. > > > > v3: > > - use data->devid instead of intel_get_drm_devi > > - changed IS_ALDERLAKE_S to !IS_ALDERLAKE_P > > v2: rebase and commit message updated > > > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com> > Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> Thank you Kunal for your review. These patches are now pushed to master. BR, Jouni Högander ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 3/3] tests/kms_psr2_sf: Allow testing of both PSR2 and Panel Replay if supported 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 1/3] tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test Jouni Högander @ 2026-02-05 7:04 ` Jouni Högander 2026-02-05 8:06 ` ✓ Xe.CI.BAT: success for Run PSR2 and PR tests on panel supporting both (rev3) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Jouni Högander @ 2026-02-05 7:04 UTC (permalink / raw) To: igt-dev; +Cc: Jouni Högander, Kunal Joshi Currently kms_psr2_sf is testing only Panel Replay even if PSR2 is supported. Allow testing both PSR2 and Panel Replay when supported. Also drop some complexity from fixture for detection of working PSR. Earlier working PSR support was detected in fixture by enabling PSR and then ensuring PSR entry happens. Now we are relying on pipe_output_combo_valid. Earlier approach was problematic as PSR Might be broken due to some earlier test which was run. This caused kms_psr2_sf to not run any tests on that sink/pipe setup. Now these are supposed to be visible as failing testcases. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/intel/kms_psr2_sf.c | 153 +++++--------------------------------- 1 file changed, 20 insertions(+), 133 deletions(-) diff --git a/tests/intel/kms_psr2_sf.c b/tests/intel/kms_psr2_sf.c index e537af121..6aeda119b 100644 --- a/tests/intel/kms_psr2_sf.c +++ b/tests/intel/kms_psr2_sf.c @@ -252,36 +252,6 @@ static bool is_et_check_needed(data_t *data) } } -static bool set_sel_fetch_mode_for_output(data_t *data) -{ - bool supported = false; - - if (psr_sink_support(data->drm_fd, data->debugfs_fd, - PR_MODE_SEL_FETCH_ET, data->output)) { - supported = true; - data->psr_mode = PR_MODE_SEL_FETCH; - } else if (psr_sink_support(data->drm_fd, data->debugfs_fd, - PR_MODE_SEL_FETCH, data->output)) { - supported = true; - data->psr_mode = PR_MODE_SEL_FETCH; - } else if (psr_sink_support(data->drm_fd, data->debugfs_fd, - PSR_MODE_2_ET, data->output)) { - supported = true; - data->psr_mode = PSR_MODE_2; - } else if (psr_sink_support(data->drm_fd, data->debugfs_fd, - PSR_MODE_2, data->output)) { - supported = true; - data->psr_mode = PSR_MODE_2; - } else - igt_info("selective fetch not supported on output %s\n", data->output->name); - - if (supported) - supported = psr_enable(data->drm_fd, data->debugfs_fd, data->psr_mode, - data->output); - - return supported; -} - static const char *op_str(enum operations op) { static const char * const name[] = { @@ -430,6 +400,9 @@ static void prepare(data_t *data) igt_plane_t *primary, *sprite = NULL, *cursor = NULL; int fb_w, fb_h, x, y, view_w, view_h; + psr_enable(data->drm_fd, data->debugfs_fd, data->psr_mode, + data->output); + data->mode = igt_output_get_mode(output); if (data->coexist_feature & FEATURE_DSC) { @@ -1065,25 +1038,6 @@ static void cleanup(data_t *data) igt_remove_fb(data->drm_fd, &data->fb_test); } -static bool check_pr_psr2_sel_fetch_support(data_t *data) -{ - bool status = false; - - /* Check sink supports PR/PSR2 selective fetch */ - if (!set_sel_fetch_mode_for_output(data)) - return false; - - /* Check if selective fetch can be enabled */ - if (!selective_fetch_check(data->debugfs_fd, data->output)) - igt_assert("Selective fetch is not enabled even though panel should support it\n"); - - prepare(data); - /* We enter into DEEP_SLEEP for both PSR2 and PR sel fetch */ - status = psr_wait_entry(data->debugfs_fd, data->psr_mode, data->output); - cleanup(data); - return status; -} - static bool sel_fetch_pipe_combo_valid(data_t *data) { if (data->devid < 14 && !IS_ALDERLAKE_P(data->devid) && data->pipe != PIPE_A) @@ -1118,14 +1072,6 @@ pipe_output_combo_valid(data_t *data) return ret; } -static bool check_psr_mode_supported(data_t *data, int psr_stat) -{ - if (data->psr_mode == psr_stat) - return true; - else - return false; -} - static void run_dynamic_test_damage_areas(data_t data, int i, int coexist_features[]) { for (int j = FEATURE_NONE; j < FEATURE_COUNT; j++) { @@ -1250,18 +1196,25 @@ int igt_main() for_each_crtc_with_valid_output(&data.display, crtc, data.output) { data.pipe = crtc->pipe; - coexist_features[n_pipes] = 0; - output_supports_pr_psr2_sel_fetch = check_pr_psr2_sel_fetch_support(&data); - if (output_supports_pr_psr2_sel_fetch) { - pipes[n_pipes] = crtc->pipe; - outputs[n_pipes] = data.output; + for (i = 0; i < ARRAY_SIZE(psr_status); i++) { + data.psr_mode = psr_status[i]; + output_supports_pr_psr2_sel_fetch = pipe_output_combo_valid(&data); + if (output_supports_pr_psr2_sel_fetch) + break; + } - if (is_dsc_supported_by_sink(data.drm_fd, data.output)) - coexist_features[n_pipes] |= FEATURE_DSC; + if (!output_supports_pr_psr2_sel_fetch) + continue; - n_pipes++; - } - pr_psr2_sel_fetch_supported |= output_supports_pr_psr2_sel_fetch; + pipes[n_pipes] = data.pipe; + outputs[n_pipes] = data.output; + + coexist_features[n_pipes] = 0; + if (is_dsc_supported_by_sink(data.drm_fd, data.output)) + coexist_features[n_pipes] |= FEATURE_DSC; + + n_pipes++; + pr_psr2_sel_fetch_supported = true; } igt_require_f(pr_psr2_sel_fetch_supported, "No output supports selective fetch\n"); @@ -1292,12 +1245,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_PRIMARY; run_dynamic_test_damage_areas(data, i, coexist_features); } @@ -1319,11 +1266,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_PRIMARY; run_dynamic_test_damage_areas(data, i, coexist_features); @@ -1345,11 +1287,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_OVERLAY; run_dynamic_test_damage_areas(data, i, coexist_features); } @@ -1367,11 +1304,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_CURSOR; run_dynamic_test(data, i, coexist_features); } @@ -1389,11 +1321,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_CURSOR; run_dynamic_test(data, i, coexist_features); } @@ -1411,11 +1338,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_CURSOR; run_dynamic_test(data, i, coexist_features); } @@ -1433,11 +1355,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_CURSOR; run_dynamic_test(data, i, coexist_features); } @@ -1456,11 +1373,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - run_plane_move(data, i, coexist_features); } } @@ -1477,11 +1389,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_OVERLAY; run_dynamic_test(data, i, coexist_features); } @@ -1499,11 +1406,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_OVERLAY; run_dynamic_test(data, i, coexist_features); } @@ -1521,11 +1423,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_OVERLAY; run_dynamic_test(data, i, coexist_features); } @@ -1544,11 +1441,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - data.test_plane_id = DRM_PLANE_TYPE_PRIMARY; run_dynamic_test_damage_areas(data, i, coexist_features); } @@ -1569,11 +1461,6 @@ int igt_main() if (!pipe_output_combo_valid(&data)) continue; - igt_assert_f(set_sel_fetch_mode_for_output(&data), - "Selective fetch is not supported\n"); - if (!check_psr_mode_supported(&data, psr_status[z])) - continue; - run_plane_update_continuous(data, i, coexist_features); } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Run PSR2 and PR tests on panel supporting both (rev3) 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander ` (2 preceding siblings ...) 2026-02-05 7:04 ` [PATCH i-g-t v3 3/3] tests/kms_psr2_sf: Allow testing of both PSR2 and Panel Replay if supported Jouni Högander @ 2026-02-05 8:06 ` Patchwork 2026-02-05 8:36 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-02-05 8:06 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 874 bytes --] == Series Details == Series: Run PSR2 and PR tests on panel supporting both (rev3) URL : https://patchwork.freedesktop.org/series/161016/ State : success == Summary == CI Bug Log - changes from XEIGT_8738_BAT -> XEIGTPW_14501_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8738 -> IGTPW_14501 IGTPW_14501: 14501 IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/index.html [-- Attachment #2: Type: text/html, Size: 1419 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Run PSR2 and PR tests on panel supporting both (rev3) 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander ` (3 preceding siblings ...) 2026-02-05 8:06 ` ✓ Xe.CI.BAT: success for Run PSR2 and PR tests on panel supporting both (rev3) Patchwork @ 2026-02-05 8:36 ` Patchwork 2026-02-05 23:20 ` ✗ i915.CI.Full: failure " Patchwork 2026-02-06 2:48 ` ✗ Xe.CI.FULL: " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-02-05 8:36 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1878 bytes --] == Series Details == Series: Run PSR2 and PR tests on panel supporting both (rev3) URL : https://patchwork.freedesktop.org/series/161016/ State : success == Summary == CI Bug Log - changes from IGT_8738 -> IGTPW_14501 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/index.html Participating hosts (43 -> 40) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14501 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/bat-dg2-14/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8738 -> IGTPW_14501 CI-20190529: 20190529 CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14501: 14501 IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/index.html [-- Attachment #2: Type: text/html, Size: 2546 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Run PSR2 and PR tests on panel supporting both (rev3) 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander ` (4 preceding siblings ...) 2026-02-05 8:36 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-05 23:20 ` Patchwork 2026-02-06 2:48 ` ✗ Xe.CI.FULL: " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-02-05 23:20 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144215 bytes --] == Series Details == Series: Run PSR2 and PR tests on panel supporting both (rev3) URL : https://patchwork.freedesktop.org/series/161016/ State : failure == Summary == CI Bug Log - changes from IGT_8738_full -> IGTPW_14501_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14501_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14501_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14501_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-tglu: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-8/igt@gem_busy@close-race.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@gem_busy@close-race.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-snb7/igt@gem_workarounds@suspend-resume-fd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-snb5/igt@gem_workarounds@suspend-resume-fd.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][5] -> [SKIP][6] +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html New tests --------- New tests have been introduced between IGT_8738_full and IGTPW_14501_full: ### New IGT tests (2) ### * igt@gem_exec_fence: - Statuses : - Exec time: [None] s * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [8.18] s Known issues ------------ Here are the changes found in IGTPW_14501_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#3281]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][17] -> [INCOMPLETE][18] ([i915#13390]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13390]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#6344]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-3/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-2/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#14544] / [i915#3281]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#2190]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4613]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4613]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#12193]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4565]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#284]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-17/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][46] ([i915#2658]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk6/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][47] ([i915#2658]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-1/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][52] ([i915#14702] / [i915#2658]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#13398]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][56] -> [ABORT][57] ([i915#15131]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][61] ([i915#13809]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk6/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +14 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#15657]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-1/igt@gem_tiled_pread_basic@basic.html - shard-rkl: NOTRUN -> [SKIP][64] ([i915#14544] / [i915#15656]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4879]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-9/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282] / [i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-17/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][74] +9 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][75] +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-5/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][79] ([i915#14544] / [i915#2527]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@gen9_exec_parse@valid-registers.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@most-busy-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#14073]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#8399]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html - shard-tglu: NOTRUN -> [SKIP][85] ([i915#8399]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [PASS][86] -> [WARN][87] ([i915#13790] / [i915#2681]) +1 other test warn [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#11681] / [i915#6621]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#11681] / [i915#6621]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#11681] / [i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#11681]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#6245]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#5723]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][94] ([i915#12061]) +1 other test dmesg-fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#4817]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk1/igt@i915_suspend@debugfs-reader.html - shard-rkl: NOTRUN -> [ABORT][96] ([i915#15131]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-1/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4077]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-5/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#7707]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#12454] / [i915#12712]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#12454] / [i915#12712]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][102] ([i915#1769]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#5286]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#14544] / [i915#5286]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3638]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#3828]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-glk10: NOTRUN -> [SKIP][115] +73 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][117] +37 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6095]) +52 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#14098] / [i915#6095]) +51 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +54 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#12313]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +19 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +144 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#14544] / [i915#6095]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +214 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#12805]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6095]) +44 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html - shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#15582]) +1 other test incomplete [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +71 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#13781]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#13783]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +6 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#9979]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#6944]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-1/igt@kms_content_protection@atomic-dpms-hdcp14.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14544] / [i915#6944]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6944]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#15330]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#6944]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6944]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][151] ([i915#7173]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#7118]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#14544] / [i915#6944] / [i915#7118]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6944]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#6944]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [PASS][160] -> [FAIL][161] ([i915#13566]) +7 other tests fail [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#13049]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][168] ([i915#13566]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: [PASS][169] -> [FAIL][170] ([i915#13566]) +1 other test fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][171] -> [INCOMPLETE][172] ([i915#12358] / [i915#14152]) +1 other test incomplete [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#13046] / [i915#5354]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#9809]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][175] +22 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#14544] / [i915#4103]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#9067]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9067]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#1769] / [i915#3555] / [i915#3804]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3804]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3804]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#1257]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#13749]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13707]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13707]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3469]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#1839]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3637] / [i915#9934]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#9934]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9934]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9934]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3637] / [i915#9934]) +6 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9934]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#9934]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8381]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8381]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8381]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#15643]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#15643]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#15643]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#15643]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#15643]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#15643]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15643] / [i915#5190]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][214] -> [FAIL][215] ([i915#15389]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#1825]) +30 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +15 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#10056]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#15102]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][220] +23 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#15102]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#15102]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#15102]) +14 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#15104]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#15104]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][227] ([i915#15104]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +13 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#15102] / [i915#3023]) +18 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#1825]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5354]) +19 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#1825]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][234] +56 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#10433] / [i915#15102] / [i915#3458]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#15102] / [i915#3458]) +9 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15102] / [i915#3458]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#15102]) +16 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#12713] / [i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#15459]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15459]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#13688]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#15458]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#6301]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#14712]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#14712]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#15608] / [i915#15609] / [i915#8825]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#15609]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#15609] / [i915#8825]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-0: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15608]) +20 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-4: - shard-glk: NOTRUN -> [SKIP][255] +246 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-4.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#15609]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15608] / [i915#8825]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#15608] / [i915#8825]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-5: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#15608]) +20 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15608] / [i915#8825]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-1: - shard-snb: NOTRUN -> [SKIP][261] +88 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-snb1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-1.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#15608]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#15608]) +9 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-3: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#15608]) +14 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-3.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15608] / [i915#8825]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#15608] / [i915#8825]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-3: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#15608]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-3.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#15609]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#15609] / [i915#8825]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: NOTRUN -> [INCOMPLETE][271] ([i915#14412]) +1 other test incomplete [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_lowres@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-16/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#13958]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#13958]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#14259]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6953]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#15329]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#15329]) +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15329]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#15329] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15329] / [i915#3555] / [i915#6953]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15329]) +5 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9812]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#12343]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3828]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][286] ([i915#9295]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#9685]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#4281]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#15073]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][290] -> [SKIP][291] ([i915#15073]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15073]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][293] ([i915#15073]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15073]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#15073]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#6524]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#11520]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][299] ([i915#11520]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][300] ([i915#11520]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][301] ([i915#11520]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#11520]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11520]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#9683]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#9688]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9732]) +10 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#9732]) +11 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-3/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +13 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +18 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9685]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9685]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#5289]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#12755] / [i915#5190]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][318] ([i915#5289]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#3555]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][320] ([i915#13179]) +1 other test abort [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][321] ([i915#13179]) +1 other test abort [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][322] ([i915#15106]) +2 other tests fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-snb7/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#3555]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#8623]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html - shard-tglu: NOTRUN -> [SKIP][325] ([i915#8623]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#8623]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][327] ([i915#8623]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#8623]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][329] ([i915#12276]) +1 other test incomplete [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html - shard-glk10: NOTRUN -> [INCOMPLETE][330] ([i915#12276]) +1 other test incomplete [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][331] ([i915#12276]) +1 other test incomplete [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#3555]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8808]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-4/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#15243] / [i915#3555]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_vrr@flip-suspend.html - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15243] / [i915#3555]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#9906]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@blocking@0-rcs0: - shard-dg1: NOTRUN -> [FAIL][339] ([i915#10538]) +1 other test fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-16/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][340] -> [FAIL][341] ([i915#4349]) +2 other tests fail [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [FAIL][342] ([i915#14433]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#8516]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#8516]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-7/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#8516]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-14/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][346] ([i915#8516]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#3708] / [i915#4077]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-3/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][348] ([i915#3708] / [i915#4077]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#3708] / [i915#4077]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#3708]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9917]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#14544] / [i915#9917]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9917]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][354] ([i915#12910]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#9917]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][356] ([i915#13356]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-7/igt@gem_ccs@suspend-resume.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][358] ([i915#12392] / [i915#13356]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][360] ([i915#13356]) -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@kms: - shard-rkl: [ABORT][362] ([i915#13363]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_eio@kms.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@gem_eio@kms.html * igt@gem_exec_params@larger-than-life-batch: - shard-dg2: [CRASH][364] -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@gem_exec_params@larger-than-life-batch.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@gem_exec_params@larger-than-life-batch.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [ABORT][366] ([i915#15131]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_workarounds@basic-read: - shard-dg2: [ABORT][368] ([i915#13562]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-3/igt@gem_workarounds@basic-read.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-6/igt@gem_workarounds@basic-read.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][370] ([i915#15060]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][372] ([i915#12061] / [i915#15560]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-1/igt@i915_selftest@live.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][374] ([i915#12061]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-1/igt@i915_selftest@live@workarounds.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled: - shard-dg1: [DMESG-WARN][376] ([i915#4423]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][378] ([i915#5956]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][380] ([i915#5138]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][382] ([i915#13566]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][384] ([i915#13566]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][386] ([i915#15389] / [i915#6880]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][388] ([i915#3555] / [i915#8228]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_hdr@bpc-switch.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][390] ([i915#15073]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][392] ([i915#15073]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][394] ([i915#14419]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html - shard-rkl: [INCOMPLETE][396] ([i915#14419]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][398] ([i915#15453]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][400] ([i915#4349]) -> [PASS][401] +2 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][402] ([i915#13008]) -> [SKIP][403] ([i915#13008] / [i915#14544]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#6335]) -> [SKIP][405] ([i915#6335]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][406] ([i915#280]) -> [SKIP][407] ([i915#14544] / [i915#280]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][408] ([i915#4525]) -> [SKIP][409] ([i915#14544] / [i915#4525]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#3281]) -> [SKIP][411] ([i915#3281]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][412] ([i915#3281]) -> [SKIP][413] ([i915#14544] / [i915#3281]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_lmem_swapping@basic: - shard-rkl: [SKIP][414] ([i915#14544] / [i915#4613]) -> [SKIP][415] ([i915#4613]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_lmem_swapping@basic.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][416] ([i915#4613]) -> [SKIP][417] ([i915#14544] / [i915#4613]) +2 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: [SKIP][418] ([i915#3282]) -> [SKIP][419] ([i915#14544] / [i915#3282]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_partial_pwrite_pread@write-display.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][420] ([i915#13717]) -> [SKIP][421] ([i915#13717] / [i915#14544]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#3282]) -> [SKIP][423] ([i915#3282]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@gem_readwrite@beyond-eob.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][424] ([i915#3297]) -> [SKIP][425] ([i915#14544] / [i915#3297]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_userptr_blits@access-control.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][426] ([i915#14544] / [i915#3297]) -> [SKIP][427] ([i915#3297]) +1 other test skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][428] ([i915#2527]) -> [SKIP][429] ([i915#14544] / [i915#2527]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#2527]) -> [SKIP][431] ([i915#2527]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#15479]) -> [SKIP][433] ([i915#15479]) +4 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#9531]) -> [SKIP][435] ([i915#9531]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#5286]) -> [SKIP][437] ([i915#5286]) +2 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][438] ([i915#5286]) -> [SKIP][439] ([i915#14544] / [i915#5286]) +2 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#3638]) -> [SKIP][441] ([i915#3638]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3828]) -> [SKIP][443] ([i915#3828]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][444] ([i915#3828]) -> [SKIP][445] ([i915#14544] / [i915#3828]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][446] ([i915#3638]) -> [SKIP][447] ([i915#14544] / [i915#3638]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][448] ([i915#12313] / [i915#14544]) -> [SKIP][449] ([i915#12313]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][450] ([i915#6095]) -> [SKIP][451] ([i915#14544] / [i915#6095]) +5 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][452] ([i915#12805] / [i915#14544]) -> [SKIP][453] ([i915#12805]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#6095]) -> [SKIP][455] ([i915#6095]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][456] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][457] ([i915#14098] / [i915#6095]) +3 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][458] ([i915#14098] / [i915#6095]) -> [SKIP][459] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-2.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][460] ([i915#11151] / [i915#7828]) -> [SKIP][461] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][462] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][463] ([i915#11151] / [i915#7828]) +5 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][464] ([i915#7173]) -> [SKIP][465] ([i915#6944] / [i915#7118] / [i915#9424]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html - shard-rkl: [SKIP][466] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][467] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: [SKIP][468] ([i915#6944]) -> [FAIL][469] ([i915#7173]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@kms_content_protection@legacy-hdcp14.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][470] ([i915#6944] / [i915#9424]) -> [SKIP][471] ([i915#14544] / [i915#6944] / [i915#9424]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_content_protection@mei-interface.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][472] ([i915#6944] / [i915#9424]) -> [SKIP][473] ([i915#9433]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-17/igt@kms_content_protection@mei-interface.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@suspend-resume: - shard-dg2: [FAIL][474] ([i915#7173]) -> [SKIP][475] ([i915#6944]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-11/igt@kms_content_protection@suspend-resume.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-5/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][476] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][477] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_content_protection@type1.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: [SKIP][478] ([i915#3555]) -> [SKIP][479] ([i915#14544] / [i915#3555]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#3555]) -> [SKIP][481] ([i915#3555]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][482] ([i915#13049] / [i915#14544]) -> [SKIP][483] ([i915#13049]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][484] ([i915#4103]) -> [SKIP][485] ([i915#14544] / [i915#4103]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][486] -> [SKIP][487] ([i915#14544]) +5 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-rkl: [SKIP][488] ([i915#14544]) -> [SKIP][489] +8 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#4103]) -> [SKIP][491] ([i915#4103]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][492] ([i915#9723]) -> [SKIP][493] ([i915#14544] / [i915#9723]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-rkl: [SKIP][494] ([i915#1257]) -> [SKIP][495] ([i915#1257] / [i915#14544]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_dp_aux_dev.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][496] ([i915#3840]) -> [SKIP][497] ([i915#14544] / [i915#3840]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][498] ([i915#3555] / [i915#3840]) -> [SKIP][499] ([i915#14544] / [i915#3555] / [i915#3840]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_dsc@dsc-with-bpc.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][500] ([i915#9337]) -> [SKIP][501] ([i915#14544] / [i915#9337]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#9934]) -> [SKIP][503] ([i915#9934]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-rkl: [SKIP][504] ([i915#9934]) -> [SKIP][505] ([i915#14544] / [i915#9934]) +2 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_flip@2x-plain-flip-fb-recreate.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#15643]) -> [SKIP][507] ([i915#15643]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][508] ([i915#15643]) -> [SKIP][509] ([i915#14544] / [i915#15643]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][510] ([i915#1825]) -> [SKIP][511] ([i915#14544] / [i915#1825]) +21 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][512] ([i915#5439]) -> [SKIP][513] ([i915#14544] / [i915#5439]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: [SKIP][514] ([i915#8708]) -> [SKIP][515] ([i915#4423] / [i915#8708]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][516] ([i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-rkl: [SKIP][518] ([i915#15102]) -> [SKIP][519] ([i915#14544] / [i915#15102]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15102]) -> [SKIP][521] ([i915#15102]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][522] ([i915#15102] / [i915#3458]) -> [SKIP][523] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [SKIP][524] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][525] ([i915#15102] / [i915#3458]) +4 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][527] ([i915#15102] / [i915#3023]) +5 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#1825]) -> [SKIP][529] ([i915#1825]) +14 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][530] ([i915#1187] / [i915#12713]) -> [SKIP][531] ([i915#12713]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][532] ([i915#15460]) -> [SKIP][533] ([i915#14544] / [i915#15460]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#15458]) -> [SKIP][535] ([i915#15458]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#6301]) -> [SKIP][537] ([i915#6301]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][538] ([i915#14712]) -> [SKIP][539] ([i915#14544] / [i915#14712]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][541] ([i915#15608] / [i915#8825]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-0: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#15608]) -> [SKIP][543] ([i915#15608]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-0.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][544] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][545] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-rkl: [SKIP][546] ([i915#15608]) -> [SKIP][547] ([i915#14544] / [i915#15608]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: [SKIP][548] ([i915#15609] / [i915#8825]) -> [SKIP][549] ([i915#14544] / [i915#15609] / [i915#8825]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][550] ([i915#13958]) -> [SKIP][551] ([i915#13958] / [i915#14544]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-none.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][552] ([i915#14259]) -> [SKIP][553] ([i915#14259] / [i915#14544]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: [SKIP][554] ([i915#15329]) -> [SKIP][555] ([i915#14544] / [i915#15329]) +3 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#5354]) -> [SKIP][557] ([i915#5354]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][558] ([i915#5354]) -> [SKIP][559] ([i915#14544] / [i915#5354]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][560] ([i915#11520]) -> [SKIP][561] ([i915#11520] / [i915#14544]) +5 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][562] ([i915#11520] / [i915#14544]) -> [SKIP][563] ([i915#11520]) +4 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-rkl: [SKIP][564] ([i915#1072] / [i915#9732]) -> [SKIP][565] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_psr@pr-primary-mmap-cpu.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: [SKIP][566] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][567] ([i915#1072] / [i915#9732]) +7 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-4/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_vrr@flipline: - shard-rkl: [SKIP][568] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][569] ([i915#15243] / [i915#3555]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_vrr@flipline.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-5/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][570] ([i915#11920] / [i915#14544]) -> [SKIP][571] ([i915#11920]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_vrr@lobf.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-3/igt@kms_vrr@lobf.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][572] ([i915#2434]) -> [SKIP][573] ([i915#14544] / [i915#2434]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@perf@mi-rpc.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@perf@mi-rpc.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][574] ([i915#3708]) -> [SKIP][575] ([i915#14544] / [i915#3708]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@prime_vgem@fence-read-hang.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8738 -> IGTPW_14501 CI-20190529: 20190529 CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14501: 14501 IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14501/index.html [-- Attachment #2: Type: text/html, Size: 197133 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for Run PSR2 and PR tests on panel supporting both (rev3) 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander ` (5 preceding siblings ...) 2026-02-05 23:20 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-02-06 2:48 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-02-06 2:48 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57453 bytes --] == Series Details == Series: Run PSR2 and PR tests on panel supporting both (rev3) URL : https://patchwork.freedesktop.org/series/161016/ State : failure == Summary == CI Bug Log - changes from XEIGT_8738_FULL -> XEIGTPW_14501_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14501_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14501_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14501_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-bmg: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html #### Warnings #### * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: [SKIP][3] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html Known issues ------------ Here are the changes found in XEIGTPW_14501_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#5993]) +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3: - shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#6983]) +4 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][24] ([Intel XE#6968]) +3 other tests fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-c-edp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6969]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6969] / [Intel XE#7006]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6974]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2390] / [Intel XE#6974]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1468]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@suspend-resume@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2341]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2291]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: NOTRUN -> [ABORT][39] ([Intel XE#5545] / [Intel XE#6652]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#5299]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#323]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#4302]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4422]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#703]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2316]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2316]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7178]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7178]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#352]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +16 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2312]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#4141]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#6312]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7061]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +15 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#656]) +16 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][62] -> [ABORT][63] ([Intel XE#7169]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1503]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#7086]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6901]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2501]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#356]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7131]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7130]) +13 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7130]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#7111] / [Intel XE#7131]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#4596]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-x.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#5020]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#6886]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#870]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#718]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2392]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2893]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-2/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-lnl: [PASS][88] -> [FAIL][89] ([Intel XE#1874]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#3414] / [Intel XE#3904]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2413]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#1435]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_setmode@invalid-clone-single-crtc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6503]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#1729]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#4459]) +1 other test fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1499]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_vrr@flip-suspend.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#5937]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eudebug@basic-client-th: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@xe_eudebug@basic-client-th.html * igt@xe_eudebug@vma-ufence: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_eudebug@vma-ufence.html * igt@xe_eudebug_online@debugger-reopen: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837] / [Intel XE#6665]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@resume-dss: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#688]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][106] -> [INCOMPLETE][107] ([Intel XE#6321]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#7140]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2322]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1392]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#7136]) +8 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#7136]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#6874]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6874]) +19 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html * igt@xe_exec_system_allocator@many-64k-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#5007]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html * igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4943]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4943]) +16 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#7138]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#7138]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html * igt@xe_module_load@load: - shard-bmg: ([PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143]) -> ([PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [SKIP][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169]) ([Intel XE#2457]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-10/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#6964]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-2/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#6964]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2284] / [Intel XE#366]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [PASS][173] -> [ABORT][174] ([Intel XE#7169]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#4733]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#944]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#7174]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-3/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#3342]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_vm@out-of-memory: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#5745]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-7/igt@xe_vm@out-of-memory.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-bmg: [INCOMPLETE][180] ([Intel XE#6819]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [DMESG-WARN][182] ([Intel XE#5354]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][184] ([Intel XE#2291]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][186] ([Intel XE#4633]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][188] ([Intel XE#3009]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_dp_aux_dev.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][190] ([Intel XE#4294]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][192] ([Intel XE#2316]) -> [PASS][193] +4 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][194] ([Intel XE#4227]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-2/igt@kms_vrr@flip-basic.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][196] ([Intel XE#2142]) -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][198] ([Intel XE#6321]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-lnl: [ABORT][200] ([Intel XE#7169]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-4/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-lnl-8/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html #### Warnings #### * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-bmg: [ABORT][202] ([Intel XE#7169]) -> [SKIP][203] ([Intel XE#2252]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][204] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][205] ([Intel XE#2341]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: [FAIL][206] ([Intel XE#3304]) -> [SKIP][207] ([Intel XE#7194]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [FAIL][208] ([Intel XE#6707]) -> [SKIP][209] ([Intel XE#7194]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][210] ([Intel XE#2312]) -> [SKIP][211] ([Intel XE#4141]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][212] ([Intel XE#4141]) -> [SKIP][213] ([Intel XE#2312]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][214] ([Intel XE#2312]) -> [SKIP][215] ([Intel XE#2311]) +10 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][216] ([Intel XE#2311]) -> [SKIP][217] ([Intel XE#2312]) +12 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][218] ([Intel XE#2313]) -> [SKIP][219] ([Intel XE#2312]) +12 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][220] ([Intel XE#2312]) -> [SKIP][221] ([Intel XE#2313]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][222] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][223] ([Intel XE#3544]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][224] ([Intel XE#4596]) -> [SKIP][225] ([Intel XE#5021]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][226] ([Intel XE#5466]) -> [ABORT][227] ([Intel XE#5466] / [Intel XE#6652]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#6983]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6983 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8738 -> IGTPW_14501 IGTPW_14501: 14501 IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14501/index.html [-- Attachment #2: Type: text/html, Size: 65458 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-02-06 6:38 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-05 7:04 [PATCH i-g-t v3 0/3] Run PSR2 and PR tests on panel supporting both Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 1/3] tests/intel/kms_psr2_sf: Drop Early Transport flag from data_t Jouni Högander 2026-02-05 7:04 ` [PATCH i-g-t v3 2/3] tests/intel/kms_psr2_sf: Check pipe and output validity for Selective Fetch test Jouni Högander 2026-02-06 5:58 ` [i-g-t,v3,2/3] " Joshi, Kunal1 2026-02-06 6:38 ` Hogander, Jouni 2026-02-05 7:04 ` [PATCH i-g-t v3 3/3] tests/kms_psr2_sf: Allow testing of both PSR2 and Panel Replay if supported Jouni Högander 2026-02-05 8:06 ` ✓ Xe.CI.BAT: success for Run PSR2 and PR tests on panel supporting both (rev3) Patchwork 2026-02-05 8:36 ` ✓ i915.CI.BAT: " Patchwork 2026-02-05 23:20 ` ✗ i915.CI.Full: failure " Patchwork 2026-02-06 2:48 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox