* [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x
@ 2026-02-10 10:24 Jan Maslak
2026-02-10 10:24 ` [PATCH 1/1] " Jan Maslak
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jan Maslak @ 2026-02-10 10:24 UTC (permalink / raw)
To: igt-dev; +Cc: andrzej.hajda, Jan Maslak
Jan Maslak (1):
lib/gpgpu_shader: set r1.4 to dim.x
lib/gpgpu_fill.c.gen.iga64_codes.c | 2 +-
lib/gpgpu_shader.c | 6 ++++--
lib/gpgpu_shader.c.gen.iga64_codes.c | 2 +-
lib/iga64_macros.h | 1 +
tests/intel/xe_eudebug_online.c.gen.iga64_codes.c | 2 +-
5 files changed, 8 insertions(+), 5 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/1] lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak @ 2026-02-10 10:24 ` Jan Maslak 2026-02-13 10:31 ` Hajda, Andrzej 2026-02-10 17:14 ` ✓ i915.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Jan Maslak @ 2026-02-10 10:24 UTC (permalink / raw) To: igt-dev; +Cc: andrzej.hajda, Jan Maslak Sets up the r1.4 to contain the value of dim.x, making it accessible from the shader. Signed-off-by: Jan Maslak <jan.maslak@intel.com> --- lib/gpgpu_fill.c.gen.iga64_codes.c | 2 +- lib/gpgpu_shader.c | 6 ++++-- lib/gpgpu_shader.c.gen.iga64_codes.c | 2 +- lib/iga64_macros.h | 1 + tests/intel/xe_eudebug_online.c.gen.iga64_codes.c | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/gpgpu_fill.c.gen.iga64_codes.c b/lib/gpgpu_fill.c.gen.iga64_codes.c index b223425d0..15ffb6f2d 100644 --- a/lib/gpgpu_fill.c.gen.iga64_codes.c +++ b/lib/gpgpu_fill.c.gen.iga64_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS 8304c8bb11385470bfd6ac32e1c36840 +#define MD5_SUM_IGA64_ASMS b785dce133b8fcf480cd65b219b3e008 struct iga64_template const iga64_code_gpgpu_fill[] = { { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c index 767bddb7b..abccb4808 100644 --- a/lib/gpgpu_shader.c +++ b/lib/gpgpu_shader.c @@ -151,13 +151,15 @@ __xelp_gpgpu_execfunc(struct intel_bb *ibb, } static void -fill_inline_data(uint32_t *inline_data, uint64_t target_offset, struct intel_buf *target) +fill_inline_data(uint32_t *inline_data, uint64_t target_offset, struct intel_buf *target, + uint32_t x_dim) { igt_assert(target->surface[0].stride == intel_buf_width(target) * target->bpp/8); *inline_data++ = lower_32_bits(target_offset); *inline_data++ = upper_32_bits(target_offset); *inline_data++ = target->surface[0].stride; *inline_data++ = intel_buf_height(target); + *inline_data++ = x_dim; } static void @@ -206,7 +208,7 @@ __xehp_gpgpu_execfunc(struct intel_bb *ibb, /* Inline data is at 31th/32th dword of COMPUTE_WALKER, BSpec: 67028 */ inline_data = intel_bb_ptr(ibb) + 4 * (shdr->gen_ver < 2000 ? 31 : 32); xehp_emit_compute_walk(ibb, 0, 0, x_dim * 16, y_dim, &idd, 0x0); - fill_inline_data(inline_data, CANONICAL(target->addr.offset), target); + fill_inline_data(inline_data, CANONICAL(target->addr.offset), target, x_dim); intel_bb_out(ibb, MI_BATCH_BUFFER_END); intel_bb_ptr_align(ibb, 32); diff --git a/lib/gpgpu_shader.c.gen.iga64_codes.c b/lib/gpgpu_shader.c.gen.iga64_codes.c index fffe242fe..ee45f8263 100644 --- a/lib/gpgpu_shader.c.gen.iga64_codes.c +++ b/lib/gpgpu_shader.c.gen.iga64_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS f5d2183439f5e7b18097c3c2c2957dbb +#define MD5_SUM_IGA64_ASMS b3ca58d01d637034cf62ec574656a2f0 struct iga64_template const iga64_code_read_a64_d32[] = { { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h index 8e452cf63..76a330ab5 100644 --- a/lib/iga64_macros.h +++ b/lib/iga64_macros.h @@ -27,6 +27,7 @@ #define R1_TGT_ADDRESS r1.0<0;1,0>:uq #define R1_TGT_WIDTH r1.2<0;1,0>:ud #define R1_TGT_HEIGHT r1.3<0;1,0>:ud +#define R1_DIM_X r1.4<0;1,0>:ud #define SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) \ (W) mov (8) dst.0<1>:ud 0x0:ud ;\ diff --git a/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c b/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c index 3bd5b0c5f..32009e40f 100644 --- a/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c +++ b/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c @@ -3,7 +3,7 @@ #include "gpgpu_shader.h" -#define MD5_SUM_IGA64_ASMS f0897ea23eff7ea77569eca6ddd16161 +#define MD5_SUM_IGA64_ASMS d8acd22fb8afb78633ac79a0ca42d8da struct iga64_template const iga64_code_store_sr0_0[] = { { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/1] lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 ` [PATCH 1/1] " Jan Maslak @ 2026-02-13 10:31 ` Hajda, Andrzej 0 siblings, 0 replies; 9+ messages in thread From: Hajda, Andrzej @ 2026-02-13 10:31 UTC (permalink / raw) To: Jan Maslak, igt-dev W dniu 10.02.2026 o 11:24, Jan Maslak pisze: > Sets up the r1.4 to contain the value of dim.x, making it accessible from > the shader. > > Signed-off-by: Jan Maslak <jan.maslak@intel.com> Looks OK. Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > --- > lib/gpgpu_fill.c.gen.iga64_codes.c | 2 +- > lib/gpgpu_shader.c | 6 ++++-- > lib/gpgpu_shader.c.gen.iga64_codes.c | 2 +- > lib/iga64_macros.h | 1 + > tests/intel/xe_eudebug_online.c.gen.iga64_codes.c | 2 +- > 5 files changed, 8 insertions(+), 5 deletions(-) > > diff --git a/lib/gpgpu_fill.c.gen.iga64_codes.c b/lib/gpgpu_fill.c.gen.iga64_codes.c > index b223425d0..15ffb6f2d 100644 > --- a/lib/gpgpu_fill.c.gen.iga64_codes.c > +++ b/lib/gpgpu_fill.c.gen.iga64_codes.c > @@ -3,7 +3,7 @@ > > #include "gpgpu_shader.h" > > -#define MD5_SUM_IGA64_ASMS 8304c8bb11385470bfd6ac32e1c36840 > +#define MD5_SUM_IGA64_ASMS b785dce133b8fcf480cd65b219b3e008 > > struct iga64_template const iga64_code_gpgpu_fill[] = { > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { > diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c > index 767bddb7b..abccb4808 100644 > --- a/lib/gpgpu_shader.c > +++ b/lib/gpgpu_shader.c > @@ -151,13 +151,15 @@ __xelp_gpgpu_execfunc(struct intel_bb *ibb, > } > > static void > -fill_inline_data(uint32_t *inline_data, uint64_t target_offset, struct intel_buf *target) > +fill_inline_data(uint32_t *inline_data, uint64_t target_offset, struct intel_buf *target, > + uint32_t x_dim) > { > igt_assert(target->surface[0].stride == intel_buf_width(target) * target->bpp/8); > *inline_data++ = lower_32_bits(target_offset); > *inline_data++ = upper_32_bits(target_offset); > *inline_data++ = target->surface[0].stride; > *inline_data++ = intel_buf_height(target); > + *inline_data++ = x_dim; > } > > static void > @@ -206,7 +208,7 @@ __xehp_gpgpu_execfunc(struct intel_bb *ibb, > /* Inline data is at 31th/32th dword of COMPUTE_WALKER, BSpec: 67028 */ > inline_data = intel_bb_ptr(ibb) + 4 * (shdr->gen_ver < 2000 ? 31 : 32); > xehp_emit_compute_walk(ibb, 0, 0, x_dim * 16, y_dim, &idd, 0x0); > - fill_inline_data(inline_data, CANONICAL(target->addr.offset), target); > + fill_inline_data(inline_data, CANONICAL(target->addr.offset), target, x_dim); > > intel_bb_out(ibb, MI_BATCH_BUFFER_END); > intel_bb_ptr_align(ibb, 32); > diff --git a/lib/gpgpu_shader.c.gen.iga64_codes.c b/lib/gpgpu_shader.c.gen.iga64_codes.c > index fffe242fe..ee45f8263 100644 > --- a/lib/gpgpu_shader.c.gen.iga64_codes.c > +++ b/lib/gpgpu_shader.c.gen.iga64_codes.c > @@ -3,7 +3,7 @@ > > #include "gpgpu_shader.h" > > -#define MD5_SUM_IGA64_ASMS f5d2183439f5e7b18097c3c2c2957dbb > +#define MD5_SUM_IGA64_ASMS b3ca58d01d637034cf62ec574656a2f0 > > struct iga64_template const iga64_code_read_a64_d32[] = { > { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { > diff --git a/lib/iga64_macros.h b/lib/iga64_macros.h > index 8e452cf63..76a330ab5 100644 > --- a/lib/iga64_macros.h > +++ b/lib/iga64_macros.h > @@ -27,6 +27,7 @@ > #define R1_TGT_ADDRESS r1.0<0;1,0>:uq > #define R1_TGT_WIDTH r1.2<0;1,0>:ud > #define R1_TGT_HEIGHT r1.3<0;1,0>:ud > +#define R1_DIM_X r1.4<0;1,0>:ud > > #define SET_SHARED_MEDIA_BLOCK_MSG_HDR(dst, y, width) \ > (W) mov (8) dst.0<1>:ud 0x0:ud ;\ > diff --git a/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c b/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c > index 3bd5b0c5f..32009e40f 100644 > --- a/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c > +++ b/tests/intel/xe_eudebug_online.c.gen.iga64_codes.c > @@ -3,7 +3,7 @@ > > #include "gpgpu_shader.h" > > -#define MD5_SUM_IGA64_ASMS f0897ea23eff7ea77569eca6ddd16161 > +#define MD5_SUM_IGA64_ASMS d8acd22fb8afb78633ac79a0ca42d8da > > struct iga64_template const iga64_code_store_sr0_0[] = { > { .gen_ver = 2000, .size = 40, .code = (const uint32_t []) { ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak 2026-02-10 10:24 ` [PATCH 1/1] " Jan Maslak @ 2026-02-10 17:14 ` Patchwork 2026-02-10 17:19 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-02-10 17:14 UTC (permalink / raw) To: Jan Maslak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5939 bytes --] == Series Details == Series: lib/gpgpu_shader: set r1.4 to dim.x URL : https://patchwork.freedesktop.org/series/161427/ State : success == Summary == CI Bug Log - changes from IGT_8746 -> IGTPW_14528 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-atsm-1 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14528 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#1849] / [i915#2582]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@fbdev@read.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4079]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic@basic: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#15657]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8746/bat-arlh-3/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-atsm-1: NOTRUN -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6077]) +37 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6078]) +22 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6093]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#1836]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#7357]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6094]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][17] +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/bat-atsm-1/igt@prime_vgem@basic-write.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8746 -> IGTPW_14528 * Linux: CI_DRM_17961 -> CI_DRM_17971 CI-20190529: 20190529 CI_DRM_17961: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17971: a314bb19a9342a38f1c657a8918f408d2ae10f12 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14528: d053026412113263eae6c75e16514e9ba719421e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8746: 8746 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/index.html [-- Attachment #2: Type: text/html, Size: 7086 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak 2026-02-10 10:24 ` [PATCH 1/1] " Jan Maslak 2026-02-10 17:14 ` ✓ i915.CI.BAT: success for " Patchwork @ 2026-02-10 17:19 ` Patchwork 2026-02-10 22:57 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-11 3:53 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-02-10 17:19 UTC (permalink / raw) To: Jan Maslak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1060 bytes --] == Series Details == Series: lib/gpgpu_shader: set r1.4 to dim.x URL : https://patchwork.freedesktop.org/series/161427/ State : success == Summary == CI Bug Log - changes from XEIGT_8746_BAT -> XEIGTPW_14528_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8746 -> IGTPW_14528 * Linux: xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2 -> xe-4539-a314bb19a9342a38f1c657a8918f408d2ae10f12 IGTPW_14528: d053026412113263eae6c75e16514e9ba719421e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8746: 8746 xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 xe-4539-a314bb19a9342a38f1c657a8918f408d2ae10f12: a314bb19a9342a38f1c657a8918f408d2ae10f12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/index.html [-- Attachment #2: Type: text/html, Size: 1619 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak ` (2 preceding siblings ...) 2026-02-10 17:19 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-02-10 22:57 ` Patchwork 2026-02-18 17:21 ` Jan Maslak 2026-02-11 3:53 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2026-02-10 22:57 UTC (permalink / raw) To: Jan Maslak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 50456 bytes --] == Series Details == Series: lib/gpgpu_shader: set r1.4 to dim.x URL : https://patchwork.freedesktop.org/series/161427/ State : failure == Summary == CI Bug Log - changes from XEIGT_8746_FULL -> XEIGTPW_14528_FULL ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_14528_FULL need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14528_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14528_FULL: ### IGT changes ### #### Warnings #### * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][1] ([Intel XE#4141]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html Known issues ------------ Here are the changes found in XEIGTPW_14528_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - shard-lnl: [PASS][3] -> [ABORT][4] ([Intel XE#7169]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-5/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-5/igt@core_hotunplug@unbind-rebind.html * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1125]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-1/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1: - shard-lnl: [PASS][6] -> [DMESG-FAIL][7] ([Intel XE#1727]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2370]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#367]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3432]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2724]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#4418]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2325]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2341]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2390] / [Intel XE#6974]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: NOTRUN -> [FAIL][29] ([Intel XE#3304]) +2 other tests fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@legacy@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-10/igt@kms_content_protection@legacy@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3278]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2320]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2291]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2291]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2244]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#701]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1138]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_feature_discovery@display-4x.html - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1138]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1421]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#301]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7179]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7178]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7178]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7061]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4141]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#651]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2312]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +21 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2313]) +13 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#3374] / [Intel XE#3544]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7130]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7130]) +17 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7131]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7111] / [Intel XE#7131]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2393]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2685] / [Intel XE#3307]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2392]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3309]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3309]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][73] ([Intel XE#2029]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2893]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2414]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1127]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2330]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1435]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2168]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_vrr@lobf.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#6390]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1499]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6599]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_eudebug_sriov@deny-sriov: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4518]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-1/igt@xe_eudebug_sriov@deny-sriov.html - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#5793]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#6321]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-small-external-multi-queue: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7140]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@xe_evict@evict-small-external-multi-queue.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#688]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1392]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2322]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#7136]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7136]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#6874]) +14 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#6874]) +12 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_system_allocator@many-64k-mmap-huge: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#5007]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-huge.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6196]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4943]) +11 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4943]) +9 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7138]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html * igt@xe_exec_threads@threads-multi-queue-fd-rebind: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#7138]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2833]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2833]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html * igt@xe_multigpu_svm@mgpu-latency-copy-prefetch: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#6964]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6964]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#2284]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#584]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-3/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#579]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-1/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4650]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4733]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#944]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#944]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-7/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#7174]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_sriov_admin@sched-priority-write-readback-vfs-disabled.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4273]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@equal-throughput: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4351]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][125] ([Intel XE#2291]) -> [PASS][126] +2 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][127] ([Intel XE#1340]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [SKIP][129] ([Intel XE#2316]) -> [PASS][130] +6 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][131] ([Intel XE#301]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [DMESG-WARN][133] ([Intel XE#5208]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: [DMESG-WARN][135] ([Intel XE#3428]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [SKIP][137] ([Intel XE#7197]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][139] ([Intel XE#2142]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html #### Warnings #### * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-bmg: [SKIP][141] ([Intel XE#7194]) -> [FAIL][142] ([Intel XE#3304]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-4/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][143] ([Intel XE#2341]) -> [FAIL][144] ([Intel XE#1178] / [Intel XE#3304]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_content_protection@legacy.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][145] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][146] ([Intel XE#2341]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-3/igt@kms_content_protection@lic-type-0.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [FAIL][147] ([Intel XE#3304]) -> [SKIP][148] ([Intel XE#7194]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-7/igt@kms_content_protection@lic-type-0-hdcp14.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][149] ([Intel XE#2311]) -> [SKIP][150] ([Intel XE#2312]) +17 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][151] ([Intel XE#4141]) -> [SKIP][152] ([Intel XE#2312]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][153] ([Intel XE#2312]) -> [SKIP][154] ([Intel XE#4141]) +12 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][155] ([Intel XE#2312]) -> [SKIP][156] ([Intel XE#2311]) +12 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][157] ([Intel XE#2313]) -> [SKIP][158] ([Intel XE#2312]) +14 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][159] ([Intel XE#2312]) -> [SKIP][160] ([Intel XE#2313]) +18 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][161] ([Intel XE#5021]) -> [SKIP][162] ([Intel XE#4596]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][163] ([Intel XE#2509]) -> [SKIP][164] ([Intel XE#2426]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free-huge: - shard-bmg: [SKIP][165] ([Intel XE#4943]) -> [ABORT][166] ([Intel XE#7169]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free-huge.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-3/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free-huge.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][167] ([Intel XE#5466]) -> [ABORT][168] ([Intel XE#5466] / [Intel XE#6652]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8746 -> IGTPW_14528 * Linux: xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2 -> xe-4539-a314bb19a9342a38f1c657a8918f408d2ae10f12 IGTPW_14528: d053026412113263eae6c75e16514e9ba719421e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8746: 8746 xe-4529-5e0595fbb024e9b7e243a7ca8a028f93a37883f2: 5e0595fbb024e9b7e243a7ca8a028f93a37883f2 xe-4539-a314bb19a9342a38f1c657a8918f408d2ae10f12: a314bb19a9342a38f1c657a8918f408d2ae10f12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/index.html [-- Attachment #2: Type: text/html, Size: 58409 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 22:57 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-18 17:21 ` Jan Maslak 0 siblings, 0 replies; 9+ messages in thread From: Jan Maslak @ 2026-02-18 17:21 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra On Tue, Feb 10, 2026 at 10:57:28PM +0000, Patchwork wrote: > == Series Details == > > Series: lib/gpgpu_shader: set r1.4 to dim.x > URL : https://patchwork.freedesktop.org/series/161427/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8746_FULL -> XEIGTPW_14528_FULL > ==================================================== > > Summary > ------- > > **WARNING** > > Minor unknown changes coming with XEIGTPW_14528_FULL need to be verified > manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_14528_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Participating hosts (2 -> 2) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_14528_FULL: > > ### IGT changes ### > > #### Warnings #### > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: > - shard-bmg: [SKIP][1] ([Intel XE#4141]) -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8746/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14528/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html My patch doesn’t affect upper test. The failure is not related to my patch. ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak ` (3 preceding siblings ...) 2026-02-10 22:57 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-11 3:53 ` Patchwork 2026-02-18 17:22 ` Jan Maslak 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2026-02-11 3:53 UTC (permalink / raw) To: Jan Maslak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 146167 bytes --] == Series Details == Series: lib/gpgpu_shader: set r1.4 to dim.x URL : https://patchwork.freedesktop.org/series/161427/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17971_full -> IGTPW_14528_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14528_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14528_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14528_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html New tests --------- New tests have been introduced between CI_DRM_17971_full and IGTPW_14528_full: ### New IGT tests (11) ### * igt@gem_ctx_isolation@preservation@vecs1: - Statuses : 1 pass(s) - Exec time: [0.43] s * igt@gem_ctx_shared@q-in-order@vecs1: - Statuses : 1 pass(s) - Exec time: [0.19] s * igt@gem_exec_schedule@lateslice@vecs1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@gem_exec_store@pages@vecs1: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@gem_spin_batch@engines@vecs1: - Statuses : 1 pass(s) - Exec time: [3.23] s * igt@gem_wait@write-wait@vecs1: - Statuses : 1 pass(s) - Exec time: [1.06] s * igt@kms_plane_cursor@primary@pipe-a-dp-3-size-128: - Statuses : 1 pass(s) - Exec time: [3.12] s * igt@kms_plane_cursor@primary@pipe-a-dp-3-size-256: - Statuses : 1 pass(s) - Exec time: [3.13] s * igt@kms_plane_cursor@primary@pipe-a-dp-3-size-64: - Statuses : 1 pass(s) - Exec time: [3.12] s * igt@perf_pmu@busy-start@vecs1: - Statuses : 1 pass(s) - Exec time: [2.55] s * igt@perf_pmu@busy@vecs1: - Statuses : 1 pass(s) - Exec time: [0.56] s Known issues ------------ Here are the changes found in IGTPW_14528_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#14544] / [i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#14544] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#13356]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: NOTRUN -> [INCOMPLETE][19] ([i915#13356]) +3 other tests incomplete [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#13356]) +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@idempotent: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-snb7/igt@gem_ctx_persistence@idempotent.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-5/igt@gem_exec_balancer@bonded-true-hang.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@gem_exec_balancer@noheartbeat.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][30] -> [ABORT][31] ([i915#11713]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-tglu-9/igt@gem_exec_big@single.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-2/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#6334]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#6334]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-cpu-active: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3281]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_madvise@dontneed-before-exec: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@gem_madvise@dontneed-before-exec.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-5/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +8 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@gem_mmap_wc@pf-nonblock.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_pread@exhaustion: - shard-glk10: NOTRUN -> [WARN][60] ([i915#2658]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@gem_pwrite@basic-random.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#13717]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#13398]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#13398]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#8411]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +12 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@gem_userptr_blits@access-control.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-5/igt@gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@gem_userptr_blits@access-control.html - shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#3282] / [i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][78] ([i915#13356] / [i915#14586]) +1 other test incomplete [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk9/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@bb-chained: - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#14073]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#14118]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@reload: - shard-dg2: [PASS][88] -> [DMESG-WARN][89] ([i915#14545]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-8/igt@i915_module_load@reload.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-5/igt@i915_module_load@reload.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8399]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#11681]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#11681]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#11681]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@i915_pm_rps@thresholds-park.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4077]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@i915_suspend@fence-restore-tiled2untiled.html - shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#4817]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][97] ([i915#14888]) +2 other tests fail [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3555]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#9531]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#9531]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#9531]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#9531]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [PASS][104] -> [FAIL][105] ([i915#5956]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#5286]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#5286]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#14544] / [i915#3828]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][111] +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: [PASS][114] -> [DMESG-WARN][115] ([i915#4423]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#14544]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-snb: NOTRUN -> [SKIP][118] +75 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-snb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][119] +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][120] +24 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#14544] / [i915#6095]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +185 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][127] +483 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +34 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#10434] / [i915#6095]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6095]) +69 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#15582]) +1 other test incomplete [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#6095]) +57 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +74 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +140 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#6095]) +51 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +19 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3742]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-2/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#13781]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +9 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#14544] / [i915#7828]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_content_protection@atomic.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#9424]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_content_protection@content-type-change.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#15330] / [i915#3116] / [i915#3299]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#15330] / [i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#15330] / [i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#15330]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6944]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7118]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8814]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][164] ([i915#13566]) +3 other tests fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [PASS][166] -> [FAIL][167] ([i915#13566]) +3 other tests fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][168] ([i915#13566]) +2 other tests fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8814]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][173] +20 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9809]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13046] / [i915#5354]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#9833]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9723]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#1769] / [i915#3555] / [i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3804]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1257]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13749]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#13749]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#13748]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#13748]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#13748]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13707] / [i915#14544]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#13707]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#13707]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3469]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3469]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#1839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#14544] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][203] -> [TIMEOUT][204] ([i915#14033]) +1 other test timeout [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3637] / [i915#9934]) +4 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#14544] / [i915#9934]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9934]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#15643]) +6 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810] / [i915#8813]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][213] ([i915#14544] / [i915#15643]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8810] / [i915#8813]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15643]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#15643]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#15643]) +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#15643]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][219] -> [FAIL][220] ([i915#15389] / [i915#6880]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +12 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544] / [i915#1825]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-tglu: [PASS][224] -> [INCOMPLETE][225] ([i915#10056]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#5439]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#15102]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#15104]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#15104]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][230] +253 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3023]) +21 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#15102] / [i915#3458]) +10 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][233] +26 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1825]) +35 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][235] +56 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#10055]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#10055]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15102]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#8708]) +11 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#15102]) +20 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#15102] / [i915#3023]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +10 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#5354]) +20 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15102]) +13 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-13/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#6403] / [i915#8826]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9457]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8826] / [i915#9457]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15458]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#13688]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#6301]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][256] -> [INCOMPLETE][257] ([i915#13476]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#14712]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#13705]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#15609] / [i915#8825]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15608] / [i915#8825]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#15608] / [i915#8825]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#15608]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-3: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#15608]) +21 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-3.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#15608]) +10 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15608]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#15608] / [i915#8825]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#15608] / [i915#8825]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#15609] / [i915#8825]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#15609]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#15608] / [i915#15609] / [i915#8825]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#15608]) +5 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15609] / [i915#8825]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15608]) +20 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15609]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#15609]) +6 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#15609]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#15608] / [i915#15609] / [i915#8825]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15609]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#15609] / [i915#8825]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][283] ([i915#13026]) +1 other test incomplete [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][284] ([i915#10647] / [i915#12169]) +1 other test fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][285] ([i915#10647] / [i915#12177]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][286] ([i915#10647]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][287] ([i915#10647]) +3 other tests fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#11614] / [i915#3582]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#13958]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#13958]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#14259]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#14259]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#14259]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#15329]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#15329]) +9 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15329] / [i915#3555] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/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-mtlp: NOTRUN -> [SKIP][298] ([i915#15329]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#14544] / [i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#9685]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#9685]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#9685]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#15073]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][304] ([i915#14544] / [i915#15073]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][305] -> [SKIP][306] ([i915#15073]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#15073]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][308] -> [SKIP][309] ([i915#15073]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15073]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][311] -> [SKIP][312] ([i915#15073]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][313] ([i915#15073]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][314] -> [INCOMPLETE][315] ([i915#14419]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#6524] / [i915#6805]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][317] ([i915#6524]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#6524]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][321] ([i915#11520]) +12 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#11520]) +10 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][324] ([i915#11520]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#9808]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#11520]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#11520]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][330] ([i915#11520]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9683]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#9683]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9732]) +7 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +13 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +17 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +9 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-13/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +10 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][340] ([i915#15492]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk9/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#12755]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#5190]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#5289]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#12755] / [i915#5190]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12755]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +4 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#3555]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [PASS][351] -> [FAIL][352] ([i915#15106]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#14544] / [i915#3555]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#9906]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#11920]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#9906]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][358] ([i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: [PASS][360] -> [FAIL][361] ([i915#10538]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#2436]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][363] ([i915#9100]) +1 other test fail [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2435]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][365] -> [FAIL][366] ([i915#15453]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][367] -> [FAIL][368] ([i915#4349]) +8 other tests fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@render-node-busy@vcs0: - shard-mtlp: [PASS][369] -> [FAIL][370] ([i915#4349]) +7 other tests fail [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-6/igt@perf_pmu@render-node-busy@vcs0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@perf_pmu@render-node-busy@vcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][371] -> [FAIL][372] ([i915#4349]) +2 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708] / [i915#4077]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#3708]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#9917]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][377] ([i915#9917]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#9917]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][379] ([i915#12910]) +9 other tests fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [FAIL][380] ([i915#12910]) +29 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][381] ([i915#12910]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#4818]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][383] ([i915#13356]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][385] ([i915#9561]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-4/igt@gem_ctx_freq@sysfs@gt0.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [ABORT][387] ([i915#15152]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-1/igt@gem_workarounds@suspend-resume.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@gem_workarounds@suspend-resume.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][389] ([i915#5138]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][391] ([i915#12655] / [i915#3555]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-8/igt@kms_color@deep-color.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1: - shard-tglu: [FAIL][393] ([i915#10826]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-tglu-8/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [FAIL][395] ([i915#15389] / [i915#6880]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg1: [DMESG-WARN][397] ([i915#4423]) -> [PASS][398] +2 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][399] ([i915#3555] / [i915#8228]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_hdr@bpc-switch.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][401] ([i915#15459]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][403] ([i915#15073]) -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [ABORT][405] ([i915#15132]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][407] ([i915#15106]) -> [PASS][408] +2 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-tglu-10/igt@kms_setmode@basic.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-tglu-9/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][409] ([i915#15106]) -> [PASS][410] +2 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [INCOMPLETE][411] ([i915#12276]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [FAIL][413] ([i915#4349]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][415] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][416] ([i915#3555] / [i915#9323]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][417] ([i915#14544] / [i915#7697]) -> [SKIP][418] ([i915#7697]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][419] ([i915#14544] / [i915#6335]) -> [SKIP][420] ([i915#6335]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#280]) -> [SKIP][422] ([i915#280]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_ctx_sseu@engines.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@gem_ctx_sseu@engines.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#3281]) -> [SKIP][424] ([i915#3281]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: [SKIP][425] ([i915#3281]) -> [SKIP][426] ([i915#14544] / [i915#3281]) +3 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: [SKIP][427] ([i915#4613]) -> [SKIP][428] ([i915#14544] / [i915#4613]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#4613]) -> [SKIP][430] ([i915#4613]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_lmem_swapping@random.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@gem_lmem_swapping@random.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][431] ([i915#14544] / [i915#3282]) -> [SKIP][432] ([i915#3282]) +2 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_readwrite@new-obj: - shard-rkl: [SKIP][433] ([i915#3282]) -> [SKIP][434] ([i915#14544] / [i915#3282]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-8/igt@gem_readwrite@new-obj.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_readwrite@new-obj.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][435] ([i915#3297]) -> [SKIP][436] ([i915#14544] / [i915#3297]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#3297]) -> [SKIP][438] ([i915#3297]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][439] ([i915#14544] / [i915#2527]) -> [SKIP][440] ([i915#2527]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: [SKIP][441] ([i915#2527]) -> [SKIP][442] ([i915#14544] / [i915#2527]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][443] ([i915#14544] / [i915#15479]) -> [SKIP][444] ([i915#15479]) +4 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][445] ([i915#14544] / [i915#6245]) -> [SKIP][446] ([i915#6245]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@i915_query@hwconfig_table.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@i915_query@hwconfig_table.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][447] ([i915#5286]) -> [SKIP][448] ([i915#14544] / [i915#5286]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#5286]) -> [SKIP][450] ([i915#5286]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: [SKIP][451] ([i915#3638]) -> [SKIP][452] ([i915#14544] / [i915#3638]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#3638]) -> [SKIP][454] ([i915#3638]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: [SKIP][455] ([i915#4423] / [i915#4538]) -> [SKIP][456] ([i915#4538]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][457] -> [SKIP][458] ([i915#14544]) +6 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs: - shard-dg1: [SKIP][459] ([i915#4423] / [i915#6095]) -> [SKIP][460] ([i915#6095]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][461] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][462] ([i915#14098] / [i915#6095]) +5 other tests skip [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#6095]) -> [SKIP][464] ([i915#6095]) +3 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][465] ([i915#12805] / [i915#14544]) -> [SKIP][466] ([i915#12805]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][467] ([i915#14098] / [i915#6095]) -> [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][469] ([i915#12313]) -> [SKIP][470] ([i915#12313] / [i915#14544]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][471] ([i915#3742]) -> [SKIP][472] ([i915#14544] / [i915#3742]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@kms_cdclk@mode-transition.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][473] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][474] ([i915#11151] / [i915#7828]) +4 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: [SKIP][475] ([i915#11151] / [i915#7828]) -> [SKIP][476] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-4/igt@kms_chamelium_edid@vga-edid-read.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#6944]) -> [SKIP][478] ([i915#6944]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][479] ([i915#15330] / [i915#3116]) -> [SKIP][480] ([i915#14544] / [i915#15330] / [i915#3116]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][481] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][482] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-7/igt@kms_content_protection@type1.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: [FAIL][483] ([i915#7173]) -> [SKIP][484] ([i915#6944]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#3555]) -> [SKIP][486] ([i915#3555]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: [SKIP][487] ([i915#13049] / [i915#14544]) -> [SKIP][488] ([i915#13049]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-rkl: [SKIP][489] ([i915#14544]) -> [SKIP][490] +5 other tests skip [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#9067]) -> [SKIP][492] ([i915#9067]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][493] ([i915#3555] / [i915#3840]) -> [SKIP][494] ([i915#14544] / [i915#3555] / [i915#3840]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][495] ([i915#3955]) -> [SKIP][496] ([i915#14544] / [i915#3955]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-8/igt@kms_fbcon_fbt@psr.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][497] ([i915#9934]) -> [SKIP][498] ([i915#14544] / [i915#9934]) +2 other tests skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#9934]) -> [SKIP][500] ([i915#9934]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_flip@2x-plain-flip.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][501] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][502] ([i915#12745] / [i915#4839] / [i915#6113]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-glk6/igt@kms_flip@flip-vs-suspend.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][503] ([i915#12745]) -> [INCOMPLETE][504] ([i915#12745] / [i915#6113]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-rkl: [SKIP][505] ([i915#15643]) -> [SKIP][506] ([i915#14544] / [i915#15643]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][507] ([i915#1825]) -> [SKIP][508] ([i915#14544] / [i915#1825]) +11 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#1825]) -> [SKIP][510] ([i915#1825]) +11 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][511] ([i915#15102] / [i915#3458]) -> [SKIP][512] ([i915#10433] / [i915#15102] / [i915#3458]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-rkl: [SKIP][513] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][514] ([i915#15102] / [i915#3023]) +4 other tests skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][515] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][516] ([i915#15102] / [i915#3458]) +1 other test skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#15102]) -> [SKIP][518] ([i915#15102]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][519] ([i915#15102]) -> [SKIP][520] ([i915#14544] / [i915#15102]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: [SKIP][521] -> [SKIP][522] ([i915#4423]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: [SKIP][523] ([i915#15102] / [i915#3023]) -> [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][525] ([i915#12713]) -> [SKIP][526] ([i915#13331]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-dg1: [SKIP][527] ([i915#3555] / [i915#4423] / [i915#8228]) -> [SKIP][528] ([i915#3555] / [i915#8228]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-16/igt@kms_hdr@static-toggle.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-18/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][529] ([i915#15458]) -> [SKIP][530] ([i915#14544] / [i915#15458]) [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][531] ([i915#14544] / [i915#1839] / [i915#4816]) -> [SKIP][532] ([i915#1839] / [i915#4816]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][533] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][534] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-rkl: [SKIP][535] ([i915#15608]) -> [SKIP][536] ([i915#14544] / [i915#15608]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: [SKIP][537] ([i915#15609] / [i915#8825]) -> [SKIP][538] ([i915#14544] / [i915#15609] / [i915#8825]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#15608]) -> [SKIP][540] ([i915#15608]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: [SKIP][541] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][542] ([i915#15608] / [i915#8825]) +1 other test skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][543] ([i915#13958]) -> [SKIP][544] ([i915#13958] / [i915#14544]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][545] ([i915#3828]) -> [SKIP][546] ([i915#9340]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][547] ([i915#15403]) -> [SKIP][548] ([i915#14544] / [i915#15403]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-7/igt@kms_pm_rpm@package-g7.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][549] ([i915#11520]) -> [SKIP][550] ([i915#11520] / [i915#14544]) +3 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][551] ([i915#11520] / [i915#14544]) -> [SKIP][552] ([i915#11520]) +2 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][554] ([i915#1072] / [i915#9732]) +6 other tests skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-2/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][555] ([i915#1072] / [i915#9732]) -> [SKIP][556] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-7/igt@kms_psr@psr2-sprite-mmap-cpu.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_scaling_modes@scaling-mode-center: - shard-rkl: [SKIP][557] ([i915#3555]) -> [SKIP][558] ([i915#14544] / [i915#3555]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_scaling_modes@scaling-mode-center.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][559] ([i915#9906]) -> [SKIP][560] ([i915#14544] / [i915#9906]) [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][561] ([i915#15243] / [i915#3555]) -> [SKIP][562] ([i915#14544] / [i915#15243] / [i915#3555]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-3/igt@kms_vrr@flip-dpms.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][563] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][564] ([i915#15243] / [i915#3555]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_vrr@flip-suspend.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][565] ([i915#14544] / [i915#9906]) -> [SKIP][566] ([i915#9906]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-rkl-6/igt@kms_vrr@max-min.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-rkl-4/igt@kms_vrr@max-min.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#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#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8746 -> IGTPW_14528 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_17971: a314bb19a9342a38f1c657a8918f408d2ae10f12 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14528: d053026412113263eae6c75e16514e9ba719421e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8746: 8746 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/index.html [-- Attachment #2: Type: text/html, Size: 198397 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for lib/gpgpu_shader: set r1.4 to dim.x 2026-02-11 3:53 ` ✗ i915.CI.Full: " Patchwork @ 2026-02-18 17:22 ` Jan Maslak 0 siblings, 0 replies; 9+ messages in thread From: Jan Maslak @ 2026-02-18 17:22 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra On Wed, Feb 11, 2026 at 03:53:21AM +0000, Patchwork wrote: > == Series Details == > > Series: lib/gpgpu_shader: set r1.4 to dim.x > URL : https://patchwork.freedesktop.org/series/161427/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_17971_full -> IGTPW_14528_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_14528_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_14528_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/index.html > > Participating hosts (11 -> 10) > ------------------------------ > > Missing (1): shard-dg2-set2 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_14528_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_hdmi_inject@inject-audio: > - shard-mtlp: [PASS][1] -> [SKIP][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html > > * igt@perf_pmu@all-busy-idle-check-all: > - shard-dg1: [PASS][3] -> [FAIL][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17971/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14528/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html My patch doesn’t affect upper tests. The failure is not related to my patch. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-02-18 17:22 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-10 10:24 [PATCH 0/1] lib/gpgpu_shader: set r1.4 to dim.x Jan Maslak 2026-02-10 10:24 ` [PATCH 1/1] " Jan Maslak 2026-02-13 10:31 ` Hajda, Andrzej 2026-02-10 17:14 ` ✓ i915.CI.BAT: success for " Patchwork 2026-02-10 17:19 ` ✓ Xe.CI.BAT: " Patchwork 2026-02-10 22:57 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-18 17:21 ` Jan Maslak 2026-02-11 3:53 ` ✗ i915.CI.Full: " Patchwork 2026-02-18 17:22 ` Jan Maslak
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox