* [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened
@ 2026-04-09 20:09 Ville Syrjala
2026-04-10 3:34 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ville Syrjala @ 2026-04-09 20:09 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use the new "display_reset_count" debugfs file to confirm that the
kernel did in fact perform the display reset.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
This will blow up in CI because the debugs file is not yet there.
tests/intel/kms_busy.c | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/tests/intel/kms_busy.c b/tests/intel/kms_busy.c
index e82380276666..066c6d34b8f9 100644
--- a/tests/intel/kms_busy.c
+++ b/tests/intel/kms_busy.c
@@ -35,6 +35,7 @@
#include "i915/gem.h"
#include "igt.h"
+#include "igt_sysfs.h"
/**
* SUBTEST: basic
@@ -413,6 +414,11 @@ static void gpu_engines_restore_timeouts(int fd, int num_engines, const struct g
gem_engine_properties_restore(fd, &props[i]);
}
+static uint32_t display_reset_count(int drm_fd)
+{
+ return igt_sysfs_get_u32(igt_debugfs_dir(drm_fd), "display_reset_count");
+}
+
const char *help_str =
" -e \tRun on all pipes. (By default subtests will run on two pipes)\n";
@@ -549,16 +555,22 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
continue;
igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) {
- if (tests[i].reset)
+ uint32_t reset_count_pre = 0;
+
+ if (tests[i].reset) {
igt_set_module_param_int(display.drm_fd, "force_reset_modeset_test", 1);
+ reset_count_pre = display_reset_count(display.drm_fd);
+ }
test_hang(&display,
crtc,
output,
tests[i].modeset, tests[i].hang_newfb);
- if (tests[i].reset)
+ if (tests[i].reset) {
igt_set_module_param_int(display.drm_fd, "force_reset_modeset_test", 0);
+ igt_assert_neq(reset_count_pre, display_reset_count(display.drm_fd));
+ }
}
}
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/kms_busy: Verify display reset happened
2026-04-09 20:09 [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened Ville Syrjala
@ 2026-04-10 3:34 ` Patchwork
2026-04-10 3:50 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 3:34 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2694 bytes --]
== Series Details ==
Series: tests/intel/kms_busy: Verify display reset happened
URL : https://patchwork.freedesktop.org/series/164652/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8852_BAT -> XEIGTPW_14958_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14958_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#6519])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-dg2-oem2/igt@xe_waitfence@engine.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/bat-dg2-oem2/igt@xe_waitfence@engine.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][5] ([Intel XE#7483]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][7] ([Intel XE#6520]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8852 -> IGTPW_14958
* Linux: xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf -> xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37
IGTPW_14958: 14958
IGT_8852: 8852
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/index.html
[-- Attachment #2: Type: text/html, Size: 3436 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✓ i915.CI.BAT: success for tests/intel/kms_busy: Verify display reset happened
2026-04-09 20:09 [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened Ville Syrjala
2026-04-10 3:34 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-10 3:50 ` Patchwork
2026-04-10 8:37 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-10 23:27 ` ✗ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 3:50 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3582 bytes --]
== Series Details ==
Series: tests/intel/kms_busy: Verify display reset happened
URL : https://patchwork.freedesktop.org/series/164652/
State : success
== Summary ==
CI Bug Log - changes from IGT_8852 -> IGTPW_14958
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14958 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#15673])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-adlp-9/igt@core_debugfs@read-all-entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-adlp-9/igt@core_debugfs@read-all-entries.html
* igt@i915_selftest@live@sanitycheck:
- bat-apl-1: [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +77 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-arls-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-apl-1: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#180]) +49 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-dg2-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-arls-5/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8852 -> IGTPW_14958
* Linux: CI_DRM_18303 -> CI_DRM_18306
CI-20190529: 20190529
CI_DRM_18303: 7fa61e7003dda66c77b7f63a555658d8fb10bacf @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18306: 97d8833ffba6bd3d6aaa51169069620ac17a2e37 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14958: 14958
IGT_8852: 8852
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/index.html
[-- Attachment #2: Type: text/html, Size: 4563 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ Xe.CI.FULL: failure for tests/intel/kms_busy: Verify display reset happened
2026-04-09 20:09 [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened Ville Syrjala
2026-04-10 3:34 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-10 3:50 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-10 8:37 ` Patchwork
2026-04-10 23:27 ` ✗ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 8:37 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 37599 bytes --]
== Series Details ==
Series: tests/intel/kms_busy: Verify display reset happened
URL : https://patchwork.freedesktop.org/series/164652/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8852_FULL -> XEIGTPW_14958_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14958_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14958_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_14958_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@core_setmaster@master-drop-set-root.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@core_setmaster@master-drop-set-root.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@xe_module_load@reload-no-display.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_module_load@reload-no-display.html
Known issues
------------
Here are the changes found in XEIGTPW_14958_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#6779])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-4/igt@core_hotunplug@hotrebind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@core_hotunplug@hotrebind.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: NOTRUN -> [FAIL][7] ([Intel XE#7445])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2328] / [Intel XE#7367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2320])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
- shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#6841]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4354] / [Intel XE#7386])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7178] / [Intel XE#7351])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4141]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2311]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2313]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7130]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#7340] / [Intel XE#7504])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#7340])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1489])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2168] / [Intel XE#7444])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7636]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-7/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7140])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322] / [Intel XE#7372])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7136]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6703]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@many-execs-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#6874]) +9 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-dyn-priority-smem.html
* igt@xe_exec_system_allocator@many-stride-mmap-remap-dontunmap:
- shard-bmg: [PASS][37] -> [DMESG-FAIL][38] ([Intel XE#5545] / [Intel XE#6652]) +1 other test dmesg-fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-mmap-remap-dontunmap.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-mmap-remap-dontunmap.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#5625])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#6703]) +146 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#6557] / [Intel XE#6703])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7138]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4733] / [Intel XE#7417])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#944])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-4/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [PASS][48] -> [ABORT][49] ([Intel XE#3119])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-6/igt@xe_wedged@basic-wedged.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-7/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][50] ([Intel XE#5354]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [FAIL][52] ([Intel XE#3149]) -> [PASS][53] +1 other test pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][54] -> [PASS][55] +4 other tests pass
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][56] ([Intel XE#301]) -> [PASS][57] +1 other test pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][58] ([Intel XE#1503]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][60] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][61] +3 other tests pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-8/igt@kms_vrr@flip-basic.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-8/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][62] ([Intel XE#2142]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][64] ([Intel XE#5937]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck:
- shard-bmg: [DMESG-WARN][66] -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][68] ([Intel XE#2327]) -> [SKIP][69] ([Intel XE#6703])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][70] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][71] ([Intel XE#6703])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][72] ([Intel XE#1124]) -> [SKIP][73] ([Intel XE#6703])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][74] ([Intel XE#7679]) -> [SKIP][75] ([Intel XE#6703])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: [SKIP][76] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][77] ([Intel XE#6703])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-2/igt@kms_chamelium_color@ctm-limited-range.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][78] ([Intel XE#2252]) -> [SKIP][79] ([Intel XE#6703])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][80] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][81] ([Intel XE#6703])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: [SKIP][82] ([Intel XE#2320]) -> [SKIP][83] ([Intel XE#6703])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][84] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][85] ([Intel XE#6703]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][86] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][87] ([Intel XE#6703])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@kms_feature_discovery@display-4x.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][88] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][89] ([Intel XE#6703]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][90] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][91] ([Intel XE#6703])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][92] ([Intel XE#4141]) -> [SKIP][93] ([Intel XE#6703]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw:
- shard-bmg: [SKIP][94] ([Intel XE#2311]) -> [SKIP][95] ([Intel XE#6703]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-bmg: [SKIP][96] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][97] ([Intel XE#6703]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: [SKIP][98] ([Intel XE#2313]) -> [SKIP][99] ([Intel XE#6703]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][100] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][101] ([Intel XE#3544])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: [SKIP][102] ([Intel XE#7283]) -> [SKIP][103] ([Intel XE#6703])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][104] ([Intel XE#7376] / [Intel XE#870]) -> [SKIP][105] ([Intel XE#6703])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: [SKIP][106] ([Intel XE#1489]) -> [SKIP][107] ([Intel XE#6703]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: [SKIP][108] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][109] ([Intel XE#6703])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-270.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: [SKIP][110] ([Intel XE#2413]) -> [SKIP][111] ([Intel XE#6703])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][112] ([Intel XE#1435]) -> [SKIP][113] ([Intel XE#6703])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][114] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][115] ([Intel XE#2426] / [Intel XE#5848])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: [SKIP][116] ([Intel XE#1499]) -> [SKIP][117] ([Intel XE#6703]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_vrr@flip-suspend.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][118] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) -> [SKIP][119] ([Intel XE#6703])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: [SKIP][120] ([Intel XE#7636]) -> [SKIP][121] ([Intel XE#6557] / [Intel XE#6703])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-bmg: [SKIP][122] ([Intel XE#7636]) -> [SKIP][123] ([Intel XE#6703]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: [SKIP][124] ([Intel XE#7140]) -> [SKIP][125] ([Intel XE#6703])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [SKIP][126] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][127] ([Intel XE#6703]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-imm:
- shard-bmg: [SKIP][128] ([Intel XE#7136]) -> [SKIP][129] ([Intel XE#6703]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-rebind-imm.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
- shard-bmg: [SKIP][130] ([Intel XE#6874]) -> [SKIP][131] ([Intel XE#6703]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: [SKIP][132] ([Intel XE#7138]) -> [SKIP][133] ([Intel XE#6703]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][134] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][135] ([Intel XE#6703])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-10/igt@xe_pm@d3cold-mmap-vram.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][136] ([Intel XE#944]) -> [SKIP][137] ([Intel XE#6703])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [FAIL][138] ([Intel XE#5937]) -> [SKIP][139] ([Intel XE#6703])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[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#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[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#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8852 -> IGTPW_14958
* Linux: xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf -> xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37
IGTPW_14958: 14958
IGT_8852: 8852
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14958/index.html
[-- Attachment #2: Type: text/html, Size: 44085 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ i915.CI.Full: failure for tests/intel/kms_busy: Verify display reset happened
2026-04-09 20:09 [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened Ville Syrjala
` (2 preceding siblings ...)
2026-04-10 8:37 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-10 23:27 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-10 23:27 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 141814 bytes --]
== Series Details ==
Series: tests/intel/kms_busy: Verify display reset happened
URL : https://patchwork.freedesktop.org/series/164652/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18306_full -> IGTPW_14958_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14958_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14958_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_14958/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14958_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a:
- shard-snb: [PASS][1] -> [FAIL][2] +5 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-snb6/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-snb4/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
- shard-tglu: [PASS][3] -> [FAIL][4] +5 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-9/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
- shard-mtlp: [PASS][5] -> [FAIL][6] +5 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-6/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
* igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-c:
- shard-glk: NOTRUN -> [FAIL][7] +2 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk5/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-c.html
* igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-d:
- shard-dg2: NOTRUN -> [FAIL][8] +2 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-d.html
- shard-dg1: [PASS][9] -> [FAIL][10] +2 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-17/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-d.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-d.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset:
- shard-glk: [PASS][11] -> [FAIL][12] +2 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk1/igt@kms_busy@extended-modeset-hang-oldfb-with-reset.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk2/igt@kms_busy@extended-modeset-hang-oldfb-with-reset.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-c:
- shard-rkl: [PASS][13] -> [FAIL][14] +5 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-c.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-c.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-d:
- shard-dg2: [PASS][15] -> [FAIL][16] +2 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-5/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-d.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-d.html
- shard-dg1: NOTRUN -> [FAIL][17] +2 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-d.html
Known issues
------------
Here are the changes found in IGTPW_14958_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#8411])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_buddy@drm_buddy:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#15678])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3281]) +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#13008])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#13008])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#13008])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#9323])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-9/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#6335])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6335])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#9561]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#8555]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4771])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-6/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@gem_exec_balancer@parallel.html
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4525])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-2/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][45] ([i915#11965]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#6344])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][48] ([i915#11965]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][49] ([i915#11965]) +2 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@gem_exec_flush@basic-wb-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#3281])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +13 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3281]) +15 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@gem_exec_schedule@reorder-wide.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#2190])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#2190])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][63] ([i915#2190])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#14544] / [i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][67] ([i915#4613]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk5/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][72] ([i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk9/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@gem_pwrite@basic-random.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@gem_pwrite@basic-random.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@gem_pwrite@basic-random.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +8 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4958])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4958])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: NOTRUN -> [INCOMPLETE][91] ([i915#13356])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [PASS][92] -> [ABORT][93] ([i915#15131])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html
- shard-tglu: [PASS][94] -> [ABORT][95] ([i915#15652])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-3/igt@gem_workarounds@suspend-resume-context.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@gen9_exec_parse@bb-secure.html
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#14544] / [i915#2527])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-6/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#14073]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#14073]) +6 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-6/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#14073]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#14118]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#14118])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#14118])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-8/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection:
- shard-dg1: NOTRUN -> [ABORT][109] ([i915#15481]) +1 other test abort
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][110] ([i915#15481])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#6412])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#8399]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#8399])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][114] -> [INCOMPLETE][115] ([i915#13356] / [i915#13820]) +1 other test incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#6590]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][117] -> [WARN][118] ([i915#13790] / [i915#2681]) +1 other test warn
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6245])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6245])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#6188])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#5723])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][125] ([i915#4817])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#4817]) +1 other test incomplete
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk9/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4215])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][131] -> [INCOMPLETE][132] ([i915#12761]) +1 other test incomplete
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#12761])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/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][134] ([i915#12761] / [i915#14995])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#9531])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#9531])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][137] ([i915#1769])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [FAIL][142] ([i915#15733] / [i915#5138])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#5286]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3828])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3828]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][148] +11 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#5190]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6187]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][153] +28 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][154] +99 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +61 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#12313]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#12313]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#4423] / [i915#6095]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +239 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-glk11: NOTRUN -> [SKIP][160] +71 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#6095]) +49 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#12313])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#12313])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6095]) +84 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#12805])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#12805])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#14694] / [i915#15582])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][169] -> [INCOMPLETE][170] ([i915#15582])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][171] ([i915#15582])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#14098] / [i915#6095]) +55 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#12313])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-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-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#6095]) +58 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6095]) +29 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#6095]) +75 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3742])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_cdclk@mode-transition.html
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3742])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3742])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][182] +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +11 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#15865]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#15865]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#15330]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#15330])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#15330]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#15330])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#15330])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#15865])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#15865]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#15865])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#15865]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8814])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][203] -> [FAIL][204] ([i915#13566]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][205] ([i915#13566]) +3 other tests fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#13049]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#13049])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#13049])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#13049])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#13049])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13049]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][212] +468 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk8/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8814]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][214] ([i915#13566]) +1 other test fail
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555]) +6 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3555]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#13046] / [i915#5354]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#9809])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#4103])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#4103])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][221] ([i915#15768])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#4103]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9723])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#3804])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#13749])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#13749])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#13749])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#13748])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#13748])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_dp_link_training@uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#13748])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#13707])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#13707])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#13707] / [i915#14544])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#13707])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#13707])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#13707])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3840])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3840])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#9878])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3469])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#4854])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#1839])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#1839])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#658])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#658])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#658])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#3637] / [i915#9934]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3637] / [i915#9934]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3637] / [i915#9934]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#8381])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#9934]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#9934]) +8 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][257] -> [INCOMPLETE][258] ([i915#6113]) +1 other test incomplete
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][259] ([i915#12745] / [i915#4839])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][260] ([i915#12745])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15643]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#15643] / [i915#5190])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15643]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#15643]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8810] / [i915#8813])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8810] / [i915#8813])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#15643]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#15643]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15643])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][270] -> [SKIP][271] ([i915#15672])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15104]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15104]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15104])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#5354]) +22 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][276] +26 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#15102]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#15102]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15102]) +7 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#8708]) +12 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#15102]) +12 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][283] +56 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][284] +152 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#15102] / [i915#3458]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15102] / [i915#3023]) +32 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#10055])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#10055])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#9766])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#15102] / [i915#3458]) +14 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#1825]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#1825]) +39 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#4423])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#1825]) +10 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#15102]) +28 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#8708]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#8708]) +12 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15459])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#13688])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#13688])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-6/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#13688])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#13688])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#13688])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#15460])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#6301])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#6301])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][310] +42 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][311] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#15709]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15709]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#15709]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#15709]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#15608]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15709])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#15709]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#15608]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#15608]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#15608]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][322] ([i915#13026])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#11614] / [i915#3582]) +3 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#13958]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#13958])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#13958])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#14259])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#14259])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_plane_multiple@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#14259])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#14259])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#14259])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][333] -> [SKIP][334] ([i915#6953])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#15329]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#15329]) +9 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#15329] / [i915#3555] / [i915#6953])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#15329]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9812])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#5354]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#5354]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_pm_backlight@fade-with-suspend.html
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#9812])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#9685])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#3828])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][345] ([i915#15752])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#9685]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#9340])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#8430])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#4077]) +4 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][350] -> [SKIP][351] ([i915#15073])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][352] -> [SKIP][353] ([i915#15073])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#15073])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][355] -> [SKIP][356] ([i915#15073]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#15073])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#15073])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#15073])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#15403])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@kms_pm_rpm@package-g7.html
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#15403])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_pm_rpm@package-g7.html
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#15403])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#15403])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_pm_rpm@package-g7.html
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#15403])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#6524])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#11520]) +5 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#11520]) +3 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][368] ([i915#11520]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12316]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][370] ([i915#11520]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#11520]) +9 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#11520]) +6 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#11520]) +3 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][374] ([i915#11520]) +14 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][375] ([i915#11520]) +3 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#9683])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#9683])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9732]) +13 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#1072] / [i915#9732]) +18 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-plane-move.html
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#9732]) +27 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#9688]) +10 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-3/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +16 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#9732]) +21 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][385] ([i915#15492])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk4/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#5289])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#5289]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#12755] / [i915#15867] / [i915#5190])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#5289]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#5289])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#12755] / [i915#15867])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][392] ([i915#10959])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][393] ([i915#8623])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#15243] / [i915#3555])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-5/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][395] ([i915#15243] / [i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#3555] / [i915#8808])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#11920] / [i915#14544])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][398] ([i915#9906])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#3555] / [i915#9906])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][401] ([i915#2436])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#7387])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#7387])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#2434])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][405] ([i915#2434])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][406] ([i915#2434])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#2434])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-8/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][408] ([i915#2433])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@rc6-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][409] ([i915#13356])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk11/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#3708])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#3708])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][412] ([i915#12910]) +10 other tests fail
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-9/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#9917]) +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_eio@suspend:
- shard-dg2: [ABORT][414] ([i915#15131]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-10/igt@gem_eio@suspend.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-3/igt@gem_eio@suspend.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][416] ([i915#15816]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@gem_exec_big@single.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-5/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-tglu: [ABORT][418] ([i915#15652]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-7/igt@gem_exec_suspend@basic-s3@smem.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-8/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [FAIL][420] -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [FAIL][422] -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][424] ([i915#15762]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [DMESG-WARN][426] ([i915#13029] / [i915#14545]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-18/igt@i915_module_load@reload-no-display.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@i915_module_load@reload-no-display.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][428] ([i915#5956]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][430] ([i915#5956]) -> [PASS][431] +1 other test pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][432] ([i915#15662]) -> [PASS][433] +3 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][434] ([i915#15582]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [FAIL][436] ([i915#13566]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [FAIL][438] ([i915#14600]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-tglu-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [INCOMPLETE][440] ([i915#13026]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg1: [DMESG-WARN][442] ([i915#4423]) -> [PASS][443] +2 other tests pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-16/igt@kms_plane@plane-panning-top-left.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_cursor@overlay:
- shard-rkl: [FAIL][444] ([i915#15912]) -> [PASS][445] +1 other test pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_plane_cursor@overlay.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
- shard-rkl: [FAIL][446] ([i915#15913]) -> [PASS][447] +1 other test pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][448] ([i915#15073]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][450] ([i915#15073]) -> [PASS][451] +1 other test pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [SKIP][452] ([i915#15073]) -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][455] ([i915#3555] / [i915#9323])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#7697]) -> [SKIP][457] ([i915#7697])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: [SKIP][458] ([i915#3281]) -> [SKIP][459] ([i915#14544] / [i915#3281]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#3281]) -> [SKIP][461] ([i915#3281]) +2 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#4613]) -> [SKIP][463] ([i915#4613]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][464] ([i915#4613]) -> [SKIP][465] ([i915#14544] / [i915#4613])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][466] ([i915#284]) -> [SKIP][467] ([i915#14544] / [i915#284])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@gem_media_vme.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3282]) -> [SKIP][469] ([i915#3282]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#8411]) -> [SKIP][471] ([i915#8411])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][472] ([i915#15656]) -> [SKIP][473] ([i915#14544] / [i915#15656])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#2527]) -> [SKIP][475] ([i915#2527])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#8399]) -> [SKIP][477] ([i915#8399])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][478] ([i915#8399]) -> [SKIP][479] ([i915#14544] / [i915#8399])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#4387]) -> [SKIP][481] ([i915#4387])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#7707]) -> [SKIP][483] ([i915#7707])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#5286]) -> [SKIP][485] ([i915#5286]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][486] ([i915#5286]) -> [SKIP][487] ([i915#14544] / [i915#5286])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#3638]) -> [SKIP][489] ([i915#3638]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][490] ([i915#14544]) -> [SKIP][491] +4 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg1: [SKIP][492] ([i915#4538]) -> [SKIP][493] ([i915#4423] / [i915#4538])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#6095]) -> [SKIP][495] ([i915#6095]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][496] ([i915#6095]) -> [SKIP][497] ([i915#14544] / [i915#6095])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][498] ([i915#14098] / [i915#6095]) -> [SKIP][499] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: [INCOMPLETE][500] ([i915#15582]) -> [INCOMPLETE][501] ([i915#14694] / [i915#15582])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][502] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][503] ([i915#14098] / [i915#6095]) +5 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-rkl: [SKIP][504] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#7828]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: [SKIP][506] ([i915#11151] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#14544] / [i915#7828])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-multiple.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][509] ([i915#15330] / [i915#3116])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#3555]) -> [SKIP][511] ([i915#3555])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#9067]) -> [SKIP][513] ([i915#9067])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][514] ([i915#3555] / [i915#3840]) -> [SKIP][515] ([i915#14544] / [i915#3555] / [i915#3840])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#9934]) -> [SKIP][517] ([i915#9934]) +2 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][518] ([i915#9934]) -> [SKIP][519] ([i915#14544] / [i915#9934])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][520] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][521] ([i915#12745] / [i915#4839])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk3/igt@kms_flip@flip-vs-suspend.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][522] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][523] ([i915#12745])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#15643]) -> [SKIP][525] ([i915#15643])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][526] ([i915#15643]) -> [SKIP][527] ([i915#14544] / [i915#15643]) +1 other test skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][528] ([i915#1825]) -> [SKIP][529] ([i915#14544] / [i915#1825]) +2 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][530] ([i915#15102] / [i915#3023]) -> [SKIP][531] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#1825]) -> [SKIP][533] ([i915#1825]) +10 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][534] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][535] ([i915#15102] / [i915#3458]) +2 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][536] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][537] ([i915#15102] / [i915#3023]) +4 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [INCOMPLETE][538] ([i915#15436]) -> [SKIP][539] ([i915#3555] / [i915#8228])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: [SKIP][540] ([i915#15458]) -> [SKIP][541] ([i915#15458] / [i915#4423])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][542] ([i915#14544] / [i915#15709]) -> [SKIP][543] ([i915#15709])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg1: [SKIP][544] ([i915#13958] / [i915#4423]) -> [SKIP][545] ([i915#13958])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-4.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][546] ([i915#9685]) -> [SKIP][547] ([i915#14544] / [i915#9685])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][548] ([i915#3828]) -> [SKIP][549] ([i915#9340])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][550] ([i915#11520] / [i915#14544]) -> [SKIP][551] ([i915#11520]) +2 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][552] ([i915#11520]) -> [SKIP][553] ([i915#11520] / [i915#14544]) +1 other test skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +3 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][556] ([i915#1072] / [i915#9732]) -> [SKIP][557] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][558] ([i915#3555]) -> [SKIP][559] ([i915#14544] / [i915#3555])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][560] ([i915#15243] / [i915#3555]) -> [SKIP][561] ([i915#14544] / [i915#15243] / [i915#3555])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_vrr@flip-basic.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#9906]) -> [SKIP][563] ([i915#9906])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][564] ([i915#14544] / [i915#2435]) -> [SKIP][565] ([i915#2435])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][566] ([i915#13029] / [i915#15778]) -> [ABORT][567] ([i915#15778])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-19/igt@perf_pmu@module-unload.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-dg1-12/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][568] ([i915#9917]) -> [SKIP][569] ([i915#14544] / [i915#9917])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#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#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#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#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912
[i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#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#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[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#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8852 -> IGTPW_14958
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18306: 97d8833ffba6bd3d6aaa51169069620ac17a2e37 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14958: 14958
IGT_8852: 8852
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14958/index.html
[-- Attachment #2: Type: text/html, Size: 187048 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-04-10 23:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-09 20:09 [PATCH i-g-t] tests/intel/kms_busy: Verify display reset happened Ville Syrjala
2026-04-10 3:34 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-10 3:50 ` ✓ i915.CI.BAT: " Patchwork
2026-04-10 8:37 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-10 23:27 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox