* [CI 0/5] tests: some igt_crtc_for_pipe() reduction
@ 2026-03-24 9:01 Jani Nikula
2026-03-24 9:01 ` [CI 1/5] tests/kms_bw: fix misleading indent Jani Nikula
` (8 more replies)
0 siblings, 9 replies; 10+ messages in thread
From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw)
To: igt-dev; +Cc: jani.nikula
Picked up some patches from [1] for CI results and merging.
[1] https://lore.kernel.org/r/cover.1774002591.git.jani.nikula@intel.com
Jani Nikula (5):
tests/kms_bw: fix misleading indent
tests/kms_bw: clarify what's going on with proper variable naming
tests/kms_bw: avoid igt_crtc_for_pipe() and crtc->pipe usage
tests/kms_explicit_fence: store igt_crtc_t* instead of pipe in data
lib/kms: convert igt_crtc_for_pipe() into a proper function
lib/igt_kms.c | 8 +++++++
lib/igt_kms.h | 8 +------
tests/kms_bw.c | 48 ++++++++++++++++++++------------------
tests/kms_explicit_fence.c | 14 +++++------
4 files changed, 41 insertions(+), 37 deletions(-)
--
2.47.3
^ permalink raw reply [flat|nested] 10+ messages in thread* [CI 1/5] tests/kms_bw: fix misleading indent 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula @ 2026-03-24 9:01 ` Jani Nikula 2026-03-24 9:01 ` [CI 2/5] tests/kms_bw: clarify what's going on with proper variable naming Jani Nikula ` (7 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, Ville Syrjälä igt_subtest_f() starts a block. Indent the run_test_linear_tiling() calls properly. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- tests/kms_bw.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index a6cb46e8244f..1c339f252a3e 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -317,17 +317,15 @@ int igt_main() * _amount_ of pipes */ for (i = 0; i < IGT_MAX_PIPES; i++) { for (j = 0; j < ARRAY_SIZE(test_mode); j++) { - igt_subtest_f("linear-tiling-%d-displays-%s", i+1, - test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j], false); + igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], false); } } for (i = 0; i < IGT_MAX_PIPES; i++) { for (j = 0; j < ARRAY_SIZE(test_mode); j++) { - igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, - test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j], true); + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, test_mode[j].name) + run_test_linear_tiling(&data, i, &test_mode[j], true); } } -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [CI 2/5] tests/kms_bw: clarify what's going on with proper variable naming 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula 2026-03-24 9:01 ` [CI 1/5] tests/kms_bw: fix misleading indent Jani Nikula @ 2026-03-24 9:01 ` Jani Nikula 2026-03-24 9:01 ` [CI 3/5] tests/kms_bw: avoid igt_crtc_for_pipe() and crtc->pipe usage Jani Nikula ` (6 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, Ville Syrjälä Use "n_crtc" to mean the number of CRTCs, and pass that around instead of "pipe" that was actually the number of CRTCs minus one. Small things like this make a huge difference in the readability, especially when the -1 is embedded into >= comparisons. Note: I would've preferred to pull the n_crtcs into the top level loop, but unfortunately that leads into a discrepancy with the supposedly dynamic test documentation generation, which has pipes up to 16. The simple but dumb way appears to be to just generate all the subtests, and then skip. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- tests/kms_bw.c | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 1c339f252a3e..056aa667d795 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -216,7 +216,7 @@ static bool output_mode_supported(igt_output_t *output, const drmModeModeInfo *m return false; } -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) { +static void run_test_linear_tiling(data_t *data, int n_crtcs, const drmModeModeInfo *mode, bool physical) { igt_display_t *display = &data->display; igt_output_t *output; struct igt_fb buffer[IGT_MAX_PIPES]; @@ -230,16 +230,16 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo * not give the numver of valid crtcs and always return IGT_MAX_PIPES */ for_each_crtc(display, crtc) num_pipes++; - igt_skip_on_f(pipe >= num_pipes, - "ASIC does not have %d pipes\n", pipe + 1); + igt_skip_on_f(n_crtcs > num_pipes, + "ASIC does not have %d pipes\n", n_crtcs); test_init(data, physical); - igt_skip_on_f(physical && pipe >= data->connected_outputs, - "Only %d connected need %d connected\n", data->connected_outputs, pipe + 1); + igt_skip_on_f(physical && n_crtcs > data->connected_outputs, + "Only %d connected need %d connected\n", data->connected_outputs, n_crtcs); /* create buffers */ - for (i = 0; i <= pipe; i++) { + for (i = 0; i < n_crtcs; i++) { crtc = igt_crtc_for_pipe(display, i); output = physical ? data->connected_output[i] : data->output[i]; @@ -272,7 +272,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); - for (i = 0; i <= pipe; i++) { + for (i = 0; i < n_crtcs; i++) { output = physical ? data->connected_output[i] : data->output[i]; if (!output || !output_mode_supported(output, mode)) { continue; @@ -283,7 +283,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo "CRC is zero\n"); } - for (i = pipe; i >= 0; i--) { + for (i = n_crtcs - 1; i >= 0; i--) { output = physical ? data->connected_output[i] : data->output[i]; if (!output || !output_mode_supported(output, mode)) continue; @@ -297,6 +297,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo int igt_main() { data_t data; + int n_crtcs; int i = 0, j = 0; memset(&data, 0, sizeof(data)); @@ -316,16 +317,20 @@ int igt_main() /* We're not using for_each_pipe_static because we need the * _amount_ of pipes */ for (i = 0; i < IGT_MAX_PIPES; i++) { + n_crtcs = i + 1; + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { - igt_subtest_f("linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j], false); + igt_subtest_f("linear-tiling-%d-displays-%s", n_crtcs, test_mode[j].name) + run_test_linear_tiling(&data, n_crtcs, &test_mode[j], false); } } for (i = 0; i < IGT_MAX_PIPES; i++) { + n_crtcs = i + 1; + for (j = 0; j < ARRAY_SIZE(test_mode); j++) { - igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1, test_mode[j].name) - run_test_linear_tiling(&data, i, &test_mode[j], true); + igt_subtest_f("connected-linear-tiling-%d-displays-%s", n_crtcs, test_mode[j].name) + run_test_linear_tiling(&data, n_crtcs, &test_mode[j], true); } } -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [CI 3/5] tests/kms_bw: avoid igt_crtc_for_pipe() and crtc->pipe usage 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula 2026-03-24 9:01 ` [CI 1/5] tests/kms_bw: fix misleading indent Jani Nikula 2026-03-24 9:01 ` [CI 2/5] tests/kms_bw: clarify what's going on with proper variable naming Jani Nikula @ 2026-03-24 9:01 ` Jani Nikula 2026-03-24 9:01 ` [CI 4/5] tests/kms_explicit_fence: store igt_crtc_t* instead of pipe in data Jani Nikula ` (5 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, Ville Syrjälä The test doesn't really care about pipes. It does conflate a lot of loops with pipes. Try to avoid that by using the CRTC index instead. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- tests/kms_bw.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/tests/kms_bw.c b/tests/kms_bw.c index 056aa667d795..4df5c2cee885 100644 --- a/tests/kms_bw.c +++ b/tests/kms_bw.c @@ -125,12 +125,11 @@ static void test_init(data_t *data, bool physical) data->connected_outputs = 0; for_each_crtc(display, crtc) { - data->crtc[crtc->pipe] = crtc; - data->primary[crtc->pipe] = igt_crtc_get_plane_type(crtc, - DRM_PLANE_TYPE_PRIMARY); - data->pipe_crc[crtc->pipe] = - igt_crtc_crc_new(crtc, - IGT_PIPE_CRC_SOURCE_AUTO); + data->crtc[crtc->crtc_index] = crtc; + data->primary[crtc->crtc_index] = + igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY); + data->pipe_crc[crtc->crtc_index] = + igt_crtc_crc_new(crtc, IGT_PIPE_CRC_SOURCE_AUTO); } for (i = 0; i < display->n_outputs && i < max_pipes; i++) { @@ -163,8 +162,8 @@ static void test_fini(data_t *data) igt_crtc_t *crtc; for_each_crtc(display, crtc) { - if (data->pipe_crc[crtc->pipe]) - igt_pipe_crc_free(data->pipe_crc[crtc->pipe]); + if (data->pipe_crc[crtc->crtc_index]) + igt_pipe_crc_free(data->pipe_crc[crtc->crtc_index]); } igt_display_reset(display); @@ -240,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int n_crtcs, const drmModeModeI /* create buffers */ for (i = 0; i < n_crtcs; i++) { - crtc = igt_crtc_for_pipe(display, i); + crtc = data->crtc[i]; output = physical ? data->connected_output[i] : data->output[i]; if (!output || !output_mode_supported(output, mode)) { -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [CI 4/5] tests/kms_explicit_fence: store igt_crtc_t* instead of pipe in data 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (2 preceding siblings ...) 2026-03-24 9:01 ` [CI 3/5] tests/kms_bw: avoid igt_crtc_for_pipe() and crtc->pipe usage Jani Nikula @ 2026-03-24 9:01 ` Jani Nikula 2026-03-24 9:01 ` [CI 5/5] lib/kms: convert igt_crtc_for_pipe() into a proper function Jani Nikula ` (4 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, Ville Syrjälä The CRTC originates from for_each_crtc_with_single_output() and is thus always valid. Just store the igt_crtc_t* pointer instead of the pipe in data, so that we can avoid igt_crtc_for_pipe() lookups and its return value checks. While at it, also fix the call to igt_pipe_crc_new() by passing the CRTC index instead of pipe to it. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- tests/kms_explicit_fence.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c index a7d127c93afc..0b85a9402383 100644 --- a/tests/kms_explicit_fence.c +++ b/tests/kms_explicit_fence.c @@ -54,7 +54,7 @@ typedef struct { int drm_fd; igt_display_t display; igt_output_t *output; - enum pipe pipe; + igt_crtc_t *crtc; igt_plane_t *primary; igt_plane_t *overlay1; igt_plane_t *overlay2; @@ -91,7 +91,7 @@ static void setup_output(data_t *data) DRM_PLANE_TYPE_OVERLAY, 1); data->output = output; - data->pipe = crtc->pipe; + data->crtc = crtc; data->mode = igt_output_get_mode(output); data->width = data->mode->hdisplay; data->height = data->mode->vdisplay; @@ -141,7 +141,7 @@ static void create_fbs(data_t *data) static void setup_initial_modeset(data_t *data) { /* Initial modeset to establish baseline (no fences) */ - igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe)); + igt_output_set_crtc(data->output, data->crtc); igt_plane_set_fb(data->primary, &data->primary_fb); igt_plane_set_fb(data->overlay1, &data->overlay1_fb); igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y); @@ -250,7 +250,7 @@ static void multiplane_atomic_fence_wait(data_t *data) data->overlay1_fb.width, OVERLAY1_POS_Y); /* Request OUT_FENCE to track when display update completes */ - igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe)); + igt_crtc_request_out_fence(data->crtc); /* * The atomic commit should succeed immediately (NONBLOCK mode), @@ -268,7 +268,7 @@ static void multiplane_atomic_fence_wait(data_t *data) igt_assert_eq(ret, 0); /* Get the out fence to monitor completion */ - out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd; + out_fence = data->crtc->out_fence_fd; igt_assert(out_fence >= 0); /* Verify overlay2 fence (last one) is still unsignaled */ @@ -324,7 +324,7 @@ static void multiplane_atomic_fence_wait(data_t *data) igt_plane_set_fence_fd(planes[i], -1); } close(out_fence); - igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1; + data->crtc->out_fence_fd = -1; } static void reset_display_state(data_t *data) @@ -349,7 +349,7 @@ int igt_main() setup_output(&data); create_fbs(&data); - data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe, + data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc->crtc_index, IGT_PIPE_CRC_SOURCE_AUTO); } -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [CI 5/5] lib/kms: convert igt_crtc_for_pipe() into a proper function 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (3 preceding siblings ...) 2026-03-24 9:01 ` [CI 4/5] tests/kms_explicit_fence: store igt_crtc_t* instead of pipe in data Jani Nikula @ 2026-03-24 9:01 ` Jani Nikula 2026-03-24 12:49 ` ✓ Xe.CI.BAT: success for tests: some igt_crtc_for_pipe() reduction Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-24 9:01 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, Ville Syrjälä The usage of igt_crtc_for_pipe() has been reduced so much that having it as static inline is no longer justified for performance reasons. Prefer hiding the implementation details instead by turning it into a proper function. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- lib/igt_kms.c | 8 ++++++++ lib/igt_kms.h | 8 +------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 481b893fc025..56289eec55e5 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -8065,6 +8065,14 @@ igt_crtc_t *igt_crtc_for_crtc_index(igt_display_t *display, int crtc_index) return NULL; } +igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum pipe pipe) +{ + if (pipe == PIPE_NONE) + return NULL; + + return &display->crtcs[pipe]; +} + /* * igt_first_crtc: * @display: pointer to igt_display_t diff --git a/lib/igt_kms.h b/lib/igt_kms.h index d7cc22d6cd61..10ef5a56a1ed 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -575,15 +575,9 @@ int igt_display_n_crtcs(igt_display_t *display); const char *igt_crtc_name(igt_crtc_t *crtc); -static inline igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum pipe pipe) -{ - if (pipe == PIPE_NONE) - return NULL; - - return &display->crtcs[pipe]; -} igt_crtc_t *igt_crtc_for_crtc_id(igt_display_t *display, uint32_t crtc_id); igt_crtc_t *igt_crtc_for_crtc_index(igt_display_t *display, int crtc_index); +igt_crtc_t *igt_crtc_for_pipe(igt_display_t *display, enum pipe pipe); igt_crtc_t *igt_first_crtc(igt_display_t *display); igt_crtc_t *igt_first_crtc_with_single_output(igt_display_t *display, igt_output_t **ret_output); igt_crtc_t *igt_next_crtc(igt_display_t *display, igt_crtc_t *crtc); -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tests: some igt_crtc_for_pipe() reduction 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (4 preceding siblings ...) 2026-03-24 9:01 ` [CI 5/5] lib/kms: convert igt_crtc_for_pipe() into a proper function Jani Nikula @ 2026-03-24 12:49 ` Patchwork 2026-03-24 13:10 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-24 12:49 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2306 bytes --] == Series Details == Series: tests: some igt_crtc_for_pipe() reduction URL : https://patchwork.freedesktop.org/series/163761/ State : success == Summary == CI Bug Log - changes from XEIGT_8822_BAT -> XEIGTPW_14842_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14842_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#6520]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/bat-dg2-oem2/igt@xe_waitfence@reltime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/bat-dg2-oem2/igt@xe_waitfence@reltime.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [DMESG-WARN][5] ([Intel XE#7483]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 Build changes ------------- * IGT: IGT_8822 -> IGTPW_14842 * Linux: xe-4766-e16dd4cd56376becbd27bd43084526f42ca2eb23 -> xe-4770-4b7edcc15b85ee23b9928da304c47cc1cdb30e87 IGTPW_14842: 14842 IGT_8822: 8822 xe-4766-e16dd4cd56376becbd27bd43084526f42ca2eb23: e16dd4cd56376becbd27bd43084526f42ca2eb23 xe-4770-4b7edcc15b85ee23b9928da304c47cc1cdb30e87: 4b7edcc15b85ee23b9928da304c47cc1cdb30e87 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/index.html [-- Attachment #2: Type: text/html, Size: 3014 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tests: some igt_crtc_for_pipe() reduction 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (5 preceding siblings ...) 2026-03-24 12:49 ` ✓ Xe.CI.BAT: success for tests: some igt_crtc_for_pipe() reduction Patchwork @ 2026-03-24 13:10 ` Patchwork 2026-03-24 21:36 ` ✓ i915.CI.Full: " Patchwork 2026-03-25 0:27 ` ✗ Xe.CI.FULL: failure " Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-24 13:10 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2392 bytes --] == Series Details == Series: tests: some igt_crtc_for_pipe() reduction URL : https://patchwork.freedesktop.org/series/163761/ State : success == Summary == CI Bug Log - changes from IGT_8822 -> IGTPW_14842 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14842 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#15673]) +78 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8822/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8822/bat-dg2-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8822/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8822 -> IGTPW_14842 * Linux: CI_DRM_18196 -> CI_DRM_18199 CI-20190529: 20190529 CI_DRM_18196: 9951377bd719c783792edfb3c7aa27a088ecdab9 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18199: 4b7edcc15b85ee23b9928da304c47cc1cdb30e87 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14842: 14842 IGT_8822: 8822 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/index.html [-- Attachment #2: Type: text/html, Size: 3132 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.Full: success for tests: some igt_crtc_for_pipe() reduction 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (6 preceding siblings ...) 2026-03-24 13:10 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-24 21:36 ` Patchwork 2026-03-25 0:27 ` ✗ Xe.CI.FULL: failure " Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-24 21:36 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 137116 bytes --] == Series Details == Series: tests: some igt_crtc_for_pipe() reduction URL : https://patchwork.freedesktop.org/series/163761/ State : success == Summary == CI Bug Log - changes from CI_DRM_18199_full -> IGTPW_14842_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_18199_full and IGTPW_14842_full: ### New IGT tests (4) ### * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-b-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in IGTPW_14842_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][8] -> [INCOMPLETE][9] ([i915#12392] / [i915#13356]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#14544] / [i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk10: NOTRUN -> [INCOMPLETE][12] ([i915#13356]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][13] ([i915#1099]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_ctx_sseu@engines.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-7/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#13390]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@concurrent: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#14544]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][36] -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#2190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-5/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@coherency: - shard-glk11: NOTRUN -> [SKIP][49] +121 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk11/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][54] ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#13398]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-y-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_14842/shard-dg1-19/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_14842/shard-glk1/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][65] ([i915#3323]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_workarounds@suspend-resume: - shard-glk11: NOTRUN -> [INCOMPLETE][68] ([i915#13356] / [i915#14586]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk11/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [INCOMPLETE][69] ([i915#13356]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@gen9_exec_parse@cmd-crossing-page.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-3/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#11527]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#14118]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#14118]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#14118]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html - shard-tglu: NOTRUN -> [SKIP][81] ([i915#8399]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#6590]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#4387]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][84] -> [SKIP][85] ([i915#7984]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-mtlp-1/igt@i915_power@sanity.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][86] ([i915#12061]) +1 other test dmesg-fail [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@forcewake: - shard-dg2: [PASS][87] -> [ABORT][88] ([i915#15140]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-8/igt@i915_suspend@forcewake.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-10/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#7707]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4212]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4212]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#5190]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#12761]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#12761] / [i915#14995]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#1769] / [i915#3555]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-snb: NOTRUN -> [SKIP][98] ([i915#1769]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#5286]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#5286]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3828]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][104] ([i915#3828]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5190]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3638]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3638]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][108] +13 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][109] +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +117 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#6095]) +55 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#12313]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6095]) +34 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#12313]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#6095]) +89 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#12805]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#15582]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#6095]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544] / [i915#6095]) +12 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#6095]) +184 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14098] / [i915#6095]) +50 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-6/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][128] ([i915#6095]) +70 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3742]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#13783]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][131] +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_chamelium_color@ctm-max.html - shard-mtlp: NOTRUN -> [SKIP][132] +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#15865]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#15865]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#15865]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#15330]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#15330] / [i915#3299]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#15330] / [i915#3116]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#15330] / [i915#3299]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#15330] / [i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#13049]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][150] ([i915#13566]) +3 other tests fail [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [PASS][151] -> [FAIL][152] ([i915#13566]) +2 other tests fail [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#8814]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3555]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: NOTRUN -> [FAIL][155] ([i915#13566]) +2 other tests fail [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-dg1: [PASS][157] -> [DMESG-WARN][158] ([i915#4423]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-19/igt@kms_cursor_crc@cursor-random-256x85.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#13049]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][161] -> [FAIL][162] ([i915#13566]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#13046] / [i915#5354]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#9809]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk10: NOTRUN -> [FAIL][165] ([i915#15804]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][166] ([i915#15768]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#4103]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#9723]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13691]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3804]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3804]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_dsc@dsc-with-bpc-formats.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@chamelium: - shard-snb: NOTRUN -> [SKIP][177] +122 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-snb6/igt@kms_feature_discovery@chamelium.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#2065] / [i915#4854]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-4/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4854]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#1839]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#14544] / [i915#1839]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#1839]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#1839]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#1839]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#9337]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#14544] / [i915#658]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#9934]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3637] / [i915#9934]) +10 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#9934]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#9934]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][196] ([i915#12745] / [i915#4839] / [i915#6113]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][197] ([i915#12745] / [i915#4839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][198] ([i915#4839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][199] ([i915#4839] / [i915#6113]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#9934]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#15643]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][202] ([i915#15643]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#15643]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#15643]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#15643]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#15643] / [i915#5190]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#1825]) +12 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#15102]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#15104]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#15104]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][212] ([i915#15104]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#15102]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15102]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8708]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#1825]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +16 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][218] +18 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +34 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-stridechange: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#15102]) +26 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#10055]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15102]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102] / [i915#3458]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#15102] / [i915#3023]) +14 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3458]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][227] +60 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#15102]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][230] ([i915#15436]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#12713]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#12713]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#12713]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#12713]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#12713]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15460]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15459]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#15458]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15458]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15458]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#15815]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#6301]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-9/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][244] -> [INCOMPLETE][245] ([i915#12756] / [i915#13476]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][246] -> [INCOMPLETE][247] ([i915#13476]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-glk10: NOTRUN -> [SKIP][248] +185 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#15709]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#14544] / [i915#15709]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#15709]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15709]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#15709]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15709]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15709]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15608]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#13026]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][258] ([i915#12178]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][259] ([i915#7862]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][260] ([i915#10647] / [i915#12177]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][261] ([i915#10647]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][262] ([i915#10647] / [i915#12169]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][263] ([i915#10647]) +1 other test fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#11614] / [i915#3582]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-1/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#13958]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#14259]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#6953] / [i915#9423]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-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][271] ([i915#15329]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#15329] / [i915#3555]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#15329]) +8 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12343]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#5354]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [PASS][276] -> [SKIP][277] ([i915#15073]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#15073]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#4077]) +8 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][280] -> [SKIP][281] ([i915#15073]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#15073]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#6524] / [i915#6805]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][285] ([i915#11520]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12316]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][287] ([i915#11520]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][288] ([i915#11520]) +13 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#11520]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#11520]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][291] ([i915#11520]) +4 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#11520]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#11520]) +9 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#9683]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9683]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +21 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-pr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9732]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#9732]) +24 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#9732]) +13 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-3/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +11 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][301] +481 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9688]) +11 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-gtt.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#4077] / [i915#9688]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9685]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#9685]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#5289]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#5289]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][309] ([i915#13179]) +1 other test abort [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_setmode@invalid-clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8809] / [i915#8823]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk10: NOTRUN -> [FAIL][312] ([i915#10959]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][313] ([i915#12276]) +1 other test incomplete [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555]) +4 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-10/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8808]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-3/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][316] ([i915#15243] / [i915#3555]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#15243] / [i915#3555]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#11920]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#2433]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][321] -> [FAIL][322] ([i915#15453]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][323] -> [FAIL][324] ([i915#15453]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][325] ([i915#4349]) +2 other tests fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-6/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][326] ([i915#4349]) +4 other tests fail [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk11: NOTRUN -> [ABORT][327] ([i915#15778]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk11/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8516]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-6/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-mtlp: [PASS][329] -> [FAIL][330] ([i915#4349]) +4 other tests fail [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-mtlp-6/igt@perf_pmu@semaphore-busy@vcs1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#3708]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#9917]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0: - shard-rkl: [INCOMPLETE][333] ([i915#13356]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@gem_exec_suspend@basic-s0.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][335] ([i915#13029] / [i915#14545]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-14/igt@i915_module_load@reload-no-display.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [ABORT][337] ([i915#15060]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-1/igt@i915_pm_rpm@system-suspend.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@i915_pm_rpm@system-suspend.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][339] ([i915#15662]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][341] ([i915#15733] / [i915#5138]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: [DMESG-WARN][343] ([i915#4423]) -> [PASS][344] +3 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-13/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-16/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][345] ([i915#15582]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][347] ([i915#13566]) -> [PASS][348] +4 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html - shard-tglu: [FAIL][349] ([i915#13566]) -> [PASS][350] +3 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][351] ([i915#4767]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend: - shard-dg2: [INCOMPLETE][353] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1: - shard-snb: [ABORT][355] -> [PASS][356] +1 other test pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [SKIP][357] ([i915#15672]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-mtlp-5/igt@kms_force_connector_basic@force-edid.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][359] ([i915#3555] / [i915#8228]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-4/igt@kms_hdr@static-toggle.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [INCOMPLETE][361] ([i915#13026]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][363] ([i915#15073]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][365] ([i915#15073]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [SKIP][367] ([i915#15073]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [INCOMPLETE][369] ([i915#12276]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][371] ([i915#3555] / [i915#9323]) -> [SKIP][372] ([i915#14544] / [i915#3555] / [i915#9323]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][373] ([i915#13008]) -> [SKIP][374] ([i915#13008] / [i915#14544]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][375] ([i915#14544] / [i915#7697]) -> [SKIP][376] ([i915#7697]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][377] ([i915#280]) -> [SKIP][378] ([i915#14544] / [i915#280]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][379] ([i915#14544] / [i915#6334]) -> [SKIP][380] ([i915#6334]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][381] ([i915#6344]) -> [SKIP][382] ([i915#14544] / [i915#6344]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: [SKIP][383] ([i915#3281]) -> [SKIP][384] ([i915#14544] / [i915#3281]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: [SKIP][385] ([i915#14544] / [i915#3281]) -> [SKIP][386] ([i915#3281]) +6 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][387] ([i915#14544] / [i915#4613]) -> [SKIP][388] ([i915#4613]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][389] ([i915#4613]) -> [SKIP][390] ([i915#14544] / [i915#4613]) +3 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-rkl: [SKIP][391] ([i915#284]) -> [SKIP][392] ([i915#14544] / [i915#284]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@gem_media_vme.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][393] ([i915#14544] / [i915#3282]) -> [SKIP][394] ([i915#3282]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][395] ([i915#3282]) -> [SKIP][396] ([i915#14544] / [i915#3282]) +3 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-7/igt@gem_pread@snoop.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][397] ([i915#13717] / [i915#14544]) -> [SKIP][398] ([i915#13717]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][399] ([i915#8411]) -> [SKIP][400] ([i915#14544] / [i915#8411]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][401] ([i915#14544] / [i915#15656]) -> [SKIP][402] ([i915#15656]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: [SKIP][403] ([i915#2527]) -> [SKIP][404] ([i915#14544] / [i915#2527]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][405] ([i915#14544] / [i915#2527]) -> [SKIP][406] ([i915#2527]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][407] ([i915#14544] / [i915#5723]) -> [SKIP][408] ([i915#5723]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][409] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][410] ([i915#1769] / [i915#3555]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][411] ([i915#5286]) -> [SKIP][412] ([i915#14544] / [i915#5286]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][413] ([i915#14544] / [i915#5286]) -> [SKIP][414] ([i915#5286]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][415] ([i915#3638]) -> [SKIP][416] ([i915#14544] / [i915#3638]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][417] ([i915#14544] / [i915#3638]) -> [SKIP][418] ([i915#3638]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][419] ([i915#14544]) -> [SKIP][420] +9 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][421] -> [SKIP][422] ([i915#14544]) +12 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][423] ([i915#12313]) -> [SKIP][424] ([i915#12313] / [i915#14544]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][425] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][426] ([i915#14098] / [i915#6095]) +11 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][427] ([i915#12805]) -> [SKIP][428] ([i915#12805] / [i915#14544]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#6095]) -> [SKIP][430] ([i915#6095]) +8 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][431] ([i915#14098] / [i915#6095]) -> [SKIP][432] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][433] ([i915#6095]) -> [SKIP][434] ([i915#14544] / [i915#6095]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-rkl: [SKIP][435] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][436] ([i915#11151] / [i915#7828]) +2 other tests skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][437] ([i915#11151] / [i915#7828]) -> [SKIP][438] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][439] ([i915#15865]) -> [SKIP][440] ([i915#14544] / [i915#15865]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_content_protection@content-type-change.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][442] ([i915#15330] / [i915#3116]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][443] ([i915#15330]) -> [SKIP][444] ([i915#14544] / [i915#15330]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][445] ([i915#7173]) -> [SKIP][446] ([i915#15865]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-10/igt@kms_content_protection@legacy.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#15865]) -> [SKIP][448] ([i915#15865]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_content_protection@mei-interface.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][449] ([i915#13049] / [i915#14544]) -> [SKIP][450] ([i915#13049]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][451] ([i915#13049]) -> [SKIP][452] ([i915#13049] / [i915#14544]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#3555]) -> [SKIP][454] ([i915#3555]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][455] ([i915#3555]) -> [SKIP][456] ([i915#14544] / [i915#3555]) +3 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][457] ([i915#4103]) -> [SKIP][458] ([i915#14544] / [i915#4103]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#9723]) -> [SKIP][460] ([i915#9723]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][461] ([i915#13691]) -> [SKIP][462] ([i915#13691] / [i915#14544]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][463] ([i915#13749]) -> [SKIP][464] ([i915#13749] / [i915#14544]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][465] ([i915#3840]) -> [SKIP][466] ([i915#14544] / [i915#3840]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][467] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][468] ([i915#3555] / [i915#3840]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][469] ([i915#658]) -> [SKIP][470] ([i915#14544] / [i915#658]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@kms_feature_discovery@psr1.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: [SKIP][471] ([i915#4423] / [i915#9934]) -> [SKIP][472] ([i915#9934]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-17/igt@kms_flip@2x-blocking-wf_vblank.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-19/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][473] ([i915#9934]) -> [SKIP][474] ([i915#14544] / [i915#9934]) +3 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][475] ([i915#14544] / [i915#9934]) -> [SKIP][476] ([i915#9934]) +4 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][477] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][478] ([i915#12314] / [i915#12745] / [i915#4839]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-glk9/igt@kms_flip@flip-vs-suspend.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][479] ([i915#12745]) -> [INCOMPLETE][480] ([i915#12314] / [i915#12745]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][481] ([i915#15643]) -> [SKIP][482] ([i915#14544] / [i915#15643]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: [SKIP][483] ([i915#14544] / [i915#15643]) -> [SKIP][484] ([i915#15643]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#1825]) -> [SKIP][486] ([i915#1825]) +16 other tests skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#15102]) -> [SKIP][488] ([i915#15102]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-dg1: [SKIP][489] -> [SKIP][490] ([i915#4423]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][491] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][492] ([i915#15102] / [i915#3458]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][493] ([i915#15102] / [i915#3458]) -> [SKIP][494] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][495] ([i915#8708]) -> [SKIP][496] ([i915#4423] / [i915#8708]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][497] ([i915#15102] / [i915#3023]) -> [SKIP][498] ([i915#14544] / [i915#15102] / [i915#3023]) +14 other tests skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][500] ([i915#15102] / [i915#3023]) +10 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][501] ([i915#1825]) -> [SKIP][502] ([i915#14544] / [i915#1825]) +14 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][503] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][504] ([i915#15436]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#15458]) -> [SKIP][506] ([i915#15458]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][507] ([i915#15638] / [i915#15722]) -> [SKIP][508] ([i915#14544] / [i915#15638] / [i915#15722]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#15709]) -> [SKIP][510] ([i915#15709]) +3 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][511] ([i915#15709]) -> [SKIP][512] ([i915#14544] / [i915#15709]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: [SKIP][513] ([i915#14544] / [i915#15329]) -> [SKIP][514] ([i915#15329]) +6 other tests skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/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-rkl: [SKIP][515] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][516] ([i915#15329] / [i915#3555]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#5354]) -> [SKIP][518] ([i915#5354]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][519] ([i915#14544] / [i915#15073]) -> [SKIP][520] ([i915#15073]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][521] ([i915#14544] / [i915#15403]) -> [SKIP][522] ([i915#15403]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_pm_rpm@package-g7.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-2/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][523] ([i915#11520]) -> [SKIP][524] ([i915#11520] / [i915#14544]) +5 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg1: [SKIP][525] ([i915#11520]) -> [SKIP][526] ([i915#11520] / [i915#4423]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][527] ([i915#11520] / [i915#14544]) -> [SKIP][528] ([i915#11520]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][529] ([i915#1072] / [i915#9732]) -> [SKIP][530] ([i915#1072] / [i915#14544] / [i915#9732]) +12 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: [SKIP][531] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][532] ([i915#1072] / [i915#9732]) +7 other tests skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][533] ([i915#13029] / [i915#15778]) -> [ABORT][534] ([i915#15778]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg2-6/igt@perf_pmu@module-unload.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg2-6/igt@perf_pmu@module-unload.html - shard-dg1: [ABORT][535] ([i915#13029] / [i915#15778]) -> [ABORT][536] ([i915#15778]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-dg1-19/igt@perf_pmu@module-unload.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-dg1-18/igt@perf_pmu@module-unload.html - shard-tglu: [ABORT][537] ([i915#13029] / [i915#15778]) -> [ABORT][538] ([i915#15778]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-tglu-5/igt@perf_pmu@module-unload.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-tglu-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [INCOMPLETE][539] ([i915#13520]) -> [ABORT][540] ([i915#15131]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-6/igt@perf_pmu@rc6-suspend.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-1/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][541] ([i915#3291] / [i915#3708]) -> [SKIP][542] ([i915#14544] / [i915#3291] / [i915#3708]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-3/igt@prime_vgem@basic-write.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][543] ([i915#3708]) -> [SKIP][544] ([i915#14544] / [i915#3708]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: [SKIP][545] ([i915#9917]) -> [SKIP][546] ([i915#14544] / [i915#9917]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18199/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [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#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [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#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [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#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [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#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [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#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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [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#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [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#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [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#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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8822 -> IGTPW_14842 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18199: 4b7edcc15b85ee23b9928da304c47cc1cdb30e87 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14842: 14842 IGT_8822: 8822 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14842/index.html [-- Attachment #2: Type: text/html, Size: 185437 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for tests: some igt_crtc_for_pipe() reduction 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula ` (7 preceding siblings ...) 2026-03-24 21:36 ` ✓ i915.CI.Full: " Patchwork @ 2026-03-25 0:27 ` Patchwork 8 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-25 0:27 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46184 bytes --] == Series Details == Series: tests: some igt_crtc_for_pipe() reduction URL : https://patchwork.freedesktop.org/series/163761/ State : failure == Summary == CI Bug Log - changes from XEIGT_8822_FULL -> XEIGTPW_14842_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14842_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14842_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_14842_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter: - shard-lnl: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-1/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html * igt@xe_pmu@gt-frequency: - shard-bmg: [PASS][2] -> [WARN][3] +1 other test warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-4/igt@xe_pmu@gt-frequency.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@xe_pmu@gt-frequency.html #### Warnings #### * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: [SKIP][4] ([Intel XE#2191] / [Intel XE#7373]) -> [SKIP][5] +7 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][6] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [SKIP][7] +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: [SKIP][8] ([Intel XE#1512] / [Intel XE#7392]) -> [SKIP][9] +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html Known issues ------------ Here are the changes found in XEIGTPW_14842_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2370]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7642]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#6707] / [Intel XE#7439]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1424]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2291]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2291] / [Intel XE#7343]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#309] / [Intel XE#7343]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#4354]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4354] / [Intel XE#7386]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2316]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2316]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-8/igt@kms_flip@2x-plain-flip.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1421]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#301]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6312] / [Intel XE#651]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2311]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4141]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2352] / [Intel XE#7399]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2312]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#7308]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1503]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6911] / [Intel XE#7378]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7130]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#4596]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7376] / [Intel XE#870]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#7345]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#4609]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@kms_psr@psr2-primary-render.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1435]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1435]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6503]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1499]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-3/igt@kms_vrr@negative-basic.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7636]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1392]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7136]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority-smem: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#6874]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-dyn-priority-smem.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6874]) +12 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-basic: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7138]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-basic.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7138]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr.html * igt@xe_module_load@load: - shard-bmg: ([PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99]) -> ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [SKIP][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125]) ([Intel XE#2457] / [Intel XE#7405]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-10/igt@xe_module_load@load.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@xe_module_load@load.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-7/igt@xe_module_load@load.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@xe_module_load@load.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@xe_module_load@load.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@xe_module_load@load.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-10/igt@xe_module_load@load.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@xe_module_load@load.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@xe_module_load@load.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-7/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-1/igt@xe_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-1/igt@xe_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-9/igt@xe_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@xe_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@xe_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-4/igt@xe_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-4/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-2/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-2/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-9/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-8/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-8/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-8/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-4/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-6/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-pagefault-basic: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#6964]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@xe_multigpu_svm@mgpu-pagefault-basic.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2245]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-5/igt@xe_pm@d3cold-basic.html - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2284] / [Intel XE#7370]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@xe_pm@d3cold-basic.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#944]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][132] -> [FAIL][133] ([Intel XE#6569]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html * igt@xe_survivability@i2c-functionality: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#6529] / [Intel XE#7331] / [Intel XE#7388]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-8/igt@xe_survivability@i2c-functionality.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][135] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][137] ([Intel XE#7084]) -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][139] ([Intel XE#2291]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][141] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][142] +2 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][143] ([Intel XE#2316]) -> [PASS][144] +6 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][145] ([Intel XE#7086]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][147] ([Intel XE#4596]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][149] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][151] ([Intel XE#6361]) -> [PASS][152] +2 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_setmode@basic.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][153] ([Intel XE#6361]) -> [PASS][154] +2 other tests pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][155] ([Intel XE#1435]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [FAIL][157] ([Intel XE#5625]) -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][159] ([Intel XE#5937]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-8/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][161] ([Intel XE#6569]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html #### Warnings #### * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][163] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [SKIP][164] ([Intel XE#7645]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [SKIP][165] ([Intel XE#7642]) -> [FAIL][166] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][167] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][168] ([Intel XE#7642]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-10/igt@kms_content_protection@lic-type-0.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [SKIP][169] ([Intel XE#7642]) -> [FAIL][170] ([Intel XE#6707] / [Intel XE#7439]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_content_protection@uevent-hdcp14.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][171] ([Intel XE#2311]) -> [SKIP][172] ([Intel XE#2312]) +13 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][173] ([Intel XE#4141]) -> [SKIP][174] ([Intel XE#2312]) +6 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#4141]) +10 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#2311]) +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][179] ([Intel XE#2313]) -> [SKIP][180] ([Intel XE#2312]) +16 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#2313]) +15 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][183] ([Intel XE#4596]) -> [SKIP][184] ([Intel XE#5021] / [Intel XE#7377]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][185] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][186] ([Intel XE#3904] / [Intel XE#7342]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8822/shard-bmg-3/igt@kms_rotation_crc@bad-tiling.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/shard-bmg-10/igt@kms_rotation_crc@bad-tiling.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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [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#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329 [Intel XE#7331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7331 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7388 [Intel XE#7392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7392 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7645 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [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_8822 -> IGTPW_14842 * Linux: xe-4766-e16dd4cd56376becbd27bd43084526f42ca2eb23 -> xe-4770-4b7edcc15b85ee23b9928da304c47cc1cdb30e87 IGTPW_14842: 14842 IGT_8822: 8822 xe-4766-e16dd4cd56376becbd27bd43084526f42ca2eb23: e16dd4cd56376becbd27bd43084526f42ca2eb23 xe-4770-4b7edcc15b85ee23b9928da304c47cc1cdb30e87: 4b7edcc15b85ee23b9928da304c47cc1cdb30e87 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14842/index.html [-- Attachment #2: Type: text/html, Size: 52931 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-25 0:27 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-24 9:01 [CI 0/5] tests: some igt_crtc_for_pipe() reduction Jani Nikula 2026-03-24 9:01 ` [CI 1/5] tests/kms_bw: fix misleading indent Jani Nikula 2026-03-24 9:01 ` [CI 2/5] tests/kms_bw: clarify what's going on with proper variable naming Jani Nikula 2026-03-24 9:01 ` [CI 3/5] tests/kms_bw: avoid igt_crtc_for_pipe() and crtc->pipe usage Jani Nikula 2026-03-24 9:01 ` [CI 4/5] tests/kms_explicit_fence: store igt_crtc_t* instead of pipe in data Jani Nikula 2026-03-24 9:01 ` [CI 5/5] lib/kms: convert igt_crtc_for_pipe() into a proper function Jani Nikula 2026-03-24 12:49 ` ✓ Xe.CI.BAT: success for tests: some igt_crtc_for_pipe() reduction Patchwork 2026-03-24 13:10 ` ✓ i915.CI.BAT: " Patchwork 2026-03-24 21:36 ` ✓ i915.CI.Full: " Patchwork 2026-03-25 0:27 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox