* [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure
@ 2026-03-15 0:38 Michał Grzelak
2026-03-15 0:38 ` [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well Michał Grzelak
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Michał Grzelak @ 2026-03-15 0:38 UTC (permalink / raw)
To: igt-dev; +Cc: Michał Grzelak
Currently check for audio unloading is done after driver's file
descriptor has been closed. This renders is_i915_device() useless since
check bases on the descriptor passed. Move the check before closing the
descriptor.
Signed-off-by: Michał Grzelak <michal.grzelak@intel.com>
---
tests/device_reset.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tests/device_reset.c b/tests/device_reset.c
index 62b295a06e..b931dff7a0 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -345,9 +345,6 @@ static bool has_cold_reset(int slot_dir, const char **reason)
/* Unbind the driver from the device */
static void driver_unbind(struct device_fds *dev)
{
- if (is_i915_device(dev->fds.dev))
- igt_audio_driver_unload(&dev->snd_driver);
-
igt_debug("unbind the driver from the device\n");
igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind",
dev->dev_bus_addr));
@@ -429,6 +426,10 @@ static void set_device_filter(const char* dev_path)
static void unbind_reset_rebind(struct device_fds *dev, enum reset type)
{
+ if (is_i915_device(dev->fds.dev)) {
+ igt_audio_driver_unload(&dev->snd_driver);
+ }
+
igt_debug("close the device\n");
close_if_opened(&dev->fds.dev);
--
2.45.2
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak @ 2026-03-15 0:38 ` Michał Grzelak 2026-03-23 14:02 ` Saarinen, Jani 2026-03-15 1:32 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure Patchwork ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Michał Grzelak @ 2026-03-15 0:38 UTC (permalink / raw) To: igt-dev; +Cc: Michał Grzelak There has been observed errors caused by audio not being unloaded before xe is unbound: <3> [339.178598] xe 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after unbind This is due audio is being unloaded only when i915 has been loaded. Change this behavior to unload audio with any Intel driver. Signed-off-by: Michał Grzelak <michal.grzelak@intel.com> --- tests/device_reset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/device_reset.c b/tests/device_reset.c index b931dff7a0..b281f4eceb 100644 --- a/tests/device_reset.c +++ b/tests/device_reset.c @@ -426,7 +426,7 @@ static void set_device_filter(const char* dev_path) static void unbind_reset_rebind(struct device_fds *dev, enum reset type) { - if (is_i915_device(dev->fds.dev)) { + if (is_intel_device(dev->fds.dev)) { igt_audio_driver_unload(&dev->snd_driver); } -- 2.45.2 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well 2026-03-15 0:38 ` [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well Michał Grzelak @ 2026-03-23 14:02 ` Saarinen, Jani 2026-03-23 14:06 ` Vehmanen, Kai 0 siblings, 1 reply; 10+ messages in thread From: Saarinen, Jani @ 2026-03-23 14:02 UTC (permalink / raw) To: Grzelak, Michal, igt-dev@lists.freedesktop.org, Vehmanen, Kai Cc: Grzelak, Michal Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Michał > Grzelak > Sent: Sunday, 15 March 2026 2.38 > To: igt-dev@lists.freedesktop.org > Cc: Grzelak, Michal <michal.grzelak@intel.com> > Subject: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well > > There has been observed errors caused by audio not being unloaded before xe is > unbound: > > <3> [339.178598] xe 0000:00:02.0: [drm] *ERROR* audio power refcount 1 after > unbind > > This is due audio is being unloaded only when i915 has been loaded. > Change this behavior to unload audio with any Intel driver. > > Signed-off-by: Michał Grzelak <michal.grzelak@intel.com> + Kai > --- > tests/device_reset.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/device_reset.c b/tests/device_reset.c index > b931dff7a0..b281f4eceb 100644 > --- a/tests/device_reset.c > +++ b/tests/device_reset.c > @@ -426,7 +426,7 @@ static void set_device_filter(const char* dev_path) > > static void unbind_reset_rebind(struct device_fds *dev, enum reset type) { > - if (is_i915_device(dev->fds.dev)) { > + if (is_intel_device(dev->fds.dev)) { > igt_audio_driver_unload(&dev->snd_driver); > } > > -- > 2.45.2 ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well 2026-03-23 14:02 ` Saarinen, Jani @ 2026-03-23 14:06 ` Vehmanen, Kai 2026-03-24 15:10 ` Michał Grzelak 0 siblings, 1 reply; 10+ messages in thread From: Vehmanen, Kai @ 2026-03-23 14:06 UTC (permalink / raw) To: Saarinen, Jani, Grzelak, Michal, igt-dev@lists.freedesktop.org Cc: Grzelak, Michal, kai.vehmanen@linux.intel.com Hey, On 23 March 2026, Jani Saarinen wrote: > On 15 March 2026, Michał Grzelak wrote: >> Subject: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well for the series: Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> The same restriction applies to xe driver as well, so this is needed. Br, Kai --------------------------------------------------------------------- Intel Finland Oy Registered Address: PL 281, 00181 Helsinki Business Identity Code: 0357606 - 4 Domiciled in Helsinki This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well 2026-03-23 14:06 ` Vehmanen, Kai @ 2026-03-24 15:10 ` Michał Grzelak 0 siblings, 0 replies; 10+ messages in thread From: Michał Grzelak @ 2026-03-24 15:10 UTC (permalink / raw) To: Vehmanen, Kai Cc: Saarinen, Jani, Grzelak, Michal, igt-dev@lists.freedesktop.org, kai.vehmanen@linux.intel.com [-- Attachment #1: Type: text/plain, Size: 456 bytes --] On Mon, 23 Mar 2026, Vehmanen, Kai wrote: > Hey, > > On 23 March 2026, Jani Saarinen wrote: >> On 15 March 2026, Michał Grzelak wrote: >>> Subject: [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well > > for the series: > Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> > > The same restriction applies to xe driver as well, so this is needed. > Thank you Kai for the review. J-P has pushed the change. BR, Michał > Br, Kai > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak 2026-03-15 0:38 ` [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well Michał Grzelak @ 2026-03-15 1:32 ` Patchwork 2026-03-15 1:35 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-15 1:32 UTC (permalink / raw) To: Michał Grzelak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2065 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure URL : https://patchwork.freedesktop.org/series/163227/ State : success == Summary == CI Bug Log - changes from XEIGT_8805_BAT -> XEIGTPW_14762_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14762_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 Build changes ------------- * IGT: IGT_8805 -> IGTPW_14762 * Linux: xe-4718-b5b4e8494ce1f4149f85a3f43ed6de0956683323 -> xe-4719-bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 IGTPW_14762: ae252e7f932c18b716af42a489bc7ea8a26d8d2a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8805: 8805 xe-4718-b5b4e8494ce1f4149f85a3f43ed6de0956683323: b5b4e8494ce1f4149f85a3f43ed6de0956683323 xe-4719-bbe6ae2e40f59b05f04a75989b3b3bbb005342a2: bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/index.html [-- Attachment #2: Type: text/html, Size: 2739 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak 2026-03-15 0:38 ` [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well Michał Grzelak 2026-03-15 1:32 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure Patchwork @ 2026-03-15 1:35 ` Patchwork 2026-03-15 6:10 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-15 1:35 UTC (permalink / raw) To: Michał Grzelak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4698 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure URL : https://patchwork.freedesktop.org/series/163227/ State : success == Summary == CI Bug Log - changes from IGT_8805 -> IGTPW_14762 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): fi-glk-j4005 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14762 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#15673]) +78 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-dg2-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][9] +12 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html #### Possible fixes #### * igt@i915_selftest@live: - bat-dg2-8: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-dg2-8/igt@i915_selftest@live.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-dg2-8/igt@i915_selftest@live.html - bat-arlh-3: [INCOMPLETE][12] ([i915#15622]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-arlh-3/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_heartbeat: - bat-arlh-3: [INCOMPLETE][14] -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-arlh-3/igt@i915_selftest@live@gt_heartbeat.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-arlh-3/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [DMESG-FAIL][16] ([i915#12061]) -> [PASS][17] +1 other test pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8805/bat-dg2-14/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/bat-dg2-14/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15622]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15622 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8805 -> IGTPW_14762 * Linux: CI_DRM_18148 -> CI_DRM_18149 CI-20190529: 20190529 CI_DRM_18148: b5b4e8494ce1f4149f85a3f43ed6de0956683323 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18149: bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14762: ae252e7f932c18b716af42a489bc7ea8a26d8d2a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8805: 8805 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/index.html [-- Attachment #2: Type: text/html, Size: 5748 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak ` (2 preceding siblings ...) 2026-03-15 1:35 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-15 6:10 ` Patchwork 2026-03-15 10:27 ` ✗ i915.CI.Full: " Patchwork 2026-03-23 14:02 ` [PATCH i-g-t 1/2] " Saarinen, Jani 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-15 6:10 UTC (permalink / raw) To: Michał Grzelak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 52914 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure URL : https://patchwork.freedesktop.org/series/163227/ State : failure == Summary == CI Bug Log - changes from XEIGT_8805_FULL -> XEIGTPW_14762_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14762_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14762_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_14762_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2.html * igt@xe_exec_system_allocator@processes-evict-malloc: - shard-bmg: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-6/igt@xe_exec_system_allocator@processes-evict-malloc.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@xe_exec_system_allocator@processes-evict-malloc.html Known issues ------------ Here are the changes found in XEIGTPW_14762_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +7 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6969]) +10 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6969] / [Intel XE#7006]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6974]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#6707] / [Intel XE#7439]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2291]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2291]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2291] / [Intel XE#7343]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [PASS][28] -> [FAIL][29] ([Intel XE#7571]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4210] / [Intel XE#7467]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#1340]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2244]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4156] / [Intel XE#7425]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2372] / [Intel XE#7359]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2316]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][38] -> [FAIL][39] ([Intel XE#3149] / [Intel XE#3321]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#3149]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7178] / [Intel XE#7349]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7179]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2311]) +18 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4141]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2313]) +22 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2312]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1503]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6901]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#7086]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7283]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2938] / [Intel XE#7376]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2392] / [Intel XE#6927]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2387] / [Intel XE#7429]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2330] / [Intel XE#5813]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2413]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#6361]) +2 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1435]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6503]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2168] / [Intel XE#7444]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_vrr@cmrr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#4459]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-lnl-1/igt@kms_vrr@flip-basic.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-lnl-8/igt@kms_vrr@flip-basic.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6599]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4837]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6665] / [Intel XE#6681]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_eudebug_online@set-breakpoint-faultable: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7136]) +8 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#6874]) +27 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][80] ([Intel XE#7098]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-race-nomemset: - shard-bmg: [PASS][81] -> [DMESG-FAIL][82] ([Intel XE#6652]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-race-nomemset.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-race-nomemset.html * igt@xe_exec_threads@threads-multi-queue-rebind: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7138]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-rebind.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6964]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#944]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#5937] / [Intel XE#7507]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_vm@bind-one-bo-many-times: - shard-bmg: [PASS][90] -> [ABORT][91] ([Intel XE#6652]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-9/igt@xe_vm@bind-one-bo-many-times.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-2/igt@xe_vm@bind-one-bo-many-times.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [PASS][92] -> [ABORT][93] ([Intel XE#7578]) +1 other test abort [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@intel_hwmon@hwmon-read: - shard-bmg: [SKIP][94] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@intel_hwmon@hwmon-read.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@intel_hwmon@hwmon-read.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-bmg: [ABORT][96] ([Intel XE#5545]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][98] ([Intel XE#2291]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][100] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][102] ([Intel XE#3009]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_dp_aux_dev.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_dp_aux_dev.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][104] ([Intel XE#2373] / [Intel XE#7344]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_feature_discovery@display-2x.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][106] ([Intel XE#2316]) -> [PASS][107] +6 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3: - shard-bmg: [FAIL][108] ([Intel XE#3098]) -> [PASS][109] +1 other test pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][110] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][111] +1 other test pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_hdr@static-toggle: - shard-bmg: [SKIP][112] ([Intel XE#1503]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_hdr@static-toggle.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][114] ([Intel XE#7086]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][116] ([Intel XE#4596]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][118] ([Intel XE#7340]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][120] ([Intel XE#6321]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_system_allocator@many-64k-mmap-remap-dontunmap: - shard-bmg: [DMESG-FAIL][122] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-remap-dontunmap.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-remap-dontunmap.html * igt@xe_exec_system_allocator@threads-many-execqueues-malloc-race-nomemset: - shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [PASS][125] +69 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-malloc-race-nomemset.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-execqueues-malloc-race-nomemset.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [FAIL][126] ([Intel XE#6569]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html #### Warnings #### * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#2327]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#1124]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#2887]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#2724] / [Intel XE#7449]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_cdclk@plane-scaling.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-10/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2252]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_color_pipeline@plane-lut3d-green-only: - shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#6969] / [Intel XE#7006]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_color_pipeline@plane-lut3d-green-only.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [SKIP][142] ([Intel XE#2341]) -> [FAIL][143] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#6974]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [FAIL][146] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][147] ([Intel XE#7194]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@suspend-resume: - shard-bmg: [FAIL][148] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][149] ([Intel XE#6705]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-6/igt@kms_content_protection@suspend-resume.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [SKIP][150] ([Intel XE#7194]) -> [FAIL][151] ([Intel XE#6707] / [Intel XE#7439]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#1508]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#2375]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#7178] / [Intel XE#7351]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][158] ([Intel XE#2311]) -> [SKIP][159] ([Intel XE#2312]) +9 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][160] ([Intel XE#4141]) -> [SKIP][161] ([Intel XE#2312]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][162] ([Intel XE#2312]) -> [SKIP][163] ([Intel XE#4141]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-bmg: [SKIP][164] ([Intel XE#6703]) -> [SKIP][165] ([Intel XE#4141]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][166] ([Intel XE#2312]) -> [SKIP][167] ([Intel XE#2311]) +10 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][168] ([Intel XE#6703]) -> [SKIP][169] ([Intel XE#2311]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2313]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc: - shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#7061] / [Intel XE#7356]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][174] ([Intel XE#2312]) -> [SKIP][175] ([Intel XE#2313]) +11 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][176] ([Intel XE#2313]) -> [SKIP][177] ([Intel XE#2312]) +9 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][178] ([Intel XE#3544]) -> [SKIP][179] ([Intel XE#3374] / [Intel XE#3544]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][180] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][181] ([Intel XE#4596]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#1489]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-primary-blt: - shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_psr@fbc-pr-primary-blt.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-4/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#2330] / [Intel XE#5813]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@xe_exec_fault_mode@twice-multi-queue-imm: - shard-bmg: [SKIP][188] ([Intel XE#6703]) -> [SKIP][189] ([Intel XE#7136]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-imm.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-imm.html * igt@xe_exec_multi_queue@many-execs-basic-smem: - shard-bmg: [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#6874]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8805/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-basic-smem.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-basic-smem.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [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#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467 [Intel XE#7507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7507 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8805 -> IGTPW_14762 * Linux: xe-4718-b5b4e8494ce1f4149f85a3f43ed6de0956683323 -> xe-4719-bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 IGTPW_14762: ae252e7f932c18b716af42a489bc7ea8a26d8d2a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8805: 8805 xe-4718-b5b4e8494ce1f4149f85a3f43ed6de0956683323: b5b4e8494ce1f4149f85a3f43ed6de0956683323 xe-4719-bbe6ae2e40f59b05f04a75989b3b3bbb005342a2: bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14762/index.html [-- Attachment #2: Type: text/html, Size: 62102 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak ` (3 preceding siblings ...) 2026-03-15 6:10 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-03-15 10:27 ` Patchwork 2026-03-23 14:02 ` [PATCH i-g-t 1/2] " Saarinen, Jani 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-15 10:27 UTC (permalink / raw) To: Michał Grzelak; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 128797 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure URL : https://patchwork.freedesktop.org/series/163227/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18149_full -> IGTPW_14762_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14762_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14762_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_14762/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14762_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_offset@clear-via-pagefault@lmem0: - shard-dg2: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-5/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-3/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html Known issues ------------ Here are the changes found in IGTPW_14762_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@suspend: - shard-mtlp: [PASS][15] -> [ABORT][16] ([i915#15511]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-7/igt@gem_eio@suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4771]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#4771]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#14544] / [i915#4525]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#15816]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-tglu-9/igt@gem_exec_big@single.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-glk11: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3711]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][29] +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +9 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#3281]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-19/igt@gem_exec_reloc@basic-write-wc-active.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][35] -> [INCOMPLETE][36] ([i915#13356]) +1 other test incomplete [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html - shard-rkl: NOTRUN -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-dg1: [PASS][44] -> [FAIL][45] ([i915#15734]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-13/igt@gem_lmem_swapping@smem-oom.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][46] -> [CRASH][47] ([i915#5493]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@gem_media_vme.html * igt@gem_mmap_gtt@coherency: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][54] -> [DMESG-WARN][55] ([i915#15478]) +1 other test dmesg-warn [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@invalid-flags: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-3/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@gem_mmap_wc@read-write-distinct.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#14544] / [i915#3282]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#13398]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-linear.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@gem_render_tiled_blits@basic.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-7/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#14118]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#14118]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#6245]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live: - shard-mtlp: [PASS][86] -> [DMESG-FAIL][87] ([i915#12061] / [i915#15560]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-7/igt@i915_selftest@live.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][88] -> [DMESG-FAIL][89] ([i915#12061]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@debugfs-reader: - shard-glk: [PASS][90] -> [INCOMPLETE][91] ([i915#4817]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk9/igt@i915_suspend@debugfs-reader.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@i915_suspend@debugfs-reader.html - shard-rkl: [PASS][92] -> [INCOMPLETE][93] ([i915#4817]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-4/igt@i915_suspend@debugfs-reader.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#12454] / [i915#12712]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][95] ([i915#14888]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][96] -> [INCOMPLETE][97] ([i915#12761]) +1 other test incomplete [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-7/igt@kms_async_flips@async-flip-suspend-resume.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#12761]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#12761] / [i915#14995]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#9531]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][101] ([i915#1769]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-snb: NOTRUN -> [SKIP][104] ([i915#1769]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/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][106] -> [FAIL][107] ([i915#5956]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/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-180: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#5286]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) +8 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#5286]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3828]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#10434] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#6095]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14098] / [i915#6095]) +51 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +24 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +52 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#6095]) +34 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +71 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][130] +457 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#12805]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][133] ([i915#12805]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#6095]) +173 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][137] ([i915#15582]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][138] -> [INCOMPLETE][139] ([i915#15582]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-1/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-b-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][143] +96 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +29 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][145] +35 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_cdclk@mode-transition.html - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3742]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3742]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +10 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12655] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_color@deep-color.html - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#9979]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#6944]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3116]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#15330] / [i915#3116]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#13049]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#13049] / [i915#14544]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#3555]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][169] ([i915#13028]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#13046] / [i915#5354]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#14544]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][172] -> [FAIL][173] ([i915#15804]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#9833]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9723]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#9723]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#13691]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13748]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13748]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9053]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3840] / [i915#9053]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9053]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840] / [i915#9053]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#4854]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#658]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-8/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#658]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544] / [i915#9934]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +8 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#9934]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9934]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9934]) +8 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9934]) +5 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-glk11: NOTRUN -> [INCOMPLETE][199] ([i915#12745] / [i915#4839]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk11: NOTRUN -> [INCOMPLETE][200] ([i915#4839]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][201] -> [TIMEOUT][202] ([i915#14033]) +1 other test timeout [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][204] ([i915#12745] / [i915#4839] / [i915#6113]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#12745] / [i915#4839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-rkl: [PASS][206] -> [INCOMPLETE][207] ([i915#6113]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12745]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][209] ([i915#6113]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][210] ([i915#12745] / [i915#6113]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#15643]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#15643]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#15643]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15643]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][216] +19 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][217] ([i915#10056]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#5439]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#8708]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8708]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +6 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#15102] / [i915#3458] / [i915#4423]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#15102] / [i915#3023]) +17 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#15102]) +10 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#15102]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#15102]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#15104]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#15104]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#15102]) +11 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#15102]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3458]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#15102] / [i915#3458]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#1825]) +42 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html - shard-dg1: NOTRUN -> [SKIP][236] +12 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +10 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][238] +36 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#1825]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#15458]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#15458]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-3/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#15459]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15459]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#15459]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#15459]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15459]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#15458]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15638] / [i915#15722]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15815]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#6301]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][255] +24 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#15709]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15709]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#15709]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#15709]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15709]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][261] ([i915#13026]) +1 other test incomplete [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][262] ([i915#10647] / [i915#12169]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][263] ([i915#10647]) +1 other test fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#13958]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#13958]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#14259]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@kms_plane_multiple@tiling-4.html - shard-tglu: NOTRUN -> [SKIP][267] ([i915#14259]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-glk: [PASS][268] -> [SKIP][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk6/igt@kms_plane_scaling@intel-max-src-size.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: [PASS][270] -> [SKIP][271] ([i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-tglu: [PASS][272] -> [SKIP][273] ([i915#6953]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15329]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b: - shard-snb: NOTRUN -> [SKIP][275] +77 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-snb4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15329]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#5354]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#5354]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9812]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#13441]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#9685]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#15073]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#15073]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#15073]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][285] -> [DMESG-WARN][286] ([i915#4423]) +3 other tests dmesg-warn [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-13/igt@kms_pm_rpm@i2c.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#14544] / [i915#15073]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][289] -> [SKIP][290] ([i915#15073]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@package-g7: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#15403]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-4/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#6524]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#6524]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#11520]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][295] ([i915#11520]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-snb5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#11520]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][297] ([i915#11520]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#11520]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#9808]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +14 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12316]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][302] ([i915#11520]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#11520]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][304] ([i915#11520] / [i915#14544]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9683]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-basic: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@kms_psr@fbc-psr-basic.html - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#9688]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-3/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-dpms: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +7 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +20 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9732]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9732]) +16 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-10/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][313] ([i915#15500]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#12755]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#12755]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#12755] / [i915#5190]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#3555]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#3555]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_setmode@basic-clone-single-crtc.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#3555]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-10/igt@kms_setmode@basic-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8809]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#8623]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][322] ([i915#12276]) +1 other test incomplete [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][323] ([i915#12276]) +1 other test incomplete [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#11920]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#9906]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#9906]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@enable-race: - shard-glk: [PASS][327] -> [DMESG-WARN][328] ([i915#118]) +1 other test dmesg-warn [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk9/igt@perf_pmu@enable-race.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk6/igt@perf_pmu@enable-race.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][329] ([i915#15778]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk1/igt@perf_pmu@module-unload.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][330] -> [FAIL][331] ([i915#4349]) +3 other tests fail [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][332] -> [FAIL][333] ([i915#4349]) +4 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][334] -> [FAIL][335] ([i915#4349]) +5 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][336] ([i915#12910]) +8 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_eio@kms: - shard-rkl: [DMESG-WARN][337] ([i915#13363]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@gem_eio@kms.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-mtlp: [DMESG-FAIL][339] ([i915#15478]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-7/igt@gem_exec_big@single.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-2/igt@gem_exec_big@single.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: [SKIP][341] ([i915#4270]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][343] ([i915#4817]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][345] ([i915#15733] / [i915#5138]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-dg1: [DMESG-WARN][347] ([i915#4423]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-16/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-16/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][349] ([i915#13566]) -> [PASS][350] +7 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][351] ([i915#13566]) -> [PASS][352] +2 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [INCOMPLETE][353] ([i915#12358] / [i915#14152]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][355] ([i915#15073]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][357] ([i915#15073]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-rkl: [SKIP][359] ([i915#15073]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][361] ([i915#15106]) -> [PASS][362] +2 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html #### Warnings #### * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][363] ([i915#14544] / [i915#7697]) -> [SKIP][364] ([i915#7697]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][365] ([i915#280]) -> [SKIP][366] ([i915#14544] / [i915#280]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@gem_ctx_sseu@engines.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][367] ([i915#14544] / [i915#6344]) -> [SKIP][368] ([i915#6344]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: [SKIP][369] ([i915#14544] / [i915#3281]) -> [SKIP][370] ([i915#3281]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][371] ([i915#14544] / [i915#2190]) -> [SKIP][372] ([i915#2190]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_huc_copy@huc-copy.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][373] ([i915#4613]) -> [SKIP][374] ([i915#14544] / [i915#4613]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][375] ([i915#14544] / [i915#4613]) -> [SKIP][376] ([i915#4613]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_pread@uncached: - shard-rkl: [SKIP][377] ([i915#3282]) -> [SKIP][378] ([i915#14544] / [i915#3282]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@gem_pread@uncached.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@gem_pread@uncached.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: [SKIP][379] ([i915#14544] / [i915#3282]) -> [SKIP][380] ([i915#3282]) +3 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@gem_readwrite@write-bad-handle.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][381] ([i915#14544] / [i915#3297]) -> [SKIP][382] ([i915#3297]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][383] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][384] ([i915#3282] / [i915#3297]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][385] ([i915#14544] / [i915#2527]) -> [SKIP][386] ([i915#2527]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][387] ([i915#15479]) -> [SKIP][388] ([i915#14544] / [i915#15479]) +4 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][389] ([i915#14544] / [i915#8399]) -> [SKIP][390] ([i915#8399]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: [SKIP][391] ([i915#14544] / [i915#5286]) -> [SKIP][392] ([i915#5286]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][393] ([i915#5286]) -> [SKIP][394] ([i915#14544] / [i915#5286]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: [SKIP][395] ([i915#3638]) -> [SKIP][396] ([i915#14544] / [i915#3638]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][397] ([i915#14544]) -> [SKIP][398] +12 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][399] ([i915#14098] / [i915#6095]) -> [SKIP][400] ([i915#14098] / [i915#14544] / [i915#6095]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][401] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][402] ([i915#14098] / [i915#6095]) +4 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][403] ([i915#14544] / [i915#6095]) -> [SKIP][404] ([i915#6095]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][405] ([i915#12805] / [i915#14544]) -> [SKIP][406] ([i915#12805]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: [INCOMPLETE][407] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][408] ([i915#15582]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][409] ([i915#14544] / [i915#3742]) -> [SKIP][410] ([i915#3742]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][411] ([i915#3742]) -> [SKIP][412] ([i915#14544] / [i915#3742]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_cdclk@plane-scaling.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-rkl: [SKIP][413] -> [SKIP][414] ([i915#14544]) +3 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_chamelium_color@ctm-green-to-red.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-rkl: [SKIP][415] ([i915#11151] / [i915#7828]) -> [SKIP][416] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-rkl: [SKIP][417] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][418] ([i915#11151] / [i915#7828]) +2 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][419] ([i915#15330]) -> [SKIP][420] ([i915#14544] / [i915#15330]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#15330]) -> [SKIP][422] ([i915#15330]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][424] ([i915#6944] / [i915#7118] / [i915#9424]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_content_protection@type1.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: [SKIP][425] ([i915#13049]) -> [SKIP][426] ([i915#13049] / [i915#14544]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][427] ([i915#13049] / [i915#14544]) -> [SKIP][428] ([i915#13049]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: [SKIP][429] ([i915#3555]) -> [SKIP][430] ([i915#14544] / [i915#3555]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@kms_cursor_crc@cursor-random-max-size.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][431] ([i915#4103]) -> [SKIP][432] ([i915#14544] / [i915#4103]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][433] ([i915#9067]) -> [SKIP][434] ([i915#14544] / [i915#9067]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][435] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][436] ([i915#3555] / [i915#3804]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#3804]) -> [SKIP][438] ([i915#3804]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][439] ([i915#13749] / [i915#14544]) -> [SKIP][440] ([i915#13749]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][442] ([i915#3555] / [i915#3840]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][443] ([i915#14544] / [i915#9934]) -> [SKIP][444] ([i915#9934]) +3 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][445] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][446] ([i915#12314] / [i915#12745] / [i915#4839]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html - shard-rkl: [SKIP][447] ([i915#9934]) -> [SKIP][448] ([i915#14544] / [i915#9934]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_flip@2x-flip-vs-suspend.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][449] ([i915#12314] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][450] ([i915#12314] / [i915#4839]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#15643]) -> [SKIP][452] ([i915#15643]) +3 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][453] ([i915#1825]) -> [SKIP][454] ([i915#14544] / [i915#1825]) +7 other tests skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][456] ([i915#15102] / [i915#3023]) +6 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][457] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][458] ([i915#15102] / [i915#3458]) +3 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#1825]) -> [SKIP][460] ([i915#1825]) +18 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#15102]) -> [SKIP][462] ([i915#15102]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][463] ([i915#15102]) -> [SKIP][464] ([i915#14544] / [i915#15102]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][465] ([i915#15102] / [i915#3458]) -> [SKIP][466] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-rkl: [SKIP][467] ([i915#15102] / [i915#3023]) -> [SKIP][468] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg1: [SKIP][469] ([i915#4423]) -> [SKIP][470] [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [INCOMPLETE][471] ([i915#15436]) -> [SKIP][472] ([i915#3555] / [i915#8228]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][473] ([i915#12713]) -> [SKIP][474] ([i915#1187] / [i915#12713]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-tglu-4/igt@kms_hdr@brightness-with-hdr.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][475] ([i915#14712]) -> [SKIP][476] ([i915#14544] / [i915#14712]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][477] ([i915#15709]) -> [SKIP][478] ([i915#14544] / [i915#15709]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][479] ([i915#14544] / [i915#15709]) -> [SKIP][480] ([i915#15709]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][481] ([i915#14544] / [i915#3555]) -> [SKIP][482] ([i915#3555]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][483] ([i915#5354]) -> [SKIP][484] ([i915#14544] / [i915#5354]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@kms_pm_backlight@fade.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#9685]) -> [SKIP][486] ([i915#9685]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#3828]) -> [SKIP][488] ([i915#3828]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][489] ([i915#15739]) -> [SKIP][490] ([i915#15128]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#9340]) -> [SKIP][492] ([i915#9340]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][493] ([i915#3828]) -> [SKIP][494] ([i915#9340]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][495] ([i915#8430]) -> [SKIP][496] ([i915#14544] / [i915#8430]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][497] ([i915#15403]) -> [SKIP][498] ([i915#14544] / [i915#15403]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-5/igt@kms_pm_rpm@package-g7.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][499] ([i915#11520] / [i915#14544]) -> [SKIP][500] ([i915#11520]) +2 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][501] ([i915#14544] / [i915#9683]) -> [SKIP][502] ([i915#9683]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg1: [SKIP][503] ([i915#1072] / [i915#9732]) -> [SKIP][504] ([i915#1072] / [i915#4423] / [i915#9732]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-19/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][505] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][506] ([i915#1072] / [i915#9732]) +10 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-blt: - shard-rkl: [SKIP][507] ([i915#1072] / [i915#9732]) -> [SKIP][508] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-3/igt@kms_psr@pr-cursor-blt.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@pr-primary-page-flip: - shard-dg1: [SKIP][509] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][510] ([i915#1072] / [i915#9732]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-16/igt@kms_psr@pr-primary-page-flip.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-14/igt@kms_psr@pr-primary-page-flip.html * igt@kms_vrr@flipline: - shard-dg1: [SKIP][511] ([i915#3555] / [i915#4423]) -> [SKIP][512] ([i915#3555]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-18/igt@kms_vrr@flipline.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-18/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][513] ([i915#14544] / [i915#9906]) -> [SKIP][514] ([i915#9906]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-6/igt@kms_vrr@max-min.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-2/igt@kms_vrr@max-min.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][515] ([i915#2433]) -> [SKIP][516] ([i915#14544] / [i915#2433]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: [INCOMPLETE][517] ([i915#13029] / [i915#13520]) -> [ABORT][518] ([i915#13029] / [i915#15778]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg2-5/igt@perf_pmu@module-unload.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg2-8/igt@perf_pmu@module-unload.html - shard-dg1: [ABORT][519] ([i915#15778]) -> [ABORT][520] ([i915#13029] / [i915#15778]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18149/shard-dg1-17/igt@perf_pmu@module-unload.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/shard-dg1-12/igt@perf_pmu@module-unload.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [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#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15511]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15511 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [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#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [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#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [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#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8805 -> IGTPW_14762 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18149: bbe6ae2e40f59b05f04a75989b3b3bbb005342a2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14762: ae252e7f932c18b716af42a489bc7ea8a26d8d2a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8805: 8805 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14762/index.html [-- Attachment #2: Type: text/html, Size: 173958 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak ` (4 preceding siblings ...) 2026-03-15 10:27 ` ✗ i915.CI.Full: " Patchwork @ 2026-03-23 14:02 ` Saarinen, Jani 5 siblings, 0 replies; 10+ messages in thread From: Saarinen, Jani @ 2026-03-23 14:02 UTC (permalink / raw) To: Grzelak, Michal, igt-dev@lists.freedesktop.org, Vehmanen, Kai Cc: Grzelak, Michal HI, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Michał > Grzelak > Sent: Sunday, 15 March 2026 2.38 > To: igt-dev@lists.freedesktop.org > Cc: Grzelak, Michal <michal.grzelak@intel.com> > Subject: [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor > closure > > Currently check for audio unloading is done after driver's file descriptor has been > closed. This renders is_i915_device() useless since check bases on the descriptor > passed. Move the check before closing the descriptor. > > Signed-off-by: Michał Grzelak <michal.grzelak@intel.com> +Kai > --- > tests/device_reset.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/tests/device_reset.c b/tests/device_reset.c index > 62b295a06e..b931dff7a0 100644 > --- a/tests/device_reset.c > +++ b/tests/device_reset.c > @@ -345,9 +345,6 @@ static bool has_cold_reset(int slot_dir, const char > **reason) > /* Unbind the driver from the device */ static void driver_unbind(struct > device_fds *dev) { > - if (is_i915_device(dev->fds.dev)) > - igt_audio_driver_unload(&dev->snd_driver); > - > igt_debug("unbind the driver from the device\n"); > igt_assert(igt_sysfs_set(dev->fds.drv_dir, "unbind", > dev->dev_bus_addr)); > @@ -429,6 +426,10 @@ static void set_device_filter(const char* dev_path) > > static void unbind_reset_rebind(struct device_fds *dev, enum reset type) { > + if (is_i915_device(dev->fds.dev)) { > + igt_audio_driver_unload(&dev->snd_driver); > + } > + > igt_debug("close the device\n"); > close_if_opened(&dev->fds.dev); > > -- > 2.45.2 ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-24 15:11 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-15 0:38 [PATCH i-g-t 1/2] tests/device_reset: unload audio before descriptor closure Michał Grzelak 2026-03-15 0:38 ` [PATCH i-g-t 2/2] tests/device_reset: unload audio on xe as well Michał Grzelak 2026-03-23 14:02 ` Saarinen, Jani 2026-03-23 14:06 ` Vehmanen, Kai 2026-03-24 15:10 ` Michał Grzelak 2026-03-15 1:32 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/device_reset: unload audio before descriptor closure Patchwork 2026-03-15 1:35 ` ✓ i915.CI.BAT: " Patchwork 2026-03-15 6:10 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-03-15 10:27 ` ✗ i915.CI.Full: " Patchwork 2026-03-23 14:02 ` [PATCH i-g-t 1/2] " Saarinen, Jani
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox