* [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater
@ 2024-10-07 18:28 Juha-Pekka Heikkila
2024-10-08 5:46 ` ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Juha-Pekka Heikkila @ 2024-10-07 18:28 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Juha-Pekka Heikkila
On display ver 20 onwards tile4 is not supported with horizontal flip
Bspec: 69853
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
drivers/gpu/drm/i915/display/intel_fb.c | 13 +++++++++++++
drivers/gpu/drm/i915/display/intel_fb.h | 1 +
drivers/gpu/drm/i915/display/skl_universal_plane.c | 11 +++++++++++
3 files changed, 25 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 6c2679e6c980..735fba73c9ad 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -439,6 +439,19 @@ bool intel_fb_needs_64k_phys(u64 modifier)
INTEL_PLANE_CAP_NEED64K_PHYS);
}
+/**
+ * intel_fb_is_tile4_modifier: Check if a modifier is a tile4 modifier type
+ * @modifier: Modifier to check
+ *
+ * Returns:
+ * Returns %true if @modifier is a tile4 modifier.
+ */
+bool intel_fb_is_tile4_modifier(u64 modifier)
+{
+ return plane_caps_contain_any(lookup_modifier(modifier)->plane_caps,
+ INTEL_PLANE_CAP_TILING_4);
+}
+
static bool check_modifier_display_ver_range(const struct intel_modifier_desc *md,
u8 display_ver_from, u8 display_ver_until)
{
diff --git a/drivers/gpu/drm/i915/display/intel_fb.h b/drivers/gpu/drm/i915/display/intel_fb.h
index 8240febff84c..d78993e5eb62 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.h
+++ b/drivers/gpu/drm/i915/display/intel_fb.h
@@ -36,6 +36,7 @@ bool intel_fb_is_ccs_modifier(u64 modifier);
bool intel_fb_is_rc_ccs_cc_modifier(u64 modifier);
bool intel_fb_is_mc_ccs_modifier(u64 modifier);
bool intel_fb_needs_64k_phys(u64 modifier);
+bool intel_fb_is_tile4_modifier(u64 modifier);
bool intel_fb_is_ccs_aux_plane(const struct drm_framebuffer *fb, int color_plane);
int intel_fb_rc_ccs_cc_plane(const struct drm_framebuffer *fb);
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 9207b7e96974..4755a0672739 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -1619,6 +1619,17 @@ static int skl_plane_check_fb(const struct intel_crtc_state *crtc_state,
return -EINVAL;
}
+ /*
+ * Display20 onward tile4 hflip is not supported
+ */
+ if (rotation & DRM_MODE_REFLECT_X &&
+ intel_fb_is_tile4_modifier(fb->modifier) &&
+ DISPLAY_VER(dev_priv) >= 20) {
+ drm_dbg_kms(&dev_priv->drm,
+ "horizontal flip is not supported with tile4 surface formats\n");
+ return -EINVAL;
+ }
+
if (drm_rotation_90_or_270(rotation)) {
if (!intel_fb_supports_90_270_rotation(to_intel_framebuffer(fb))) {
drm_dbg_kms(&dev_priv->drm,
--
2.45.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Fi.CI.BAT: success for drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater 2024-10-07 18:28 [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater Juha-Pekka Heikkila @ 2024-10-08 5:46 ` Patchwork 2024-10-08 7:55 ` [PATCH] " Pottumuttu, Sai Teja 2024-10-09 7:11 ` ✗ Fi.CI.IGT: failure for " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-08 5:46 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4869 bytes --] == Series Details == Series: drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater URL : https://patchwork.freedesktop.org/series/139664/ State : success == Summary == CI Bug Log - changes from CI_DRM_15489 -> Patchwork_139664v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): bat-rpls-4 Known issues ------------ Here are the changes found in Patchwork_139664v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-2: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-arlh-2/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][3] -> [ABORT][4] ([i915#12061]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-arlh-2/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-arlh-2/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_module_load@load: - bat-apl-1: [DMESG-WARN][5] ([i915#180]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-apl-1/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-apl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload: - bat-apl-1: [DMESG-WARN][7] ([i915#180] / [i915#1982]) -> [PASS][8] +3 other tests pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-apl-1/igt@i915_module_load@reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-apl-1/igt@i915_module_load@reload.html * igt@i915_pm_rpm@module-reload: - bat-apl-1: [DMESG-WARN][9] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][10] +2 other tests pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-apl-1/igt@i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-apl-1/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - {bat-arlh-3}: [ABORT][11] ([i915#12133]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-arlh-3/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [DMESG-WARN][13] ([i915#11621]) -> [PASS][14] +79 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][15] ([i915#12061]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-arlh-3/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [DMESG-WARN][17] ([i915#11621] / [i915#180]) -> [PASS][18] +41 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * Linux: CI_DRM_15489 -> Patchwork_139664v1 CI-20190529: 20190529 CI_DRM_15489: fc6867c683c18ec3ac31682fd37d418d8a8ebde1 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_139664v1: fc6867c683c18ec3ac31682fd37d418d8a8ebde1 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/index.html [-- Attachment #2: Type: text/html, Size: 6294 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater 2024-10-07 18:28 [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater Juha-Pekka Heikkila 2024-10-08 5:46 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-10-08 7:55 ` Pottumuttu, Sai Teja 2024-10-09 7:11 ` ✗ Fi.CI.IGT: failure for " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Pottumuttu, Sai Teja @ 2024-10-08 7:55 UTC (permalink / raw) To: Juha-Pekka Heikkila, intel-xe, intel-gfx On 07-10-2024 23:58, Juha-Pekka Heikkila wrote: > On display ver 20 onwards tile4 is not supported with horizontal flip > > Bspec: 69853 Some nitpicks, 1. Probably, we can add Bspec 68904 as well, as it gives more clarity about all the support and remove the extra line below the Bspec line. 2. In the commit subject, I think we would usually prefer display version 20 instead of display20 directly, and maybe we can have the commit message something like "With display version 20, horizontal flip is not supported on tile4 surface formats" just to make it a bit more clear. But other than that, patch looks good to me Reviewed-by: Sai Teja Pottumuttu <sai.teja.pottumuttu@intel.com> > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > --- > drivers/gpu/drm/i915/display/intel_fb.c | 13 +++++++++++++ > drivers/gpu/drm/i915/display/intel_fb.h | 1 + > drivers/gpu/drm/i915/display/skl_universal_plane.c | 11 +++++++++++ > 3 files changed, 25 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c > index 6c2679e6c980..735fba73c9ad 100644 > --- a/drivers/gpu/drm/i915/display/intel_fb.c > +++ b/drivers/gpu/drm/i915/display/intel_fb.c > @@ -439,6 +439,19 @@ bool intel_fb_needs_64k_phys(u64 modifier) > INTEL_PLANE_CAP_NEED64K_PHYS); > } > > +/** > + * intel_fb_is_tile4_modifier: Check if a modifier is a tile4 modifier type > + * @modifier: Modifier to check > + * > + * Returns: > + * Returns %true if @modifier is a tile4 modifier. > + */ > +bool intel_fb_is_tile4_modifier(u64 modifier) > +{ > + return plane_caps_contain_any(lookup_modifier(modifier)->plane_caps, > + INTEL_PLANE_CAP_TILING_4); > +} > + > static bool check_modifier_display_ver_range(const struct intel_modifier_desc *md, > u8 display_ver_from, u8 display_ver_until) > { > diff --git a/drivers/gpu/drm/i915/display/intel_fb.h b/drivers/gpu/drm/i915/display/intel_fb.h > index 8240febff84c..d78993e5eb62 100644 > --- a/drivers/gpu/drm/i915/display/intel_fb.h > +++ b/drivers/gpu/drm/i915/display/intel_fb.h > @@ -36,6 +36,7 @@ bool intel_fb_is_ccs_modifier(u64 modifier); > bool intel_fb_is_rc_ccs_cc_modifier(u64 modifier); > bool intel_fb_is_mc_ccs_modifier(u64 modifier); > bool intel_fb_needs_64k_phys(u64 modifier); > +bool intel_fb_is_tile4_modifier(u64 modifier); > > bool intel_fb_is_ccs_aux_plane(const struct drm_framebuffer *fb, int color_plane); > int intel_fb_rc_ccs_cc_plane(const struct drm_framebuffer *fb); > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c > index 9207b7e96974..4755a0672739 100644 > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c > @@ -1619,6 +1619,17 @@ static int skl_plane_check_fb(const struct intel_crtc_state *crtc_state, > return -EINVAL; > } > > + /* > + * Display20 onward tile4 hflip is not supported > + */ > + if (rotation & DRM_MODE_REFLECT_X && > + intel_fb_is_tile4_modifier(fb->modifier) && > + DISPLAY_VER(dev_priv) >= 20) { > + drm_dbg_kms(&dev_priv->drm, > + "horizontal flip is not supported with tile4 surface formats\n"); > + return -EINVAL; > + } > + > if (drm_rotation_90_or_270(rotation)) { > if (!intel_fb_supports_90_270_rotation(to_intel_framebuffer(fb))) { > drm_dbg_kms(&dev_priv->drm, ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater 2024-10-07 18:28 [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater Juha-Pekka Heikkila 2024-10-08 5:46 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-10-08 7:55 ` [PATCH] " Pottumuttu, Sai Teja @ 2024-10-09 7:11 ` Patchwork 2024-10-11 7:15 ` Juha-Pekka Heikkila 2 siblings, 1 reply; 6+ messages in thread From: Patchwork @ 2024-10-09 7:11 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100310 bytes --] == Series Details == Series: drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater URL : https://patchwork.freedesktop.org/series/139664/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15489_full -> Patchwork_139664v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_139664v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139664v1_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139664v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@smoke: - shard-dg1: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-13/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@deep: - shard-glk: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk6/igt@gem_exec_schedule@deep.html * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1: - shard-glk: [PASS][3] -> [FAIL][4] +4 other tests fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk6/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk2/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1.html New tests --------- New tests have been introduced between CI_DRM_15489_full and Patchwork_139664v1_full: ### New IGT tests (8) ### * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [1.89] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.96] s * igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [1.96] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.95] s * igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [1.91] s * igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.49] s Known issues ------------ Here are the changes found in Patchwork_139664v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +8 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html * igt@fbdev@pan: - shard-dg2: [PASS][9] -> [SKIP][10] ([i915#2582]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@fbdev@pan.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#8562]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#12027]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk5/igt@gem_ctx_engines@invalid-engines.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][15] -> [FAIL][16] ([i915#12027]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gem_ctx_sseu@engines.html * igt@gem_exec_fair@basic-pace: - shard-rkl: NOTRUN -> [FAIL][20] ([i915#2842]) +3 other tests fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [PASS][21] -> [FAIL][22] ([i915#2842]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-tglu-7/igt@gem_exec_fair@basic-pace-share.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-5/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: NOTRUN -> [FAIL][23] ([i915#2876]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-rkl: NOTRUN -> [FAIL][30] ([i915#12296]) +4 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4860]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_gtt_cpu_tlb: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4077]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-4/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8289]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4083]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@gem_mmap@basic.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4083]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3282]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4270]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4270]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4270]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4270]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4270]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-glk: NOTRUN -> [SKIP][49] +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#5190] / [i915#8428]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3297]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#3323]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3297] / [i915#4880]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#2527]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#2856]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][59] -> [ABORT][60] ([i915#9820]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][61] ([i915#9820]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][62] -> [DMESG-WARN][63] ([i915#1982]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#7091]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8436]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][66] -> [FAIL][67] ([i915#3591]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#5723]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4212]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4215] / [i915#5190]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3826]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: [PASS][72] -> [DMESG-WARN][73] ([i915#4423]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - shard-rkl: [PASS][74] -> [FAIL][75] ([i915#10991]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#8709]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#9197]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#11808]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#5286]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4538] / [i915#5286]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#5286]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][83] +42 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3638]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][86] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5190]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#9197]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#12313]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#6095]) +90 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#10307] / [i915#6095]) +127 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#6095]) +19 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#12313]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#6095]) +95 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#12313]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11616] / [i915#7213]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4087]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][99] +13 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#7828]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@dp-crc-single: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#7828]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#7828]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7828]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#7828]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3555] / [i915#9979]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3116]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#9424]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6944] / [i915#9424]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#7118] / [i915#9424]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3555]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#11453]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#11453]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3555] / [i915#8814]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#4103]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][116] -> [FAIL][117] ([i915#2346]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#9723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3555]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#8588]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3804]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#8812]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3555] / [i915#3840]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#3840]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: [PASS][125] -> [FAIL][126] ([i915#4767]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#1839]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#3637]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#9934]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: [PASS][130] -> [FAIL][131] ([i915#2122]) +6 other tests fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [PASS][132] -> [FAIL][133] ([i915#2122]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][134] ([i915#11961]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a4: - shard-dg1: [PASS][135] -> [FAIL][136] ([i915#79]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a4.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#2672] / [i915#3555]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#2672]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#2672]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#2672] / [i915#3555] / [i915#5190]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-dg2: [PASS][141] -> [SKIP][142] ([i915#3555]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#2672] / [i915#3555]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#2587] / [i915#2672]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][145] +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#1825]) +25 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][147] -> [SKIP][148] +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [PASS][149] -> [SKIP][150] ([i915#5354]) +19 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3458]) +9 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-snb: NOTRUN -> [SKIP][152] +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#5354]) +19 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +12 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3023]) +18 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3458]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8708]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#8708]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#1825]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6118]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8228]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8228]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][163] -> [SKIP][164] ([i915#3555] / [i915#8228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-10/igt@kms_hdr@static-swap.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#10656]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#10656]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][167] ([i915#10656]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@pixel-format: - shard-dg2: [PASS][168] -> [SKIP][169] ([i915#8825]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_plane@pixel-format.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane@pixel-format.html * igt@kms_plane@planar-pixel-format-settings: - shard-dg2: [PASS][170] -> [SKIP][171] ([i915#9581]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_plane@planar-pixel-format-settings.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8821]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-dg2: [PASS][173] -> [SKIP][174] ([i915#12247]) +17 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: - shard-dg2: [PASS][175] -> [SKIP][176] ([i915#12247] / [i915#8152]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][177] -> [SKIP][178] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [PASS][179] -> [SKIP][180] ([i915#8152] / [i915#9423]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: - shard-dg2: [PASS][181] -> [SKIP][182] ([i915#8152]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#12247]) +7 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][185] -> [SKIP][186] ([i915#3555] / [i915#8152] / [i915#9423]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#12247]) +11 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#6953]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#12247]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#12247] / [i915#3555] / [i915#9423]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#12247] / [i915#3555] / [i915#6953]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#12247]) +8 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-dg2: [PASS][193] -> [SKIP][194] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#12247] / [i915#6953]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5354]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5978]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3361]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][199] -> [SKIP][200] ([i915#9519]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9519]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#9519]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#11520]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#11520]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][205] ([i915#11520]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#11520]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#9683]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#9683]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1072] / [i915#9732]) +14 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#1072] / [i915#9732]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#2295]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9688]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#1072] / [i915#9732]) +15 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#9732]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#9685]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#5289]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#5289]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5289]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#11131]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][220] -> [FAIL][221] ([i915#5465]) +2 other tests fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][223] ([IGT#2]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [PASS][224] -> [SKIP][225] ([i915#9197]) +46 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_vblank@ts-continuation-modeset.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9906]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9906]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2437]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2437]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-dg2: [PASS][230] -> [FAIL][231] ([i915#10538]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#7387]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#8516]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9917]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9917]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][236] ([i915#9781]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][237] +17 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][238] ([i915#9846]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: [FAIL][240] ([i915#11980]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-3/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][242] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@gem_eio@hibernate.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-pace-share: - shard-rkl: [FAIL][244] ([i915#2842]) -> [PASS][245] +3 other tests pass [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-5/igt@gem_exec_fair@basic-pace-share.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-7/igt@gem_exec_fair@basic-pace-share.html * igt@gem_wait@write-busy: - shard-dg2: [INCOMPLETE][246] -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-10/igt@gem_wait@write-busy.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@gem_wait@write-busy.html * igt@gen9_exec_parse@valid-registers: - shard-glk: [INCOMPLETE][248] ([i915#2295]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk3/igt@gen9_exec_parse@valid-registers.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk6/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][250] ([i915#9820]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][252] ([i915#3591]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][254] ([i915#5138]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg2: [FAIL][256] -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-3/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][258] ([i915#2122]) -> [PASS][259] +1 other test pass [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][260] ([i915#11961] / [i915#2122]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [FAIL][262] ([i915#79]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk5/igt@kms_flip@flip-vs-expired-vblank.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [DMESG-WARN][264] ([i915#4423]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-18/igt@kms_flip@flip-vs-suspend-interruptible.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [FAIL][266] ([i915#6880]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [SKIP][268] ([i915#5354]) -> [PASS][269] +3 other tests pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-stridechange.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][270] ([i915#3555] / [i915#8228]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [SKIP][272] ([i915#9197]) -> [PASS][273] +8 other tests pass [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][274] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-dg2: [SKIP][276] ([i915#12247]) -> [PASS][277] +2 other tests pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d: - shard-dg2: [SKIP][278] ([i915#12247] / [i915#8152]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html * igt@kms_pm_dc@dc9-dpms: - shard-dg2: [FAIL][280] ([i915#7330]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: [SKIP][282] ([i915#4281]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][284] ([i915#9340]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][286] ([i915#9519]) -> [PASS][287] +3 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][288] ([i915#5465]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-tglu-5/igt@kms_setmode@basic.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_setmode@basic.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: [FAIL][290] ([i915#9196]) -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak.html * igt@perf@blocking: - shard-mtlp: [FAIL][292] ([i915#10538]) -> [PASS][293] +1 other test pass [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-3/igt@perf@blocking.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-3/igt@perf@blocking.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][294] ([i915#10131] / [i915#9697]) -> [ABORT][295] ([i915#10131] / [i915#10887] / [i915#9820]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][296] -> [SKIP][297] ([i915#9197]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: [SKIP][298] ([i915#5190] / [i915#9197]) -> [SKIP][299] ([i915#4538] / [i915#5190]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][300] ([i915#4538] / [i915#5190]) -> [SKIP][301] ([i915#5190] / [i915#9197]) +9 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: [SKIP][302] ([i915#5190]) -> [SKIP][303] ([i915#5190] / [i915#9197]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs: - shard-dg2: [SKIP][304] ([i915#10307] / [i915#6095]) -> [SKIP][305] ([i915#9197]) +10 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: [SKIP][306] ([i915#12313]) -> [SKIP][307] ([i915#9197]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][308] ([i915#6095]) -> [SKIP][309] ([i915#4423] / [i915#6095]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: - shard-dg2: [SKIP][310] ([i915#9197]) -> [SKIP][311] ([i915#10307] / [i915#6095]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: [SKIP][312] ([i915#11616] / [i915#7213]) -> [SKIP][313] ([i915#9197]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_content_protection@atomic: - shard-dg2: [TIMEOUT][314] ([i915#7173]) -> [SKIP][315] ([i915#7118] / [i915#9424]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-10/igt@kms_content_protection@atomic.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [INCOMPLETE][316] ([i915#8816]) -> [SKIP][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-snb6/igt@kms_content_protection@atomic-dpms.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [TIMEOUT][318] ([i915#7173]) -> [SKIP][319] ([i915#9424]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-10/igt@kms_content_protection@lic-type-0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: [SKIP][320] ([i915#9197]) -> [SKIP][321] ([i915#9424]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_content_protection@lic-type-1.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][322] ([i915#9433]) -> [SKIP][323] ([i915#9424]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-13/igt@kms_content_protection@mei-interface.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][324] ([i915#11453]) -> [SKIP][325] ([i915#9197]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][326] ([i915#9197]) -> [SKIP][327] ([i915#11453]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: [SKIP][328] ([i915#3555]) -> [SKIP][329] ([i915#9197]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: [SKIP][330] ([i915#5354]) -> [SKIP][331] ([i915#9197]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: [SKIP][332] ([i915#9197]) -> [SKIP][333] ([i915#5354]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][334] ([i915#4103] / [i915#4213]) -> [SKIP][335] ([i915#9197]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: [SKIP][336] ([i915#9833]) -> [SKIP][337] ([i915#9197]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-basic: - shard-dg2: [SKIP][338] ([i915#9197]) -> [SKIP][339] ([i915#3555] / [i915#3840]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_dsc@dsc-basic.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: [SKIP][340] ([i915#3555] / [i915#3840]) -> [SKIP][341] ([i915#9197]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: [SKIP][342] ([i915#2672] / [i915#3555]) -> [SKIP][343] ([i915#3555]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: [SKIP][344] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][345] ([i915#3555] / [i915#5190]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: [SKIP][346] ([i915#3555] / [i915#5190]) -> [SKIP][347] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: [SKIP][348] ([i915#10433] / [i915#3458]) -> [SKIP][349] ([i915#3458]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][350] ([i915#8708]) -> [SKIP][351] ([i915#5354]) +13 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][352] ([i915#10433] / [i915#3458]) -> [SKIP][353] ([i915#5354]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: [SKIP][354] ([i915#9766]) -> [SKIP][355] ([i915#4342] / [i915#5354]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][356] ([i915#5354]) -> [SKIP][357] ([i915#3458]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][358] ([i915#3458]) -> [SKIP][359] ([i915#5354]) +12 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][360] ([i915#5354]) -> [SKIP][361] ([i915#8708]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][362] ([i915#3458]) -> [SKIP][363] ([i915#10433] / [i915#3458]) +3 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-dg2: [SKIP][364] ([i915#9197]) -> [SKIP][365] ([i915#3555] / [i915#8228]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_hdr@bpc-switch.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][366] ([i915#3555] / [i915#8228]) -> [SKIP][367] ([i915#9197]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2: [SKIP][368] ([i915#12247] / [i915#9423]) -> [SKIP][369] ([i915#12247] / [i915#8152] / [i915#9423]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: [SKIP][370] ([i915#12247]) -> [SKIP][371] ([i915#12247] / [i915#8152]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: [SKIP][372] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][373] ([i915#12247] / [i915#9423]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: [SKIP][374] ([i915#12247] / [i915#8152]) -> [SKIP][375] ([i915#12247]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: [SKIP][376] ([i915#1072] / [i915#9732]) -> [SKIP][377] ([i915#1072] / [i915#4423] / [i915#9732]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-render.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: [SKIP][378] ([i915#11131]) -> [SKIP][379] ([i915#9197]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [SKIP][380] -> [FAIL][381] ([i915#10959]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flipline: - shard-dg2: [SKIP][382] ([i915#9197]) -> [SKIP][383] ([i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-2/igt@kms_vrr@flipline.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/igt@kms_vrr@flipline.html * igt@perf@non-zero-reason: - shard-dg2: [FAIL][384] ([i915#9100]) -> [FAIL][385] ([i915#7484]) +1 other test fail [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15489/shard-dg2-11/igt@perf@non-zero-reason.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-11/igt@perf@non-zero-reason.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961 [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980 [i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7330 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581 [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#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [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.freedes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/index.html [-- Attachment #2: Type: text/html, Size: 126458 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater 2024-10-09 7:11 ` ✗ Fi.CI.IGT: failure for " Patchwork @ 2024-10-11 7:15 ` Juha-Pekka Heikkila 2024-10-11 9:08 ` Saarinen, Jani 0 siblings, 1 reply; 6+ messages in thread From: Juha-Pekka Heikkila @ 2024-10-11 7:15 UTC (permalink / raw) To: intel-gfx These regressions have nothing to do with my changes. My changes affected only Xe driver. /Juha-Pekka On 9.10.2024 10.11, Patchwork wrote: > *Patch Details* > *Series:* drm/i915/display: Don't allow tile4 framebuffer to do hflip on > display20 or greater > *URL:* https://patchwork.freedesktop.org/series/139664/ <https:// > patchwork.freedesktop.org/series/139664/> > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > index.html <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > index.html> > > > CI Bug Log - changes from CI_DRM_15489_full -> Patchwork_139664v1_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_139664v1_full absolutely > need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_139664v1_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 (8 -> 8) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_139664v1_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_exec_balancer@smoke: > > o shard-dg1: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg1-13/ > igt@gem_exec_balancer@smoke.html> > * > > igt@gem_exec_schedule@deep: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-glk6/ > igt@gem_exec_schedule@deep.html> +1 other test incomplete > * > > igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk6/igt@kms_flip@modeset-vs-vblank-race@a- > hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-glk2/igt@kms_flip@modeset-vs-vblank- > race@a-hdmi-a1.html> +4 other tests fail > > > New tests > > New tests have been introduced between CI_DRM_15489_full and > Patchwork_139664v1_full: > > > New IGT tests (8) > > * > > igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2: > > o Statuses : 1 pass(s) > o Exec time: [2.10] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4: > > o Statuses : 1 pass(s) > o Exec time: [2.06] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4: > > o Statuses : 1 pass(s) > o Exec time: [1.89] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2: > > o Statuses : 1 pass(s) > o Exec time: [1.96] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4: > > o Statuses : 1 pass(s) > o Exec time: [1.96] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2: > > o Statuses : 1 pass(s) > o Exec time: [1.95] s > * > > igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4: > > o Statuses : 1 pass(s) > o Exec time: [1.91] s > * > > igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2: > > o Statuses : 1 pass(s) > o Exec time: [0.49] s > > > Known issues > > Here are the changes found in Patchwork_139664v1_full that come from > known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@object-reloc-purge-cache: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@api_intel_bb@object- > reloc-purge-cache.html> (i915#8411 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +1 other > test skip > * > > igt@device_reset@cold-reset-bound: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@device_reset@cold-reset- > bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/11078>) > * > > igt@drm_fdinfo@busy-check-all@vecs1: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@drm_fdinfo@busy-check- > all@vecs1.html> (i915#8414 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8414>) +8 other tests skip > * > > igt@drm_fdinfo@isolation@vecs0: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-12/ > igt@drm_fdinfo@isolation@vecs0.html> (i915#8414 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +5 other > tests skip > * > > igt@fbdev@pan: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@fbdev@pan.html> -> SKIP <https:// > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@fbdev@pan.html> (i915#2582 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/2582>) +1 other test skip > * > > igt@gem_ccs@suspend-resume: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_ccs@suspend- > resume.html> (i915#9323 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9323>) > * > > igt@gem_create@create-ext-set-pat: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gem_create@create- > ext-set-pat.html> (i915#8562 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/8562>) > * > > igt@gem_ctx_engines@invalid-engines: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk5/igt@gem_ctx_engines@invalid- > engines.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-glk7/igt@gem_ctx_engines@invalid- > engines.html> (i915#12027 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/12027>) > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-6/igt@gem_ctx_engines@invalid- > engines.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-mtlp-6/igt@gem_ctx_engines@invalid- > engines.html> (i915#12027 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/12027>) > * > > igt@gem_ctx_persistence@heartbeat-many: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/ > igt@gem_ctx_persistence@heartbeat-many.html> (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_persistence@heartbeat-stop: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-12/ > igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_sseu@engines: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@gem_ctx_sseu@engines.html> (i915#280 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_exec_fair@basic-pace: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic- > pace.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/2842>) +3 other tests fail > * > > igt@gem_exec_fair@basic-pace-share: > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-tglu-7/igt@gem_exec_fair@basic-pace- > share.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-tglu-5/igt@gem_exec_fair@basic-pace- > share.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/2842>) +1 other test fail > * > > igt@gem_exec_fair@basic-pace@rcs0: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic- > pace@rcs0.html> (i915#2876 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2876>) > * > > igt@gem_exec_fair@basic-pace@vcs0: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html> > -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-glk6/igt@gem_exec_fair@basic- > pace@vcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2842>) +1 other test fail > * > > igt@gem_exec_fair@basic-throttle: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@gem_exec_fair@basic- > throttle.html> (i915#3539 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3539>) > * > > igt@gem_exec_flush@basic-wb-rw-default: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_flush@basic-wb- > rw-default.html> (i915#3539 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3539> / i915#4852 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +1 other > test skip > * > > igt@gem_exec_reloc@basic-gtt-read: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt- > read.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3281>) +4 other tests skip > * > > igt@gem_exec_reloc@basic-write-gtt-noreloc: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_reloc@basic- > write-gtt-noreloc.html> (i915#3281 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +7 other > tests skip > * > > igt@gem_exec_schedule@pi-ringfull@vecs0: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_schedule@pi- > ringfull@vecs0.html> (i915#12296 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296>) +4 other > tests fail > * > > igt@gem_exec_schedule@preempt-queue-contexts-chain: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/ > igt@gem_exec_schedule@preempt-queue-contexts-chain.html> > (i915#4537 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4537> / i915#4812 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/4812>) > * > > igt@gem_fence_thrash@bo-copy: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_fence_thrash@bo- > copy.html> (i915#4860 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/4860>) > * > > igt@gem_fence_thrash@bo-write-verify-none: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_fence_thrash@bo- > write-verify-none.html> (i915#4860 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > * > > igt@gem_gtt_cpu_tlb: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-4/ > igt@gem_gtt_cpu_tlb.html> (i915#4077 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +1 other test skip > * > > igt@gem_lmem_swapping@parallel-random: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/ > igt@gem_lmem_swapping@parallel-random.html> (i915#4613 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other > tests skip > * > > igt@gem_media_fill@media-fill: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@gem_media_fill@media- > fill.html> (i915#8289 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/8289>) > * > > igt@gem_mmap@basic: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@gem_mmap@basic.html> > (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4083>) > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_mmap@basic.html> > (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4083>) > * > > igt@gem_mmap_gtt@fault-concurrent-x: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_mmap_gtt@fault- > concurrent-x.html> (i915#4077 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/4077>) +5 other tests skip > * > > igt@gem_mmap_wc@write-prefaulted: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@gem_mmap_wc@write- > prefaulted.html> (i915#4083 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/4083>) +3 other tests skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/ > igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +6 other tests skip > * > > igt@gem_pread@snoop: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pread@snoop.html> > (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3282>) +3 other tests skip > * > > igt@gem_pxp@reject-modify-context-protection-off-1: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pxp@reject-modify- > context-protection-off-1.html> (i915#4270 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other > tests skip > * > > igt@gem_pxp@reject-modify-context-protection-on: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@gem_pxp@reject- > modify-context-protection-on.html> (i915#4270 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other > tests skip > * > > igt@gem_pxp@verify-pxp-stale-buf-optout-execution: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_pxp@verify-pxp-stale- > buf-optout-execution.html> (i915#4270 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +3 other > tests skip > * > > igt@gem_pxp@verify-pxp-stale-ctx-execution: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@gem_pxp@verify-pxp- > stale-ctx-execution.html> (i915#4270 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_pxp@verify-pxp- > stale-ctx-execution.html> (i915#4270 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > * > > igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-glk7/igt@gem_render_copy@y-tiled- > mc-ccs-to-vebox-yf-tiled.html> +7 other tests skip > * > > igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_render_copy@y-tiled- > mc-ccs-to-yf-tiled-ccs.html> (i915#5190 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / > i915#8428 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8428>) +4 other tests skip > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_userptr_blits@create- > destroy-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/3297>) +2 other tests skip > * > > igt@gem_userptr_blits@dmabuf-sync: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@gem_userptr_blits@dmabuf- > sync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3297> / i915#3323 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) > * > > igt@gem_userptr_blits@invalid-mmap-offset-unsync: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/ > igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3297>) > * > > igt@gem_userptr_blits@map-fixed-invalidate-busy: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_userptr_blits@map- > fixed-invalidate-busy.html> (i915#3297 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / > i915#4880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4880>) > * > > igt@gem_userptr_blits@readonly-unsync: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@gem_userptr_blits@readonly-unsync.html> (i915#3297 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other > test skip > * > > igt@gen9_exec_parse@bb-oversize: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@gen9_exec_parse@bb- > oversize.html> (i915#2527 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@bb-start-cmd: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@gen9_exec_parse@bb- > start-cmd.html> (i915#2856 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@cmd-crossing-page: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gen9_exec_parse@cmd- > crossing-page.html> (i915#2527 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/2527> / i915#2856 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-2/igt@i915_module_load@reload-with-fault- > injection.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@i915_module_load@reload- > with-fault-injection.html> (i915#9820 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > o shard-tglu: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@i915_module_load@reload-with-fault-injection.html> > (i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9820>) > * > > igt@i915_pipe_stress@stress-xrgb8888-untiled: > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888- > untiled.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-5/ > igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#1982 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982>) > * > > igt@i915_pipe_stress@stress-xrgb8888-ytiled: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-5/igt@i915_pipe_stress@stress- > xrgb8888-ytiled.html> (i915#7091 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091>) > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> (i915#8436 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436>) > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6- > idle@gt0-vecs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-dg1-14/ > igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html> (i915#3591 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) > * > > igt@i915_query@test-query-geometry-subslices: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@i915_query@test-query- > geometry-subslices.html> (i915#5723 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) > * > > igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_addfb_basic@addfb25- > framebuffer-vs-set-tiling.html> (i915#4212 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > * > > igt@kms_addfb_basic@basic-y-tiled-legacy: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_addfb_basic@basic-y- > tiled-legacy.html> (i915#4215 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/4215> / i915#5190 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826>) > * > > igt@kms_async_flips@alternate-sync-async-flip: > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-14/igt@kms_async_flips@alternate-sync- > async-flip.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg1-17/ > igt@kms_async_flips@alternate-sync-async-flip.html> (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-7/igt@kms_async_flips@alternate-sync- > async-flip@pipe-b-hdmi-a-1.html> -> FAIL <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/ > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi- > a-1.html> (i915#10991 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/10991>) +1 other test fail > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi- > a-2-y-rc-ccs-cc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_async_flips@async- > flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html> > (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8709>) +3 other tests skip > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing- > internal-panels: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_atomic_transition@plane-all-modeset-transition-fencing- > internal-panels.html> (i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +3 other > tests skip > * > > igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a- > hdmi-a-1: > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-tglu-9/igt@kms_atomic_transition@plane- > toggle-modeset-transition@pipe-a-hdmi-a-1.html> -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset- > transition@pipe-a-hdmi-a-1.html> (i915#11808 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808>) +1 other > test fail > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp- > rotate-180.html> (i915#5286 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5286>) +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max- > hw-stride-64bpp-rotate-0-hflip.html> (i915#4538 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / > i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5286>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_big_fb@4-tiled- > max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +2 other tests skip > * > > igt@kms_big_fb@linear-16bpp-rotate-90: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_big_fb@linear-16bpp-rotate-90.html> +42 other tests skip > * > > igt@kms_big_fb@linear-32bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_big_fb@linear-32bpp- > rotate-90.html> (i915#3638 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3638>) +1 other test skip > * > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-10/igt@kms_big_fb@y-tiled- > addfb-size-offset-overflow.html> (i915#5190 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_big_fb@y-tiled- > max-hw-stride-32bpp-rotate-0-async-flip.html> > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max- > hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) +5 other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled- > addfb-size-offset-overflow.html> (i915#5190 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / > i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9197>) > * > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y- > tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> (i915#10307 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / > i915#10434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/10434> / i915#6095 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/6095>) +7 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_ccs@bad- > rotation-90-4-tiled-bmg-ccs.html> (i915#12313 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-2/igt@kms_ccs@crc-primary- > basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +90 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-5/igt@kms_ccs@crc-sprite- > planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> > (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/6095>) +127 other tests skip > * > > igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@missing-ccs- > buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html> (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +19 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_ccs@random-ccs- > data-4-tiled-bmg-ccs.html> (i915#12313 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other > test skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-13/igt@kms_ccs@random-ccs- > data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html> (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +95 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@random-ccs- > data-4-tiled-lnl-ccs.html> (i915#12313 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other > test skip > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_cdclk@mode- > transition@pipe-d-hdmi-a-1.html> (i915#11616 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616> / > i915#7213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/7213>) +3 other tests skip > * > > igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cdclk@plane- > scaling@pipe-d-hdmi-a-2.html> (i915#4087 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +4 other > tests skip > * > > igt@kms_chamelium_color@degamma: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@kms_chamelium_color@degamma.html> +13 other tests skip > * > > igt@kms_chamelium_edid@dp-edid-resolution-list: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_chamelium_edid@dp-edid-resolution-list.html> (i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +3 other tests skip > * > > igt@kms_chamelium_frames@dp-crc-single: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > igt@kms_chamelium_frames@dp-crc-single.html> (i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_frames@hdmi-frame-dump: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/ > igt@kms_chamelium_frames@hdmi-frame-dump.html> (i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +6 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-fast: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-13/igt@kms_chamelium_hpd@dp- > hpd-fast.html> (i915#7828 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_chamelium_hpd@vga- > hpd-with-enabled-mode.html> (i915#7828 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other > tests skip > * > > igt@kms_color@deep-color: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_color@deep- > color.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3555> / [i915#9979]) > * > > igt@kms_content_protection@dp-mst-type-1: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_content_protection@dp-mst-type-1.html> (i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > +1 other test skip > * > > igt@kms_content_protection@lic-type-1: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/ > igt@kms_content_protection@lic-type-1.html> (i915#9424 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@mei-interface: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@kms_content_protection@mei-interface.html> (i915#6944 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9424>) > * > > igt@kms_content_protection@uevent: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/ > igt@kms_content_protection@uevent.html> (i915#7118 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9424>) > * > > igt@kms_cursor_crc@cursor-offscreen-32x32: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_cursor_crc@cursor-offscreen-32x32.html> (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cursor_crc@cursor- > offscreen-512x512.html> (i915#11453 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > * > > igt@kms_cursor_crc@cursor-random-512x170: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_cursor_crc@cursor- > random-512x170.html> (i915#11453 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +1 other > test skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x10: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_cursor_crc@cursor- > rapid-movement-32x10.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#8814 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8814>) > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_cursor_legacy@basic- > busy-flip-before-cursor-legacy.html> (i915#4103 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor- > atomic-transitions-varying-size.html> -> FAIL <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk4/ > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying- > size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/2346>) > * > > igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb- > ioctl.html> (i915#9723 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9723>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@kms_display_modes@extended-mode-basic.html> (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +4 other tests skip > * > > igt@kms_display_modes@mst-extended-mode-negative: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@kms_display_modes@mst-extended-mode-negative.html> > (i915#8588 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8588>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs- > panel-6bpc@pipe-a-hdmi-a-2.html> (i915#3804 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_draw_crc@draw-method-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_draw_crc@draw- > method-mmap-gtt.html> (i915#8812 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) > * > > igt@kms_dsc@dsc-basic: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3840>) +1 other test skip > * > > igt@kms_dsc@dsc-with-output-formats: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_dsc@dsc-with- > output-formats.html> (i915#3555 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/3555> / i915#3840 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html> -> > FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-glk2/igt@kms_fbcon_fbt@fbc- > suspend.html> (i915#4767 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/4767>) > * > > igt@kms_feature_discovery@display-4x: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/ > igt@kms_feature_discovery@display-4x.html> (i915#1839 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_flip@2x-flip-vs- > dpms-off-vs-modeset.html> (i915#3637 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +1 other > test skip > * > > igt@kms_flip@2x-flip-vs-wf_vblank: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_flip@2x-flip-vs- > wf_vblank.html> (i915#9934 <https://gitlab.freedes>) > * > > igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@c- > hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-tglu-4/igt@kms_flip@blocking- > wf_vblank@c-hdmi-a1.html> (i915#2122 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) +6 other > tests fail > * > > igt@kms_flip@flip-vs-absolute-wf_vblank: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-4/igt@kms_flip@flip-vs-absolute- > wf_vblank.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs- > absolute-wf_vblank.html> (i915#2122 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) > * > > igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs- > absolute-wf_vblank@b-hdmi-a2.html> (i915#11961 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961>) +1 other > test fail > * > > igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a4: > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank@a- > hdmi-a4.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg1-16/igt@kms_flip@flip-vs-expired- > vblank@a-hdmi-a4.html> (i915#79 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/79>) +1 other test fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2672> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other > tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > upscaling@pipe-a-valid-mode.html> (i915#2672 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other > tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs- > upscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp- > ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile- > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2672> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp- > linear-to-32bpp-linear-downscaling.html> -> SKIP <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear- > downscaling.html> (i915#3555 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/3555>) +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2672> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other > test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > upscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/ > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > upscaling@pipe-a-valid-mode.html> (i915#2587 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / > i915#2672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/2672>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-12/ > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw- > mmap-cpu.html> +2 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw- > mmap-wc.html> (i915#1825 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/1825>) +25 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > > o shard-snb: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p- > scndscrn-spr-indfb-draw-mmap-wc.html> -> SKIP <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb4/ > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw- > mmap-wc.html> +2 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc- > rgb565-draw-render.html> -> SKIP <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5354>) +19 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/ > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw- > mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3458>) +9 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: > > o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-snb2/ > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw- > pwrite.html> +5 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb- > fullscreen.html> (i915#5354 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5354>) +19 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/ > igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap- > gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/8708>) +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> > (i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3023>) +18 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/ > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw- > pwrite.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3458>) +2 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-4/ > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw- > mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8708>) > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-12/ > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw- > mmap-wc.html> (i915#8708 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8708>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb- > onoff.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/1825>) > * > > igt@kms_getfb@getfb-reject-ccs: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_getfb@getfb-reject- > ccs.html> (i915#6118 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/6118>) > * > > igt@kms_hdr@bpc-switch: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_hdr@bpc-switch.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@invalid-hdr: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_hdr@invalid- > hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3555> / i915#8228 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-swap: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-10/igt@kms_hdr@static-swap.html> -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-4/igt@kms_hdr@static-swap.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8228>) > * > > igt@kms_joiner@basic-force-big-joiner: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_joiner@basic-force- > big-joiner.html> (i915#10656 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/10656>) > * > > igt@kms_joiner@invalid-modeset-big-joiner: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_joiner@invalid- > modeset-big-joiner.html> (i915#10656 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-5/igt@kms_joiner@invalid- > modeset-big-joiner.html> (i915#10656 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_plane@pixel-format: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_plane@pixel-format.html> -> > SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_plane@pixel-format.html> > (i915#8825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8825>) > * > > igt@kms_plane@planar-pixel-format-settings: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_plane@planar-pixel-format- > settings.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane@planar-pixel- > format-settings.html> (i915#9581 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581>) > * > > igt@kms_plane_lowres@tiling-yf: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_lowres@tiling- > yf.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3555> / i915#8821 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale- > factor-0-75-with-rotation@pipe-b.html> -> SKIP <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@plane-downscale-factor-0-75-with- > rotation@pipe-b.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +17 > other tests skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale- > factor-0-75-with-rotation@pipe-d.html> -> SKIP <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@plane-downscale-factor-0-75-with- > rotation@pipe-d.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152>) +3 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@plane-scaler- > unity-scaling-with-rotation.html> -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@plane-scaler-unity-scaling-with- > rotation.html> (i915#12247 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/12247> / i915#8152 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152> / > i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9423>) +1 other test skip > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane- > upscale-20x20-with-pixel-format.html> -> SKIP <https://intel- > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel- > format.html> (i915#8152 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8152> / i915#9423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +1 other > test skip > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane- > upscale-20x20-with-pixel-format@pipe-d.html> -> SKIP <https:// > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel- > format@pipe-d.html> (i915#8152 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/8152>) +1 other test skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_plane_scaling@planes- > downscale-factor-0-25.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/6953> / i915#9423 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9423>) +1 other test skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_plane_scaling@planes- > downscale-factor-0-25-unity-scaling@pipe-a.html> (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > +7 other tests skip > * > > igt@kms_plane_scaling@planes-scaler-unity-scaling: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_plane_scaling@planes-scaler- > unity-scaling.html> -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@planes-scaler-unity-scaling.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#8152 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8152> / i915#9423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/ > igt@kms_plane_scaling@planes-unity-scaling-downscale- > factor-0-25@pipe-c.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +11 > other tests skip > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > igt@kms_plane_scaling@planes-unity-scaling-downscale- > factor-0-5.html> (i915#6953 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/6953>) > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > igt@kms_plane_scaling@planes-unity-scaling-downscale- > factor-0-5@pipe-a.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other > tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_plane_scaling@planes- > upscale-20x20-downscale-factor-0-25.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#9423 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > factor-0-5.html> (i915#12247 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/12247> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/6953>) > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > factor-0-5@pipe-b.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +8 other > tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@planes- > upscale-20x20-downscale-factor-0-75.html> -> SKIP <https:// > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > factor-0-75.html> (i915#12247 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/12247> / i915#6953 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152> / i915#9423 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_plane_scaling@planes- > upscale-factor-0-25-downscale-factor-0-25.html> (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/12247> / i915#6953 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/6953>) > * > > igt@kms_pm_backlight@fade-with-dpms: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_backlight@fade- > with-dpms.html> (i915#5354 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5354>) > * > > igt@kms_pm_dc@dc6-dpms: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html> > (i915#5978 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5978>) > * > > igt@kms_pm_dc@dc9-dpms: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html> > (i915#3361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3361>) > * > > igt@kms_pm_rpm@dpms-non-lpsp: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html> -> > SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@dpms-non- > lpsp.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-lpsp-stress: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp- > stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_pm_rpm@modeset- > non-lpsp-stress.html> (i915#9519 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_psr2_sf@fbc-pr- > overlay-plane-move-continuous-sf.html> (i915#11520 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other > tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr2_sf@fbc-pr- > overlay-plane-update-continuous-sf.html> (i915#11520 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other > tests skip > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-glk7/igt@kms_psr2_sf@fbc-psr2- > overlay-plane-move-continuous-exceed-sf.html> (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_psr2_sf@psr2-overlay- > plane-update-continuous-sf.html> (i915#11520 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other > tests skip > * > > igt@kms_psr2_su@frontbuffer-xrgb8888: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr2_su@page_flip-nv12: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_psr2_su@page_flip- > nv12.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9683>) > * > > igt@kms_psr@fbc-pr-cursor-plane-onoff: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr@fbc-pr-cursor- > plane-onoff.html> (i915#1072 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/1072> / i915#9732 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other > tests skip > * > > igt@kms_psr@fbc-psr-primary-blt: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_psr@fbc-psr-primary- > blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/1072> / i915#9732 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +3 other > tests skip > * > > igt@kms_psr@fbc-psr2-primary-mmap-gtt: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_psr@fbc-psr2- > primary-mmap-gtt.html> (i915#2295 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295>) > * > > igt@kms_psr@fbc-psr2-primary-render: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_psr@fbc-psr2- > primary-render.html> (i915#9688 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9688>) +4 other tests skip > * > > igt@kms_psr@psr2-cursor-blt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_psr@psr2-cursor- > blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/1072> / i915#9732 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other > tests skip > * > > igt@kms_psr@psr2-cursor-plane-onoff: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_psr@psr2-cursor- > plane-onoff.html> (i915#9732 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9732>) +7 other tests skip > * > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_psr_stress_test@flip- > primary-invalidate-overlay.html> (i915#9685 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other > test skip > * > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/ > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> > (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5289>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_rotation_crc@primary- > yf-tiled-reflect-x-180.html> (i915#5289 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other > test skip > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> > (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5289>) > * > > igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_rotation_crc@sprite- > rotation-90-pos-100-0.html> (i915#11131 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>) > * > > igt@kms_setmode@basic@pipe-b-edp-1: > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-4/igt@kms_setmode@basic@pipe-b- > edp-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-mtlp-3/igt@kms_setmode@basic@pipe-b- > edp-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/5465>) +2 other tests fail > * > > igt@kms_setmode@invalid-clone-single-crtc-stealing: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_setmode@invalid- > clone-single-crtc-stealing.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other > test skip > * > > igt@kms_sysfs_edid_timing: > > o shard-dg2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/ > igt@kms_sysfs_edid_timing.html> (IGT#2 <https:// > gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) > * > > igt@kms_vblank@ts-continuation-modeset: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_vblank@ts-continuation- > modeset.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_vblank@ts-continuation- > modeset.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9197>) +46 other tests skip > * > > igt@kms_vrr@seamless-rr-switch-virtual: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_vrr@seamless-rr- > switch-virtual.html> (i915#9906 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@seamless-rr-switch-vrr: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_vrr@seamless-rr- > switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9906>) +1 other test skip > * > > igt@kms_writeback@writeback-check-output: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_writeback@writeback- > check-output.html> (i915#2437 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/2437>) +1 other test skip > * > > igt@kms_writeback@writeback-invalid-parameters: > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > * > > igt@perf@gen12-group-concurrent-oa-buffer-read: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@perf@gen12-group-concurrent-oa- > buffer-read.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@perf@gen12-group- > concurrent-oa-buffer-read.html> (i915#10538 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) > * > > igt@perf@global-sseu-config-invalid: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-6/igt@perf@global-sseu-config- > invalid.html> (i915#7387 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/7387>) > * > > igt@perf_pmu@rc6@other-idle-gt0: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle- > gt0.html> (i915#8516 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/8516>) > * > > igt@sriov_basic@bind-unbind-vf: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-3/igt@sriov_basic@bind-unbind- > vf.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9917>) > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg1-12/igt@sriov_basic@bind-unbind- > vf.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9917>) > * > > igt@syncobj_wait@invalid-wait-zero-handles: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-5/igt@syncobj_wait@invalid- > wait-zero-handles.html> (i915#9781 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>) > * > > igt@tools_test@sysfs_l3_parity: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-rkl-4/ > igt@tools_test@sysfs_l3_parity.html> +17 other tests skip > > > Possible fixes > > * > > igt@gem_create@create-ext-cpu-access-big: > > o shard-dg2: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@gem_create@create-ext-cpu-access- > big.html> (i915#9846 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9846>) -> PASS <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg2-6/ > igt@gem_create@create-ext-cpu-access-big.html> > * > > igt@gem_ctx_persistence@hostile: > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html> > (i915#11980 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/11980>) -> PASS <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-mtlp-3/ > igt@gem_ctx_persistence@hostile.html> > * > > igt@gem_eio@hibernate: > > o shard-dg2: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@gem_eio@hibernate.html> (i915#10030 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/10030> / i915#7975 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/7975> / i915#8213 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-11/igt@gem_eio@hibernate.html> > * > > igt@gem_exec_fair@basic-pace-share: > > o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-5/igt@gem_exec_fair@basic-pace- > share.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-rkl-7/ > igt@gem_exec_fair@basic-pace-share.html> +3 other tests pass > * > > igt@gem_wait@write-busy: > > o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-10/igt@gem_wait@write-busy.html> -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-4/igt@gem_wait@write-busy.html> +1 other test pass > * > > igt@gen9_exec_parse@valid-registers: > > o shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk3/igt@gen9_exec_parse@valid- > registers.html> (i915#2295 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2295>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk6/ > igt@gen9_exec_parse@valid-registers.html> > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-snb: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-snb2/igt@i915_module_load@reload-with-fault- > injection.html> (i915#9820 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9820>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb2/ > igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: > > o shard-dg1: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6- > idle@gt0-vcs0.html> (i915#3591 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/3591>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/ > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp- > rotate-180.html> (i915#5138 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5138>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-6/ > igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > * > > igt@kms_cursor_legacy@cursor-vs-flip-toggle: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-3/igt@kms_cursor_legacy@cursor-vs-flip- > toggle.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs- > flip-toggle.html> > * > > igt@kms_flip@2x-plain-flip-ts-check: > > o shard-snb: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-snb6/igt@kms_flip@2x-plain-flip-ts- > check.html> (i915#2122 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/2122>) -> PASS <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-snb4/igt@kms_flip@2x- > plain-flip-ts-check.html> +1 other test pass > * > > igt@kms_flip@blocking-wf_vblank: > > o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html> > (i915#11961 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/11961> / i915#2122 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2122>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/ > igt@kms_flip@blocking-wf_vblank.html> > * > > igt@kms_flip@flip-vs-expired-vblank: > > o shard-glk: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk5/igt@kms_flip@flip-vs-expired- > vblank.html> (i915#79 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/79>) -> PASS <https://intel-gfx-ci.01.org/tree/ > drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_flip@flip-vs- > expired-vblank.html> +1 other test pass > * > > igt@kms_flip@flip-vs-suspend-interruptible: > > o shard-dg1: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-18/igt@kms_flip@flip-vs-suspend- > interruptible.html> (i915#4423 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/4423>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/ > igt@kms_flip@flip-vs-suspend-interruptible.html> > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p- > primscrn-pri-shrfb-draw-blt.html> (i915#6880 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri- > shrfb-draw-blt.html> > * > > igt@kms_frontbuffer_tracking@fbc-stridechange: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc- > stridechange.html> (i915#5354 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/5354>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_frontbuffer_tracking@fbc-stridechange.html> +3 other > tests pass > * > > igt@kms_hdr@invalid-metadata-sizes: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-11/igt@kms_hdr@invalid-metadata- > sizes.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/3555> / i915#8228 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read- > crc.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9197>) -> PASS <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_pipe_crc_basic@suspend-read-crc.html> +8 other tests pass > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > factor-0-75.html> (i915#12247 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/12247> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/6953> / i915#8152 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8152> / i915#9423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-11/igt@kms_plane_scaling@planes-downscale- > factor-0-75.html> > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > factor-0-75@pipe-b.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-11/igt@kms_plane_scaling@planes-downscale- > factor-0-75@pipe-b.html> +2 other tests pass > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > factor-0-75@pipe-d.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes- > downscale-factor-0-75@pipe-d.html> > * > > igt@kms_pm_dc@dc9-dpms: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html> (i915#7330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7330>) > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/igt@kms_pm_dc@dc9-dpms.html> > o shard-tglu: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html> > (i915#4281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4281>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html> > * > > igt@kms_pm_lpsp@kms-lpsp: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#9340 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9340>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp- > stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9519>) -> PASS <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/ > igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +3 other tests pass > * > > igt@kms_setmode@basic: > > o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-tglu-5/igt@kms_setmode@basic.html> (i915#5465 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-tglu-8/igt@kms_setmode@basic.html> +1 > other test pass > * > > igt@kms_universal_plane@cursor-fb-leak: > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-8/igt@kms_universal_plane@cursor-fb- > leak.html> (i915#9196 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9196>) -> PASS <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-mtlp-5/ > igt@kms_universal_plane@cursor-fb-leak.html> +1 other test pass > * > > igt@perf@blocking: > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-3/igt@perf@blocking.html> (i915#10538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-mtlp-3/igt@perf@blocking.html> +1 other > test pass > > > Warnings > > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-mtlp: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-mtlp-5/igt@i915_module_load@reload-with- > fault-injection.html> (i915#10131 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / > i915#9697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9697>) -> ABORT <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-mtlp-3/igt@i915_module_load@reload- > with-fault-injection.html> (i915#10131 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / > i915#10887 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/10887> / i915#9820 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9820>) > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@4-tiled-16bpp- > rotate-90.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp- > rotate-90.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9197>) +4 other tests skip > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-180: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp- > rotate-180.html> (i915#5190 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5190> / i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> > (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5190>) +1 other test skip > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-0: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp- > rotate-0.html> (i915#4538 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/4538> / i915#5190 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190> / i915#9197 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9197>) +9 other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html> > (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled- > addfb.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/5190> / i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > * > > igt@kms_ccs@bad-aux-stride-y-tiled-ccs: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_ccs@bad-aux-stride-y-tiled- > ccs.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/10307> / i915#6095 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html> > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9197>) +10 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled- > lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/12313>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > +1 other test skip > * > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a- > hdmi-a-4: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180- > y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html> (i915#6095 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12- > mc-ccs@pipe-a-hdmi-a-4.html> (i915#4423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / > i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/6095>) +1 other test skip > * > > igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180- > yf-tiled-ccs.html> (i915#9197 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html> > (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/6095>) +3 other tests skip > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_cdclk@mode-transition-all- > outputs.html> (i915#11616 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/11616> / i915#7213 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9197>) > * > > igt@kms_content_protection@atomic: > > o shard-dg2: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-10/ > igt@kms_content_protection@atomic.html> (i915#7173 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-4/igt@kms_content_protection@atomic.html> (i915#7118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9424>) > * > > igt@kms_content_protection@atomic-dpms: > > o shard-snb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-snb6/igt@kms_content_protection@atomic- > dpms.html> (i915#8816 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/8816>) -> SKIP <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-snb4/ > igt@kms_content_protection@atomic-dpms.html> > * > > igt@kms_content_protection@lic-type-0: > > o shard-dg2: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-10/igt@kms_content_protection@lic- > type-0.html> (i915#7173 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/7173>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/ > igt@kms_content_protection@lic-type-0.html> (i915#9424 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@lic-type-1: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_content_protection@lic- > type-1.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_content_protection@lic-type-1.html> (i915#9424 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@mei-interface: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-13/igt@kms_content_protection@mei- > interface.html> (i915#9433 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9433>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/ > igt@kms_content_protection@mei-interface.html> (i915#9424 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_cursor_crc@cursor-onscreen-512x170: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor- > onscreen-512x170.html> (i915#11453 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html> > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9197>) +1 other test skip > * > > igt@kms_cursor_crc@cursor-random-512x170: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_cursor_crc@cursor- > random-512x170.html> (i915#9197 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_cursor_crc@cursor-random-512x170.html> (i915#11453 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > * > > igt@kms_cursor_crc@cursor-rapid-movement-max-size: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid- > movement-max-size.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max- > size.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9197>) +5 other tests skip > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs- > flip-legacy.html> (i915#5354 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/5354>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > +1 other test skip > * > > igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs- > cursor-legacy.html> (i915#9197 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5354>) > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip- > before-cursor-atomic.html> (i915#4103 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / > i915#4213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4213>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_legacy@basic-busy- > flip-before-cursor-atomic.html> (i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (i915#9833 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9833>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb- > ioctl.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9197>) > * > > igt@kms_dsc@dsc-basic: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_dsc@dsc-basic.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/igt@kms_dsc@dsc-basic.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3840>) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3840>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_dsc@dsc-with-bpc-formats.html> (i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > downscaling: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp- > yftile-to-32bpp-yftileccs-downscaling.html> (i915#2672 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/ > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > downscaling.html> (i915#3555 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/3555>) +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs- > downscaling: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp- > ytile-to-32bpp-ytilegen12rcccs-downscaling.html> (i915#2672 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#5190 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/5190>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp- > ytilegen12rcccs-downscaling.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp- > ytile-to-16bpp-ytile-upscaling.html> (i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/ > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile- > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/2672> / i915#3555 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5190>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p- > offscren-pri-shrfb-draw-mmap-cpu.html> (i915#10433 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / > i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-6/ > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw- > mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/3458>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p- > scndscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri- > shrfb-draw-mmap-gtt.html> (i915#5354 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +13 other > tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr- > rgb565-draw-render.html> (i915#10433 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / > i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/ > igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5354>) > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc- > rte.html> (i915#9766 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/9766>) -> SKIP <https://intel-gfx-ci.01.org/ > tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#4342 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342> / > i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/5354>) > * > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p- > offscren-pri-shrfb-draw-pwrite.html> (i915#5354 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri- > shrfb-draw-pwrite.html> (i915#3458 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other > test skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p- > primscrn-spr-indfb-draw-blt.html> (i915#3458 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr- > indfb-draw-blt.html> (i915#5354 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/5354>) +12 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr- > farfromfence-mmap-gtt.html> (i915#5354 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap- > gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/8708>) +3 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@psr- > rgb565-draw-mmap-cpu.html> (i915#3458 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap- > cpu.html> (i915#10433 <https://gitlab.freedesktop.org/drm/i915/ > kernel/-/issues/10433> / i915#3458 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +3 other > tests skip > * > > igt@kms_hdr@bpc-switch: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_hdr@bpc-switch.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/igt@kms_hdr@bpc-switch.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-toggle-suspend: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8228>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_hdr@static-toggle-suspend.html> (i915#9197 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +1 other > test skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale- > factor-0-25-with-pixel-format.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9423>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane- > downscale-factor-0-25-with-pixel-format.html> (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/12247> / i915#8152 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/8152> / i915#9423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel- > format@pipe-d: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale- > factor-0-25-with-pixel-format@pipe-d.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25- > with-pixel-format@pipe-d.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > factor-0-25-unity-scaling.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152> / i915#9423 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9423>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity- > scaling.html> (i915#12247 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/12247> / i915#9423 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > factor-0-25-unity-scaling@pipe-d.html> (i915#12247 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/8152>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/igt@kms_plane_scaling@planes- > downscale-factor-0-25-unity-scaling@pipe-d.html> (i915#12247 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > * > > igt@kms_psr@fbc-pr-sprite-render: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-render.html> > (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/ > igt@kms_psr@fbc-pr-sprite-render.html> (i915#1072 <https:// > gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / > i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/4423> / i915#9732 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/9732>) > * > > igt@kms_rotation_crc@sprite-rotation-90: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-6/igt@kms_rotation_crc@sprite- > rotation-90.html> (i915#11131 <https://gitlab.freedesktop.org/ > drm/i915/kernel/-/issues/11131>) -> SKIP <https://intel-gfx- > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > igt@kms_rotation_crc@sprite-rotation-90.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > +2 other tests skip > * > > igt@kms_tiled_display@basic-test-pattern: > > o shard-glk: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-glk8/igt@kms_tiled_display@basic-test- > pattern.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-glk2/igt@kms_tiled_display@basic-test- > pattern.html> (i915#10959 <https://gitlab.freedesktop.org/drm/ > i915/kernel/-/issues/10959>) > * > > igt@kms_vrr@flipline: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-2/igt@kms_vrr@flipline.html> (i915#9197 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-1/igt@kms_vrr@flipline.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/3555>) > * > > igt@perf@non-zero-reason: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > CI_DRM_15489/shard-dg2-11/igt@perf@non-zero-reason.html> > (i915#9100 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/9100>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > Patchwork_139664v1/shard-dg2-11/igt@perf@non-zero-reason.html> > (i915#7484 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > issues/7484>) +1 other test fail > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater 2024-10-11 7:15 ` Juha-Pekka Heikkila @ 2024-10-11 9:08 ` Saarinen, Jani 0 siblings, 0 replies; 6+ messages in thread From: Saarinen, Jani @ 2024-10-11 9:08 UTC (permalink / raw) To: juhapekka.heikkila@gmail.com, intel-gfx@lists.freedesktop.org, I915-ci-infra@lists.freedesktop.org + I915-ci-infra@lists.freedesktop.org > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Juha- > Pekka Heikkila > Sent: Friday, 11 October 2024 10.15 > To: intel-gfx@lists.freedesktop.org > Subject: Re: ✗ Fi.CI.IGT: failure for drm/i915/display: Don't allow tile4 > framebuffer to do hflip on display20 or greater > > These regressions have nothing to do with my changes. My changes > affected only Xe driver. > > /Juha-Pekka > > On 9.10.2024 10.11, Patchwork wrote: > > *Patch Details* > > *Series:* drm/i915/display: Don't allow tile4 framebuffer to do hflip on > > display20 or greater > > *URL:* https://patchwork.freedesktop.org/series/139664/ <https:// > > patchwork.freedesktop.org/series/139664/> > > *State:* failure > > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > index.html <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > index.html> > > > > > > CI Bug Log - changes from CI_DRM_15489_full -> Patchwork_139664v1_full > > > > > > Summary > > > > *FAILURE* > > > > Serious unknown changes coming with Patchwork_139664v1_full absolutely > > need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in Patchwork_139664v1_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 (8 -> 8) > > > > No changes in participating hosts > > > > > > Possible new issues > > > > Here are the unknown changes that may have been introduced in > > Patchwork_139664v1_full: > > > > > > IGT changes > > > > > > Possible regressions > > > > * > > > > igt@gem_exec_balancer@smoke: > > > > o shard-dg1: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg1-13/ > > igt@gem_exec_balancer@smoke.html> > > * > > > > igt@gem_exec_schedule@deep: > > > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-glk6/ > > igt@gem_exec_schedule@deep.html> +1 other test incomplete > > * > > > > igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a1: > > > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk6/igt@kms_flip@modeset-vs-vblank-race@a- > > hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-glk2/igt@kms_flip@modeset-vs-vblank- > > race@a-hdmi-a1.html> +4 other tests fail > > > > > > New tests > > > > New tests have been introduced between CI_DRM_15489_full and > > Patchwork_139664v1_full: > > > > > > New IGT tests (8) > > > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2: > > > > o Statuses : 1 pass(s) > > o Exec time: [2.10] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4: > > > > o Statuses : 1 pass(s) > > o Exec time: [2.06] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4: > > > > o Statuses : 1 pass(s) > > o Exec time: [1.89] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2: > > > > o Statuses : 1 pass(s) > > o Exec time: [1.96] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4: > > > > o Statuses : 1 pass(s) > > o Exec time: [1.96] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2: > > > > o Statuses : 1 pass(s) > > o Exec time: [1.95] s > > * > > > > igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4: > > > > o Statuses : 1 pass(s) > > o Exec time: [1.91] s > > * > > > > igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2: > > > > o Statuses : 1 pass(s) > > o Exec time: [0.49] s > > > > > > Known issues > > > > Here are the changes found in Patchwork_139664v1_full that come from > > known issues: > > > > > > IGT changes > > > > > > Issues hit > > > > * > > > > igt@api_intel_bb@object-reloc-purge-cache: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@api_intel_bb@object- > > reloc-purge-cache.html> (i915#8411 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +1 other > > test skip > > * > > > > igt@device_reset@cold-reset-bound: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@device_reset@cold-reset- > > bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/11078>) > > * > > > > igt@drm_fdinfo@busy-check-all@vecs1: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@drm_fdinfo@busy-check- > > all@vecs1.html> (i915#8414 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8414>) +8 other tests skip > > * > > > > igt@drm_fdinfo@isolation@vecs0: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-12/ > > igt@drm_fdinfo@isolation@vecs0.html> (i915#8414 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +5 other > > tests skip > > * > > > > igt@fbdev@pan: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@fbdev@pan.html> -> SKIP <https:// > > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@fbdev@pan.html> (i915#2582 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/2582>) +1 other test skip > > * > > > > igt@gem_ccs@suspend-resume: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_ccs@suspend- > > resume.html> (i915#9323 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9323>) > > * > > > > igt@gem_create@create-ext-set-pat: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gem_create@create- > > ext-set-pat.html> (i915#8562 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/8562>) > > * > > > > igt@gem_ctx_engines@invalid-engines: > > > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk5/igt@gem_ctx_engines@invalid- > > engines.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-glk7/igt@gem_ctx_engines@invalid- > > engines.html> (i915#12027 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/12027>) > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-6/igt@gem_ctx_engines@invalid- > > engines.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-mtlp-6/igt@gem_ctx_engines@invalid- > > engines.html> (i915#12027 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/12027>) > > * > > > > igt@gem_ctx_persistence@heartbeat-many: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/ > > igt@gem_ctx_persistence@heartbeat-many.html> (i915#8555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > > * > > > > igt@gem_ctx_persistence@heartbeat-stop: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-12/ > > igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > > * > > > > igt@gem_ctx_sseu@engines: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@gem_ctx_sseu@engines.html> (i915#280 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > > * > > > > igt@gem_exec_fair@basic-pace: > > > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic- > > pace.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/2842>) +3 other tests fail > > * > > > > igt@gem_exec_fair@basic-pace-share: > > > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-tglu-7/igt@gem_exec_fair@basic-pace- > > share.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-tglu-5/igt@gem_exec_fair@basic-pace- > > share.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/2842>) +1 other test fail > > * > > > > igt@gem_exec_fair@basic-pace@rcs0: > > > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_exec_fair@basic- > > pace@rcs0.html> (i915#2876 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2876>) > > * > > > > igt@gem_exec_fair@basic-pace@vcs0: > > > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html> > > -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-glk6/igt@gem_exec_fair@basic- > > pace@vcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2842>) +1 other test fail > > * > > > > igt@gem_exec_fair@basic-throttle: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@gem_exec_fair@basic- > > throttle.html> (i915#3539 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3539>) > > * > > > > igt@gem_exec_flush@basic-wb-rw-default: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_flush@basic-wb- > > rw-default.html> (i915#3539 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3539> / i915#4852 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +1 other > > test skip > > * > > > > igt@gem_exec_reloc@basic-gtt-read: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt- > > read.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3281>) +4 other tests skip > > * > > > > igt@gem_exec_reloc@basic-write-gtt-noreloc: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_exec_reloc@basic- > > write-gtt-noreloc.html> (i915#3281 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +7 other > > tests skip > > * > > > > igt@gem_exec_schedule@pi-ringfull@vecs0: > > > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@gem_exec_schedule@pi- > > ringfull@vecs0.html> (i915#12296 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296>) +4 other > > tests fail > > * > > > > igt@gem_exec_schedule@preempt-queue-contexts-chain: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/ > > igt@gem_exec_schedule@preempt-queue-contexts-chain.html> > > (i915#4537 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4537> / i915#4812 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/4812>) > > * > > > > igt@gem_fence_thrash@bo-copy: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_fence_thrash@bo- > > copy.html> (i915#4860 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/4860>) > > * > > > > igt@gem_fence_thrash@bo-write-verify-none: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_fence_thrash@bo- > > write-verify-none.html> (i915#4860 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > > * > > > > igt@gem_gtt_cpu_tlb: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-4/ > > igt@gem_gtt_cpu_tlb.html> (i915#4077 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > > * > > > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > > +1 other test skip > > * > > > > igt@gem_lmem_swapping@parallel-random: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/ > > igt@gem_lmem_swapping@parallel-random.html> (i915#4613 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other > > tests skip > > * > > > > igt@gem_media_fill@media-fill: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@gem_media_fill@media- > > fill.html> (i915#8289 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/8289>) > > * > > > > igt@gem_mmap@basic: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@gem_mmap@basic.html> > > (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4083>) > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp- > 1/igt@gem_mmap@basic.html> > > (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4083>) > > * > > > > igt@gem_mmap_gtt@fault-concurrent-x: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_mmap_gtt@fault- > > concurrent-x.html> (i915#4077 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/4077>) +5 other tests skip > > * > > > > igt@gem_mmap_wc@write-prefaulted: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@gem_mmap_wc@write- > > prefaulted.html> (i915#4083 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/4083>) +3 other tests skip > > * > > > > igt@gem_partial_pwrite_pread@writes-after-reads: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/ > > igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > > +6 other tests skip > > * > > > > igt@gem_pread@snoop: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pread@snoop.html> > > (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3282>) +3 other tests skip > > * > > > > igt@gem_pxp@reject-modify-context-protection-off-1: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_pxp@reject-modify- > > context-protection-off-1.html> (i915#4270 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other > > tests skip > > * > > > > igt@gem_pxp@reject-modify-context-protection-on: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@gem_pxp@reject- > > modify-context-protection-on.html> (i915#4270 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other > > tests skip > > * > > > > igt@gem_pxp@verify-pxp-stale-buf-optout-execution: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_pxp@verify-pxp-stale- > > buf-optout-execution.html> (i915#4270 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +3 other > > tests skip > > * > > > > igt@gem_pxp@verify-pxp-stale-ctx-execution: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@gem_pxp@verify-pxp- > > stale-ctx-execution.html> (i915#4270 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@gem_pxp@verify-pxp- > > stale-ctx-execution.html> (i915#4270 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > > * > > > > igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: > > > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-glk7/igt@gem_render_copy@y-tiled- > > mc-ccs-to-vebox-yf-tiled.html> +7 other tests skip > > * > > > > igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@gem_render_copy@y-tiled- > > mc-ccs-to-yf-tiled-ccs.html> (i915#5190 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / > > i915#8428 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8428>) +4 other tests skip > > * > > > > igt@gem_userptr_blits@create-destroy-unsync: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@gem_userptr_blits@create- > > destroy-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/3297>) +2 other tests skip > > * > > > > igt@gem_userptr_blits@dmabuf-sync: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@gem_userptr_blits@dmabuf- > > sync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3297> / i915#3323 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) > > * > > > > igt@gem_userptr_blits@invalid-mmap-offset-unsync: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/ > > igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> > > (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3297>) > > * > > > > igt@gem_userptr_blits@map-fixed-invalidate-busy: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@gem_userptr_blits@map- > > fixed-invalidate-busy.html> (i915#3297 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / > > i915#4880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4880>) > > * > > > > igt@gem_userptr_blits@readonly-unsync: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@gem_userptr_blits@readonly-unsync.html> (i915#3297 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other > > test skip > > * > > > > igt@gen9_exec_parse@bb-oversize: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@gen9_exec_parse@bb- > > oversize.html> (i915#2527 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2527>) > > * > > > > igt@gen9_exec_parse@bb-start-cmd: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@gen9_exec_parse@bb- > > start-cmd.html> (i915#2856 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2856>) > > * > > > > igt@gen9_exec_parse@cmd-crossing-page: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@gen9_exec_parse@cmd- > > crossing-page.html> (i915#2527 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/2527> / i915#2856 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > > * > > > > igt@i915_module_load@reload-with-fault-injection: > > > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-2/igt@i915_module_load@reload-with-fault- > > injection.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@i915_module_load@reload- > > with-fault-injection.html> (i915#9820 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > > o shard-tglu: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@i915_module_load@reload-with-fault-injection.html> > > (i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9820>) > > * > > > > igt@i915_pipe_stress@stress-xrgb8888-untiled: > > > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888- > > untiled.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-5/ > > igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#1982 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982>) > > * > > > > igt@i915_pipe_stress@stress-xrgb8888-ytiled: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-5/igt@i915_pipe_stress@stress- > > xrgb8888-ytiled.html> (i915#7091 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091>) > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > > igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> (i915#8436 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436>) > > * > > > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > > > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6- > > idle@gt0-vecs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-dg1-14/ > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html> (i915#3591 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) > > * > > > > igt@i915_query@test-query-geometry-subslices: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@i915_query@test-query- > > geometry-subslices.html> (i915#5723 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) > > * > > > > igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_addfb_basic@addfb25- > > framebuffer-vs-set-tiling.html> (i915#4212 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > > * > > > > igt@kms_addfb_basic@basic-y-tiled-legacy: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_addfb_basic@basic-y- > > tiled-legacy.html> (i915#4215 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/4215> / i915#5190 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > > * > > > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826>) > > * > > > > igt@kms_async_flips@alternate-sync-async-flip: > > > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-14/igt@kms_async_flips@alternate-sync- > > async-flip.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg1-17/ > > igt@kms_async_flips@alternate-sync-async-flip.html> (i915#4423 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > > * > > > > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: > > > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-7/igt@kms_async_flips@alternate-sync- > > async-flip@pipe-b-hdmi-a-1.html> -> FAIL <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-4/ > > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi- > > a-1.html> (i915#10991 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/10991>) +1 other test fail > > * > > > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi- > > a-2-y-rc-ccs-cc: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_async_flips@async- > > flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html> > > (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8709>) +3 other tests skip > > * > > > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing- > > internal-panels: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing- > > internal-panels.html> (i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +3 other > > tests skip > > * > > > > igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a- > > hdmi-a-1: > > > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-tglu-9/igt@kms_atomic_transition@plane- > > toggle-modeset-transition@pipe-a-hdmi-a-1.html> -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset- > > transition@pipe-a-hdmi-a-1.html> (i915#11808 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808>) +1 other > > test fail > > * > > > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp- > > rotate-180.html> (i915#5286 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5286>) +3 other tests skip > > * > > > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max- > > hw-stride-64bpp-rotate-0-hflip.html> (i915#4538 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / > > i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5286>) > > * > > > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_big_fb@4-tiled- > > max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#5286 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > > +2 other tests skip > > * > > > > igt@kms_big_fb@linear-16bpp-rotate-90: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_big_fb@linear-16bpp-rotate-90.html> +42 other tests skip > > * > > > > igt@kms_big_fb@linear-32bpp-rotate-90: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_big_fb@linear-32bpp- > > rotate-90.html> (i915#3638 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3638>) +1 other test skip > > * > > > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-10/igt@kms_big_fb@y-tiled- > > addfb-size-offset-overflow.html> (i915#5190 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > > * > > > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-8/igt@kms_big_fb@y-tiled- > > max-hw-stride-32bpp-rotate-0-async-flip.html> > > * > > > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max- > > hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#4538 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / > > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) +5 other tests skip > > * > > > > igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled- > > addfb-size-offset-overflow.html> (i915#5190 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / > > i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9197>) > > * > > > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y- > > tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> (i915#10307 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / > > i915#10434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/10434> / i915#6095 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/6095>) +7 other tests skip > > * > > > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_ccs@bad- > > rotation-90-4-tiled-bmg-ccs.html> (i915#12313 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > > * > > > > igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-2/igt@kms_ccs@crc-primary- > > basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > > +90 other tests skip > > * > > > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-5/igt@kms_ccs@crc-sprite- > > planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> > > (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/6095>) +127 other tests skip > > * > > > > igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@missing-ccs- > > buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html> (i915#6095 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > > +19 other tests skip > > * > > > > igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_ccs@random-ccs- > > data-4-tiled-bmg-ccs.html> (i915#12313 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other > > test skip > > * > > > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-13/igt@kms_ccs@random-ccs- > > data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html> (i915#6095 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > > +95 other tests skip > > * > > > > igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_ccs@random-ccs- > > data-4-tiled-lnl-ccs.html> (i915#12313 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other > > test skip > > * > > > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_cdclk@mode- > > transition@pipe-d-hdmi-a-1.html> (i915#11616 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616> / > > i915#7213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/7213>) +3 other tests skip > > * > > > > igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cdclk@plane- > > scaling@pipe-d-hdmi-a-2.html> (i915#4087 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +4 other > > tests skip > > * > > > > igt@kms_chamelium_color@degamma: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@kms_chamelium_color@degamma.html> +13 other tests skip > > * > > > > igt@kms_chamelium_edid@dp-edid-resolution-list: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_chamelium_edid@dp-edid-resolution-list.html> (i915#7828 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > > +3 other tests skip > > * > > > > igt@kms_chamelium_frames@dp-crc-single: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > > igt@kms_chamelium_frames@dp-crc-single.html> (i915#7828 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > > * > > > > igt@kms_chamelium_frames@hdmi-frame-dump: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/ > > igt@kms_chamelium_frames@hdmi-frame-dump.html> (i915#7828 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > > +6 other tests skip > > * > > > > igt@kms_chamelium_hpd@dp-hpd-fast: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-13/igt@kms_chamelium_hpd@dp- > > hpd-fast.html> (i915#7828 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/7828>) > > * > > > > igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_chamelium_hpd@vga- > > hpd-with-enabled-mode.html> (i915#7828 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other > > tests skip > > * > > > > igt@kms_color@deep-color: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_color@deep- > > color.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3555> / [i915#9979]) > > * > > > > igt@kms_content_protection@dp-mst-type-1: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_content_protection@dp-mst-type-1.html> (i915#3116 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > > +1 other test skip > > * > > > > igt@kms_content_protection@lic-type-1: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/ > > igt@kms_content_protection@lic-type-1.html> (i915#9424 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > > * > > > > igt@kms_content_protection@mei-interface: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@kms_content_protection@mei-interface.html> (i915#6944 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / > > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9424>) > > * > > > > igt@kms_content_protection@uevent: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/ > > igt@kms_content_protection@uevent.html> (i915#7118 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / > > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9424>) > > * > > > > igt@kms_cursor_crc@cursor-offscreen-32x32: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_cursor_crc@cursor-offscreen-32x32.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > > +2 other tests skip > > * > > > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_cursor_crc@cursor- > > offscreen-512x512.html> (i915#11453 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > > * > > > > igt@kms_cursor_crc@cursor-random-512x170: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_cursor_crc@cursor- > > random-512x170.html> (i915#11453 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +1 other > > test skip > > * > > > > igt@kms_cursor_crc@cursor-rapid-movement-32x10: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_cursor_crc@cursor- > > rapid-movement-32x10.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > > igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#8814 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8814>) > > * > > > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_cursor_legacy@basic- > > busy-flip-before-cursor-legacy.html> (i915#4103 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > > * > > > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor- > > atomic-transitions-varying-size.html> -> FAIL <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk4/ > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying- > > size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/2346>) > > * > > > > igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb- > > ioctl.html> (i915#9723 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9723>) > > * > > > > igt@kms_display_modes@extended-mode-basic: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@kms_display_modes@extended-mode-basic.html> (i915#3555 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > > +4 other tests skip > > * > > > > igt@kms_display_modes@mst-extended-mode-negative: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@kms_display_modes@mst-extended-mode-negative.html> > > (i915#8588 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8588>) > > * > > > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs- > > panel-6bpc@pipe-a-hdmi-a-2.html> (i915#3804 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > > * > > > > igt@kms_draw_crc@draw-method-mmap-gtt: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_draw_crc@draw- > > method-mmap-gtt.html> (i915#8812 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812>) > > * > > > > igt@kms_dsc@dsc-basic: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3840>) +1 other test skip > > * > > > > igt@kms_dsc@dsc-with-output-formats: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_dsc@dsc-with- > > output-formats.html> (i915#3555 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/3555> / i915#3840 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > > * > > > > igt@kms_fbcon_fbt@fbc-suspend: > > > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html> -> > > FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-glk2/igt@kms_fbcon_fbt@fbc- > > suspend.html> (i915#4767 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/4767>) > > * > > > > igt@kms_feature_discovery@display-4x: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/ > > igt@kms_feature_discovery@display-4x.html> (i915#1839 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > > * > > > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_flip@2x-flip-vs- > > dpms-off-vs-modeset.html> (i915#3637 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +1 other > > test skip > > * > > > > igt@kms_flip@2x-flip-vs-wf_vblank: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_flip@2x-flip-vs- > > wf_vblank.html> (i915#9934 <https://gitlab.freedes>) > > * > > > > igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: > > > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@c- > > hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-tglu-4/igt@kms_flip@blocking- > > wf_vblank@c-hdmi-a1.html> (i915#2122 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) +6 other > > tests fail > > * > > > > igt@kms_flip@flip-vs-absolute-wf_vblank: > > > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-4/igt@kms_flip@flip-vs-absolute- > > wf_vblank.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs- > > absolute-wf_vblank.html> (i915#2122 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) > > * > > > > igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: > > > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_flip@flip-vs- > > absolute-wf_vblank@b-hdmi-a2.html> (i915#11961 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961>) +1 other > > test fail > > * > > > > igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a4: > > > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank@a- > > hdmi-a4.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg1-16/igt@kms_flip@flip-vs-expired- > > vblank@a-hdmi-a4.html> (i915#79 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/79>) +1 other test fail > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > > upscaling: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2672> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other > > tests skip > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > > upscaling@pipe-a-valid-mode: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs- > > upscaling@pipe-a-valid-mode.html> (i915#2672 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other > > tests skip > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs- > > upscaling@pipe-a-valid-mode: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp- > > ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> (i915#2672 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) > > +2 other tests skip > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile- > > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2672> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) > > * > > > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp- > > linear-to-32bpp-linear-downscaling.html> -> SKIP <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear- > > downscaling.html> (i915#3555 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/3555>) +3 other tests skip > > * > > > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2672> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other > > test skip > > * > > > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > > upscaling@pipe-a-valid-mode: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/ > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile- > > upscaling@pipe-a-valid-mode.html> (i915#2587 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / > > i915#2672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/2672>) +1 other test skip > > * > > > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-12/ > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw- > > mmap-cpu.html> +2 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw- > > mmap-wc.html> (i915#1825 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/1825>) +25 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > > > > o shard-snb: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p- > > scndscrn-spr-indfb-draw-mmap-wc.html> -> SKIP <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb4/ > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw- > > mmap-wc.html> +2 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc- > > rgb565-draw-render.html> -> SKIP <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> > > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5354>) +19 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap- > cpu: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/ > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw- > > mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3458>) +9 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: > > > > o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-snb2/ > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw- > > pwrite.html> +5 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb- > > fullscreen.html> (i915#5354 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5354>) +19 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/ > > igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap- > > gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/8708>) +12 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> > > (i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3023>) +18 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/ > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw- > > pwrite.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3458>) +2 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-4/ > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw- > > mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8708>) > > * > > > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-12/ > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw- > > mmap-wc.html> (i915#8708 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8708>) +1 other test skip > > * > > > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb- > > onoff.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/1825>) > > * > > > > igt@kms_getfb@getfb-reject-ccs: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_getfb@getfb-reject- > > ccs.html> (i915#6118 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/6118>) > > * > > > > igt@kms_hdr@bpc-switch: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_hdr@bpc-switch.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8228>) > > * > > > > igt@kms_hdr@invalid-hdr: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_hdr@invalid- > > hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3555> / i915#8228 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > > * > > > > igt@kms_hdr@static-swap: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-10/igt@kms_hdr@static-swap.html> -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-4/igt@kms_hdr@static-swap.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8228>) > > * > > > > igt@kms_joiner@basic-force-big-joiner: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_joiner@basic-force- > > big-joiner.html> (i915#10656 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/10656>) > > * > > > > igt@kms_joiner@invalid-modeset-big-joiner: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_joiner@invalid- > > modeset-big-joiner.html> (i915#10656 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-5/igt@kms_joiner@invalid- > > modeset-big-joiner.html> (i915#10656 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > > * > > > > igt@kms_plane@pixel-format: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_plane@pixel-format.html> -> > > SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_plane@pixel-format.html> > > (i915#8825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8825>) > > * > > > > igt@kms_plane@planar-pixel-format-settings: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_plane@planar-pixel-format- > > settings.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_plane@planar-pixel- > > format-settings.html> (i915#9581 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581>) > > * > > > > igt@kms_plane_lowres@tiling-yf: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_plane_lowres@tiling- > > yf.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3555> / i915#8821 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>) > > * > > > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe- > b: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale- > > factor-0-75-with-rotation@pipe-b.html> -> SKIP <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with- > > rotation@pipe-b.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +17 > > other tests skip > > * > > > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe- > d: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane-downscale- > > factor-0-75-with-rotation@pipe-d.html> -> SKIP <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with- > > rotation@pipe-d.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152>) +3 other tests skip > > * > > > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@plane-scaler- > > unity-scaling-with-rotation.html> -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with- > > rotation.html> (i915#12247 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/12247> / i915#8152 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152> / > > i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9423>) +1 other test skip > > * > > > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane- > > upscale-20x20-with-pixel-format.html> -> SKIP <https://intel- > > gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel- > > format.html> (i915#8152 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8152> / i915#9423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +1 other > > test skip > > * > > > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_plane_scaling@plane- > > upscale-20x20-with-pixel-format@pipe-d.html> -> SKIP <https:// > > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel- > > format@pipe-d.html> (i915#8152 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/8152>) +1 other test skip > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-25: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-4/igt@kms_plane_scaling@planes- > > downscale-factor-0-25.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/6953> / i915#9423 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9423>) +1 other test skip > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe- > a: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_plane_scaling@planes- > > downscale-factor-0-25-unity-scaling@pipe-a.html> (i915#12247 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > > +7 other tests skip > > * > > > > igt@kms_plane_scaling@planes-scaler-unity-scaling: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_plane_scaling@planes-scaler- > > unity-scaling.html> -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@planes-scaler-unity-scaling.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#8152 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8152> / i915#9423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > > * > > > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe- > c: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/ > > igt@kms_plane_scaling@planes-unity-scaling-downscale- > > factor-0-25@pipe-c.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +11 > > other tests skip > > * > > > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > > igt@kms_plane_scaling@planes-unity-scaling-downscale- > > factor-0-5.html> (i915#6953 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/6953>) > > * > > > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/ > > igt@kms_plane_scaling@planes-unity-scaling-downscale- > > factor-0-5@pipe-a.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other > > tests skip > > * > > > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_plane_scaling@planes- > > upscale-20x20-downscale-factor-0-25.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#9423 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9423>) > > * > > > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > > factor-0-5.html> (i915#12247 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/12247> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/6953>) > > * > > > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe- > b: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > > factor-0-5@pipe-b.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +8 other > > tests skip > > * > > > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_plane_scaling@planes- > > upscale-20x20-downscale-factor-0-75.html> -> SKIP <https:// > > intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_plane_scaling@planes-upscale-20x20-downscale- > > factor-0-75.html> (i915#12247 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/12247> / i915#6953 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152> / i915#9423 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9423>) > > * > > > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_plane_scaling@planes- > > upscale-factor-0-25-downscale-factor-0-25.html> (i915#12247 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/12247> / i915#6953 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/6953>) > > * > > > > igt@kms_pm_backlight@fade-with-dpms: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_backlight@fade- > > with-dpms.html> (i915#5354 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5354>) > > * > > > > igt@kms_pm_dc@dc6-dpms: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_pm_dc@dc6- > dpms.html> > > (i915#5978 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5978>) > > * > > > > igt@kms_pm_dc@dc9-dpms: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html> > > (i915#3361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3361>) > > * > > > > igt@kms_pm_rpm@dpms-non-lpsp: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html> -> > > SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@dpms-non- > > lpsp.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9519>) > > * > > > > igt@kms_pm_rpm@modeset-lpsp-stress: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp- > > stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9519>) > > * > > > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_pm_rpm@modeset- > > non-lpsp-stress.html> (i915#9519 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > > * > > > > igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-8/igt@kms_psr2_sf@fbc-pr- > > overlay-plane-move-continuous-sf.html> (i915#11520 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other > > tests skip > > * > > > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr2_sf@fbc-pr- > > overlay-plane-update-continuous-sf.html> (i915#11520 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other > > tests skip > > * > > > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: > > > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-glk7/igt@kms_psr2_sf@fbc-psr2- > > overlay-plane-move-continuous-exceed-sf.html> (i915#11520 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > > * > > > > igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_psr2_sf@psr2-overlay- > > plane-update-continuous-sf.html> (i915#11520 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other > > tests skip > > * > > > > igt@kms_psr2_su@frontbuffer-xrgb8888: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > > * > > > > igt@kms_psr2_su@page_flip-nv12: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_psr2_su@page_flip- > > nv12.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9683>) > > * > > > > igt@kms_psr@fbc-pr-cursor-plane-onoff: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/igt@kms_psr@fbc-pr-cursor- > > plane-onoff.html> (i915#1072 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/1072> / i915#9732 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other > > tests skip > > * > > > > igt@kms_psr@fbc-psr-primary-blt: > > > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-18/igt@kms_psr@fbc-psr-primary- > > blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/1072> / i915#9732 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +3 other > > tests skip > > * > > > > igt@kms_psr@fbc-psr2-primary-mmap-gtt: > > > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_psr@fbc-psr2- > > primary-mmap-gtt.html> (i915#2295 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295>) > > * > > > > igt@kms_psr@fbc-psr2-primary-render: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-1/igt@kms_psr@fbc-psr2- > > primary-render.html> (i915#9688 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9688>) +4 other tests skip > > * > > > > igt@kms_psr@psr2-cursor-blt: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_psr@psr2-cursor- > > blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/1072> / i915#9732 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other > > tests skip > > * > > > > igt@kms_psr@psr2-cursor-plane-onoff: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_psr@psr2-cursor- > > plane-onoff.html> (i915#9732 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9732>) +7 other tests skip > > * > > > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_psr_stress_test@flip- > > primary-invalidate-overlay.html> (i915#9685 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other > > test skip > > * > > > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/ > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> > > (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5289>) > > * > > > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@kms_rotation_crc@primary- > > yf-tiled-reflect-x-180.html> (i915#5289 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other > > test skip > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> > > (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5289>) > > * > > > > igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@kms_rotation_crc@sprite- > > rotation-90-pos-100-0.html> (i915#11131 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>) > > * > > > > igt@kms_setmode@basic@pipe-b-edp-1: > > > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-4/igt@kms_setmode@basic@pipe-b- > > edp-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-mtlp-3/igt@kms_setmode@basic@pipe-b- > > edp-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/5465>) +2 other tests fail > > * > > > > igt@kms_setmode@invalid-clone-single-crtc-stealing: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_setmode@invalid- > > clone-single-crtc-stealing.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other > > test skip > > * > > > > igt@kms_sysfs_edid_timing: > > > > o shard-dg2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/ > > igt@kms_sysfs_edid_timing.html> (IGT#2 <https:// > > gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) > > * > > > > igt@kms_vblank@ts-continuation-modeset: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_vblank@ts-continuation- > > modeset.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_vblank@ts-continuation- > > modeset.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9197>) +46 other tests skip > > * > > > > igt@kms_vrr@seamless-rr-switch-virtual: > > > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-tglu-2/igt@kms_vrr@seamless-rr- > > switch-virtual.html> (i915#9906 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9906>) > > * > > > > igt@kms_vrr@seamless-rr-switch-vrr: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-11/igt@kms_vrr@seamless-rr- > > switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9906>) +1 other test skip > > * > > > > igt@kms_writeback@writeback-check-output: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@kms_writeback@writeback- > > check-output.html> (i915#2437 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/2437>) +1 other test skip > > * > > > > igt@kms_writeback@writeback-invalid-parameters: > > > > o shard-mtlp: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-mtlp-8/ > > igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > > * > > > > igt@perf@gen12-group-concurrent-oa-buffer-read: > > > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@perf@gen12-group-concurrent-oa- > > buffer-read.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@perf@gen12-group- > > concurrent-oa-buffer-read.html> (i915#10538 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) > > * > > > > igt@perf@global-sseu-config-invalid: > > > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-6/igt@perf@global-sseu-config- > > invalid.html> (i915#7387 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/7387>) > > * > > > > igt@perf_pmu@rc6@other-idle-gt0: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@perf_pmu@rc6@other-idle- > > gt0.html> (i915#8516 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/8516>) > > * > > > > igt@sriov_basic@bind-unbind-vf: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-3/igt@sriov_basic@bind-unbind- > > vf.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9917>) > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg1-12/igt@sriov_basic@bind-unbind- > > vf.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9917>) > > * > > > > igt@syncobj_wait@invalid-wait-zero-handles: > > > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-5/igt@syncobj_wait@invalid- > > wait-zero-handles.html> (i915#9781 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>) > > * > > > > igt@tools_test@sysfs_l3_parity: > > > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-rkl-4/ > > igt@tools_test@sysfs_l3_parity.html> +17 other tests skip > > > > > > Possible fixes > > > > * > > > > igt@gem_create@create-ext-cpu-access-big: > > > > o shard-dg2: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@gem_create@create-ext-cpu-access- > > big.html> (i915#9846 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9846>) -> PASS <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg2-6/ > > igt@gem_create@create-ext-cpu-access-big.html> > > * > > > > igt@gem_ctx_persistence@hostile: > > > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html> > > (i915#11980 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/11980>) -> PASS <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-mtlp-3/ > > igt@gem_ctx_persistence@hostile.html> > > * > > > > igt@gem_eio@hibernate: > > > > o shard-dg2: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@gem_eio@hibernate.html> (i915#10030 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/10030> / i915#7975 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/7975> / i915#8213 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-11/igt@gem_eio@hibernate.html> > > * > > > > igt@gem_exec_fair@basic-pace-share: > > > > o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-5/igt@gem_exec_fair@basic-pace- > > share.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-rkl-7/ > > igt@gem_exec_fair@basic-pace-share.html> +3 other tests pass > > * > > > > igt@gem_wait@write-busy: > > > > o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-10/igt@gem_wait@write-busy.html> -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-4/igt@gem_wait@write-busy.html> +1 other test pass > > * > > > > igt@gen9_exec_parse@valid-registers: > > > > o shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk3/igt@gen9_exec_parse@valid- > > registers.html> (i915#2295 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2295>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-glk6/ > > igt@gen9_exec_parse@valid-registers.html> > > * > > > > igt@i915_module_load@reload-with-fault-injection: > > > > o shard-snb: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-snb2/igt@i915_module_load@reload-with-fault- > > injection.html> (i915#9820 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9820>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-snb2/ > > igt@i915_module_load@reload-with-fault-injection.html> > > * > > > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: > > > > o shard-dg1: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-15/igt@i915_pm_rc6_residency@rc6- > > idle@gt0-vcs0.html> (i915#3591 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/3591>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/ > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> > > * > > > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp- > > rotate-180.html> (i915#5138 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5138>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-mtlp-6/ > > igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > > * > > > > igt@kms_cursor_legacy@cursor-vs-flip-toggle: > > > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-3/igt@kms_cursor_legacy@cursor-vs-flip- > > toggle.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs- > > flip-toggle.html> > > * > > > > igt@kms_flip@2x-plain-flip-ts-check: > > > > o shard-snb: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-snb6/igt@kms_flip@2x-plain-flip-ts- > > check.html> (i915#2122 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/2122>) -> PASS <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-snb4/igt@kms_flip@2x- > > plain-flip-ts-check.html> +1 other test pass > > * > > > > igt@kms_flip@blocking-wf_vblank: > > > > o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html> > > (i915#11961 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/11961> / i915#2122 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2122>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-5/ > > igt@kms_flip@blocking-wf_vblank.html> > > * > > > > igt@kms_flip@flip-vs-expired-vblank: > > > > o shard-glk: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk5/igt@kms_flip@flip-vs-expired- > > vblank.html> (i915#79 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/79>) -> PASS <https://intel-gfx-ci.01.org/tree/ > > drm-tip/Patchwork_139664v1/shard-glk7/igt@kms_flip@flip-vs- > > expired-vblank.html> +1 other test pass > > * > > > > igt@kms_flip@flip-vs-suspend-interruptible: > > > > o shard-dg1: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-18/igt@kms_flip@flip-vs-suspend- > > interruptible.html> (i915#4423 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/4423>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-12/ > > igt@kms_flip@flip-vs-suspend-interruptible.html> > > * > > > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: > > > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p- > > primscrn-pri-shrfb-draw-blt.html> (i915#6880 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri- > > shrfb-draw-blt.html> > > * > > > > igt@kms_frontbuffer_tracking@fbc-stridechange: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc- > > stridechange.html> (i915#5354 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/5354>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_frontbuffer_tracking@fbc-stridechange.html> +3 other > > tests pass > > * > > > > igt@kms_hdr@invalid-metadata-sizes: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-11/igt@kms_hdr@invalid-metadata- > > sizes.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/3555> / i915#8228 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html> > > * > > > > igt@kms_pipe_crc_basic@suspend-read-crc: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read- > > crc.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9197>) -> PASS <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_pipe_crc_basic@suspend-read-crc.html> +8 other tests pass > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-75: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > > factor-0-75.html> (i915#12247 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/12247> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/6953> / i915#8152 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8152> / i915#9423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-11/igt@kms_plane_scaling@planes-downscale- > > factor-0-75.html> > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > > factor-0-75@pipe-b.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-11/igt@kms_plane_scaling@planes-downscale- > > factor-0-75@pipe-b.html> +2 other tests pass > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > > factor-0-75@pipe-d.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-11/igt@kms_plane_scaling@planes- > > downscale-factor-0-75@pipe-d.html> > > * > > > > igt@kms_pm_dc@dc9-dpms: > > > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html> > (i915#7330 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7330>) > > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/igt@kms_pm_dc@dc9-dpms.html> > > o shard-tglu: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html> > > (i915#4281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4281>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html> > > * > > > > igt@kms_pm_lpsp@kms-lpsp: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html> > > (i915#9340 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9340>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> > > * > > > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp- > > stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9519>) -> PASS <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-rkl-3/ > > igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +3 other tests pass > > * > > > > igt@kms_setmode@basic: > > > > o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-tglu-5/igt@kms_setmode@basic.html> (i915#5465 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) > > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-tglu-8/igt@kms_setmode@basic.html> +1 > > other test pass > > * > > > > igt@kms_universal_plane@cursor-fb-leak: > > > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-8/igt@kms_universal_plane@cursor-fb- > > leak.html> (i915#9196 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9196>) -> PASS <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-mtlp-5/ > > igt@kms_universal_plane@cursor-fb-leak.html> +1 other test pass > > * > > > > igt@perf@blocking: > > > > o shard-mtlp: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-3/igt@perf@blocking.html> (i915#10538 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) > > -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-mtlp-3/igt@perf@blocking.html> +1 other > > test pass > > > > > > Warnings > > > > * > > > > igt@i915_module_load@reload-with-fault-injection: > > > > o shard-mtlp: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-mtlp-5/igt@i915_module_load@reload-with- > > fault-injection.html> (i915#10131 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / > > i915#9697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9697>) -> ABORT <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-mtlp-3/igt@i915_module_load@reload- > > with-fault-injection.html> (i915#10131 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / > > i915#10887 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/10887> / i915#9820 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9820>) > > * > > > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@4-tiled-16bpp- > > rotate-90.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm- > > tip/Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp- > > rotate-90.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9197>) +4 other tests skip > > * > > > > igt@kms_big_fb@yf-tiled-32bpp-rotate-180: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp- > > rotate-180.html> (i915#5190 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5190> / i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> > > (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5190>) +1 other test skip > > * > > > > igt@kms_big_fb@yf-tiled-64bpp-rotate-0: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp- > > rotate-0.html> (i915#4538 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/4538> / i915#5190 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > > (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190> / i915#9197 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9197>) +9 other tests skip > > * > > > > igt@kms_big_fb@yf-tiled-addfb: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html> > > (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_big_fb@yf-tiled- > > addfb.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/5190> / i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > * > > > > igt@kms_ccs@bad-aux-stride-y-tiled-ccs: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_ccs@bad-aux-stride-y-tiled- > > ccs.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/10307> / i915#6095 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html> > > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9197>) +10 other tests skip > > * > > > > igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled- > > lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/12313>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > +1 other test skip > > * > > > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a- > > hdmi-a-4: > > > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180- > > y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html> (i915#6095 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12- > > mc-ccs@pipe-a-hdmi-a-4.html> (i915#4423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / > > i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/6095>) +1 other test skip > > * > > > > igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180- > > yf-tiled-ccs.html> (i915#9197 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html> > > (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/6095>) +3 other tests skip > > * > > > > igt@kms_cdclk@mode-transition-all-outputs: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_cdclk@mode-transition-all- > > outputs.html> (i915#11616 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/11616> / i915#7213 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html> > > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9197>) > > * > > > > igt@kms_content_protection@atomic: > > > > o shard-dg2: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-10/ > > igt@kms_content_protection@atomic.html> (i915#7173 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-4/igt@kms_content_protection@atomic.html> (i915#7118 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / > > i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9424>) > > * > > > > igt@kms_content_protection@atomic-dpms: > > > > o shard-snb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-snb6/igt@kms_content_protection@atomic- > > dpms.html> (i915#8816 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/8816>) -> SKIP <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-snb4/ > > igt@kms_content_protection@atomic-dpms.html> > > * > > > > igt@kms_content_protection@lic-type-0: > > > > o shard-dg2: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-10/igt@kms_content_protection@lic- > > type-0.html> (i915#7173 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/7173>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-4/ > > igt@kms_content_protection@lic-type-0.html> (i915#9424 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > > * > > > > igt@kms_content_protection@lic-type-1: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_content_protection@lic- > > type-1.html> (i915#9197 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_content_protection@lic-type-1.html> (i915#9424 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > > * > > > > igt@kms_content_protection@mei-interface: > > > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-13/igt@kms_content_protection@mei- > > interface.html> (i915#9433 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9433>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-14/ > > igt@kms_content_protection@mei-interface.html> (i915#9424 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > > * > > > > igt@kms_cursor_crc@cursor-onscreen-512x170: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor- > > onscreen-512x170.html> (i915#11453 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html> > > (i915#9197 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9197>) +1 other test skip > > * > > > > igt@kms_cursor_crc@cursor-random-512x170: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_cursor_crc@cursor- > > random-512x170.html> (i915#9197 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_cursor_crc@cursor-random-512x170.html> (i915#11453 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > > * > > > > igt@kms_cursor_crc@cursor-rapid-movement-max-size: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid- > > movement-max-size.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max- > > size.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9197>) +5 other tests skip > > * > > > > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs- > > flip-legacy.html> (i915#5354 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/5354>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > +1 other test skip > > * > > > > igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs- > > cursor-legacy.html> (i915#9197 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/9197>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html> > > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5354>) > > * > > > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip- > > before-cursor-atomic.html> (i915#4103 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / > > i915#4213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4213>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_cursor_legacy@basic-busy- > > flip-before-cursor-atomic.html> (i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > * > > > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > > (i915#9833 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9833>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb- > > ioctl.html> (i915#9197 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9197>) > > * > > > > igt@kms_dsc@dsc-basic: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_dsc@dsc-basic.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/igt@kms_dsc@dsc-basic.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3840>) > > * > > > > igt@kms_dsc@dsc-with-bpc-formats: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3840>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_dsc@dsc-with-bpc-formats.html> (i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > > downscaling: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp- > > yftile-to-32bpp-yftileccs-downscaling.html> (i915#2672 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / > > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/ > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs- > > downscaling.html> (i915#3555 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/3555>) +2 other tests skip > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs- > > downscaling: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp- > > ytile-to-32bpp-ytilegen12rcccs-downscaling.html> (i915#2672 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / > > i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#5190 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/5190>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp- > > ytilegen12rcccs-downscaling.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) +1 other test skip > > * > > > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp- > > ytile-to-16bpp-ytile-upscaling.html> (i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/ > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile- > > upscaling.html> (i915#2672 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/2672> / i915#3555 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / > > i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5190>) +1 other test skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap- > cpu: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p- > > offscren-pri-shrfb-draw-mmap-cpu.html> (i915#10433 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / > > i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-6/ > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw- > > mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/3458>) > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap- > gtt: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p- > > scndscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri- > > shrfb-draw-mmap-gtt.html> (i915#5354 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +13 other > > tests skip > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr- > > rgb565-draw-render.html> (i915#10433 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / > > i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/ > > igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> > > (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5354>) > > * > > > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-8/igt@kms_frontbuffer_tracking@pipe-fbc- > > rte.html> (i915#9766 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/9766>) -> SKIP <https://intel-gfx-ci.01.org/ > > tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#4342 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342> / > > i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/5354>) > > * > > > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p- > > offscren-pri-shrfb-draw-pwrite.html> (i915#5354 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri- > > shrfb-draw-pwrite.html> (i915#3458 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other > > test skip > > * > > > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p- > > primscrn-spr-indfb-draw-blt.html> (i915#3458 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr- > > indfb-draw-blt.html> (i915#5354 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/5354>) +12 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_frontbuffer_tracking@psr- > > farfromfence-mmap-gtt.html> (i915#5354 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap- > > gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/8708>) +3 other tests skip > > * > > > > igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-5/igt@kms_frontbuffer_tracking@psr- > > rgb565-draw-mmap-cpu.html> (i915#3458 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap- > > cpu.html> (i915#10433 <https://gitlab.freedesktop.org/drm/i915/ > > kernel/-/issues/10433> / i915#3458 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +3 other > > tests skip > > * > > > > igt@kms_hdr@bpc-switch: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_hdr@bpc-switch.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/igt@kms_hdr@bpc-switch.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8228>) > > * > > > > igt@kms_hdr@static-toggle-suspend: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8228>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_hdr@static-toggle-suspend.html> (i915#9197 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +1 other > > test skip > > * > > > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale- > > factor-0-25-with-pixel-format.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9423>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-2/igt@kms_plane_scaling@plane- > > downscale-factor-0-25-with-pixel-format.html> (i915#12247 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/12247> / i915#8152 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/8152> / i915#9423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > > * > > > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel- > > format@pipe-d: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_plane_scaling@plane-downscale- > > factor-0-25-with-pixel-format@pipe-d.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139664v1/ > > shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25- > > with-pixel-format@pipe-d.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152>) > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > > factor-0-25-unity-scaling.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152> / i915#9423 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9423>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-1/ > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity- > > scaling.html> (i915#12247 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/12247> / i915#9423 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > > * > > > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe- > d: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_plane_scaling@planes-downscale- > > factor-0-25-unity-scaling@pipe-d.html> (i915#12247 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / > > i915#8152 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/8152>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/igt@kms_plane_scaling@planes- > > downscale-factor-0-25-unity-scaling@pipe-d.html> (i915#12247 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) > > * > > > > igt@kms_psr@fbc-pr-sprite-render: > > > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-render.html> > > (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg1-18/ > > igt@kms_psr@fbc-pr-sprite-render.html> (i915#1072 <https:// > > gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / > > i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/4423> / i915#9732 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/9732>) > > * > > > > igt@kms_rotation_crc@sprite-rotation-90: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-6/igt@kms_rotation_crc@sprite- > > rotation-90.html> (i915#11131 <https://gitlab.freedesktop.org/ > > drm/i915/kernel/-/issues/11131>) -> SKIP <https://intel-gfx- > > ci.01.org/tree/drm-tip/Patchwork_139664v1/shard-dg2-2/ > > igt@kms_rotation_crc@sprite-rotation-90.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > +2 other tests skip > > * > > > > igt@kms_tiled_display@basic-test-pattern: > > > > o shard-glk: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-glk8/igt@kms_tiled_display@basic-test- > > pattern.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-glk2/igt@kms_tiled_display@basic-test- > > pattern.html> (i915#10959 <https://gitlab.freedesktop.org/drm/ > > i915/kernel/-/issues/10959>) > > * > > > > igt@kms_vrr@flipline: > > > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-2/igt@kms_vrr@flipline.html> (i915#9197 > > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) > > -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-1/igt@kms_vrr@flipline.html> > > (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/3555>) > > * > > > > igt@perf@non-zero-reason: > > > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > CI_DRM_15489/shard-dg2-11/igt@perf@non-zero-reason.html> > > (i915#9100 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/9100>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/ > > Patchwork_139664v1/shard-dg2-11/igt@perf@non-zero-reason.html> > > (i915#7484 <https://gitlab.freedesktop.org/drm/i915/kernel/-/ > > issues/7484>) +1 other test fail > > > > {name}: This element is suppressed. This means it is ignored when computing > > the status of the difference (SUCCESS, WARNING, or FAILURE). > > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-11 9:08 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-07 18:28 [PATCH] drm/i915/display: Don't allow tile4 framebuffer to do hflip on display20 or greater Juha-Pekka Heikkila 2024-10-08 5:46 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-10-08 7:55 ` [PATCH] " Pottumuttu, Sai Teja 2024-10-09 7:11 ` ✗ Fi.CI.IGT: failure for " Patchwork 2024-10-11 7:15 ` Juha-Pekka Heikkila 2024-10-11 9:08 ` Saarinen, Jani
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox