* [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache
@ 2026-05-18 12:32 Sebastian Brzezinka
2026-05-19 1:22 ` ✓ Xe.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Sebastian Brzezinka @ 2026-05-18 12:32 UTC (permalink / raw)
To: igt-dev; +Cc: Sebastian Brzezinka, kamil.konieczny, ashutosh.dixit
Opening a DRM device with plain open() does not initialize the Xe device
cache. When igt_power_open() calls is_intel_dgfx() -> xe_has_vram(), it
uses find_in_cache() which asserts the cache entry exists, causing a crash
on Xe devices with: xe_query-CRITICAL: Failed assertion: xe_dev
Fix this by opening the device with O_RDWR (required for DRM ioctls),
calling xe_device_get() for Xe devices to populate the cache before
calling igt_power_open(), and calling xe_device_put() on cleanup for
proper cache management.
Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
tools/igt_power.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/tools/igt_power.c b/tools/igt_power.c
index 6dd180d34..11da0430b 100644
--- a/tools/igt_power.c
+++ b/tools/igt_power.c
@@ -11,6 +11,7 @@
#include "drmtest.h"
#include "igt_power.h"
+#include "xe/xe_query.h"
struct measurement {
int battery_index;
@@ -38,12 +39,15 @@ static bool prepare(struct measurement *m)
int ret, fd = -1;
if (m->drm_device) {
- fd = open(m->drm_device, O_RDONLY);
+ fd = open(m->drm_device, O_RDWR);
if (fd < 0) {
fprintf(stderr, "Unable to open drm device %s (%d)\n",
m->drm_device, -errno);
return false;
}
+
+ if (is_xe_device(fd))
+ xe_device_get(fd);
}
ret = igt_power_open(fd, &m->power, m->rapl_domain);
@@ -54,12 +58,20 @@ static bool prepare(struct measurement *m)
else
fprintf(stderr, "Unable to open rapl domain %s (%d)\n",
m->rapl_domain, ret);
- close(fd);
+ if (fd >= 0) {
+ if (is_xe_device(fd))
+ xe_device_put(fd);
+ close(fd);
+ }
return false;
}
- close(fd);
+ if (fd >= 0) {
+ if (is_xe_device(fd))
+ xe_device_put(fd);
+ close(fd);
+ }
}
return true;
--
2.53.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* ✓ Xe.CI.BAT: success for tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka @ 2026-05-19 1:22 ` Patchwork 2026-05-19 1:43 ` ✓ i915.CI.BAT: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-19 1:22 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1097 bytes --] == Series Details == Series: tools/igt_power: Fix crash on Xe devices by initializing xe_device cache URL : https://patchwork.freedesktop.org/series/166775/ State : success == Summary == CI Bug Log - changes from XEIGT_8918_BAT -> XEIGTPW_15198_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8918 -> IGTPW_15198 * Linux: xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900 -> xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356 IGTPW_15198: 11321a7d760aa341bcbca466fe49fcb5bd7277fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8918: 8918 xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356: ac60a9dd73e01e3f22825241c2f0498968cb2356 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/index.html [-- Attachment #2: Type: text/html, Size: 1656 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka 2026-05-19 1:22 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-05-19 1:43 ` Patchwork 2026-05-19 9:19 ` ✗ Xe.CI.FULL: failure " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-19 1:43 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6415 bytes --] == Series Details == Series: tools/igt_power: Fix crash on Xe devices by initializing xe_device cache URL : https://patchwork.freedesktop.org/series/166775/ State : success == Summary == CI Bug Log - changes from IGT_8918 -> IGTPW_15198 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15198 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-mtlp-8/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-dg2-14/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-arls-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-arls-6/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#7707]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#5354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3291]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-adls-6/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][18] ([i915#12061]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-arlh-3/igt@i915_selftest@live@workarounds.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][20] ([i915#12061]) -> [PASS][21] +1 other test pass [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8918 -> IGTPW_15198 * Linux: CI_DRM_18512 -> CI_DRM_18514 CI-20190529: 20190529 CI_DRM_18512: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18514: ac60a9dd73e01e3f22825241c2f0498968cb2356 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15198: 11321a7d760aa341bcbca466fe49fcb5bd7277fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8918: 8918 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/index.html [-- Attachment #2: Type: text/html, Size: 7758 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka 2026-05-19 1:22 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-05-19 1:43 ` ✓ i915.CI.BAT: " Patchwork @ 2026-05-19 9:19 ` Patchwork 2026-05-19 10:23 ` [PATCH] " Krzysztof Karas ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-19 9:19 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 48544 bytes --] == Series Details == Series: tools/igt_power: Fix crash on Xe devices by initializing xe_device cache URL : https://patchwork.freedesktop.org/series/166775/ State : failure == Summary == CI Bug Log - changes from XEIGT_8918_FULL -> XEIGTPW_15198_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15198_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15198_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_15198_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@process-many-malloc-prefetch-madvise: - shard-lnl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-1/igt@xe_exec_system_allocator@process-many-malloc-prefetch-madvise.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-1/igt@xe_exec_system_allocator@process-many-malloc-prefetch-madvise.html Known issues ------------ Here are the changes found in XEIGTPW_15198_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@x-tiled-64bpp-rotate-0: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#5643]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1477] / [Intel XE#7361]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#7679]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-target-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#7676]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325] / [Intel XE#7358]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2390] / [Intel XE#6974]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#7642]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_content_protection@uevent.html - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321] / [Intel XE#7355]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4331] / [Intel XE#7227]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#4331] / [Intel XE#7227]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1421]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [PASS][30] -> [DMESG-FAIL][31] ([Intel XE#7774]) +1 other test dmesg-fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7179]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-1/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7179]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4141]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#6312]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2311]) +18 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7061] / [Intel XE#7356]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7865]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7061]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7061]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2313]) +15 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7905]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1503]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#7922]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#7915]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#7340]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#4608]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4608] / [Intel XE#7304]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1489]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-basic: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [PASS][63] -> [SKIP][64] ([Intel XE#4692] / [Intel XE#7508]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#6361]) +2 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_sharpness_filter@filter-dpms: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6503]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-7/igt@kms_sharpness_filter@filter-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#2142]) +1 other test fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6599]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_drm_fdinfo@parallel-utilization-single-idle: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7636]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7636]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_exec_balancer@many-cm-parallel-basic: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7482]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@xe_exec_balancer@many-cm-parallel-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1392]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7136]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7136]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-10/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority.html * igt@xe_exec_multi_queue@many-queues-priority-smem: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6874]) +8 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6703]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-cat-error.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7866]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-4/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][85] ([Intel XE#7098]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6196]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html * igt@xe_exec_system_allocator@process-many-malloc-race-nomemset: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#6703]) +114 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@xe_exec_system_allocator@process-many-malloc-race-nomemset.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_system_allocator@process-many-malloc-race-nomemset.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7138]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7138]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html * igt@xe_gpgpu_fill@offset-4x4: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7954]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@xe_gpgpu_fill@offset-4x4.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7954]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@xe_gpgpu_fill@offset-4x4.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#6964]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-5/igt@xe_multigpu_svm@mgpu-migration-basic.html - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6964]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4733] / [Intel XE#7417]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][96] ([Intel XE#7084]) -> [PASS][97] +1 other test pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][98] ([Intel XE#7571]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][100] ([Intel XE#301]) -> [PASS][101] +2 other tests pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][102] ([Intel XE#7915]) -> [PASS][103] +3 other tests pass [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_plane_multiple@tiling-x: - shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [PASS][105] +2 other tests pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_plane_multiple@tiling-x.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_plane_multiple@tiling-x.html * igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads: - shard-bmg: [FAIL][106] ([Intel XE#7850]) -> [PASS][107] +1 other test pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-9/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][108] -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@xe_module_load@reload.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-1/igt@xe_module_load@reload.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][110] ([Intel XE#7992]) -> [PASS][111] +2 other tests pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-4/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html #### Warnings #### * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-bmg: [SKIP][112] ([Intel XE#2327]) -> [SKIP][113] ([Intel XE#6703]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@kms_big_fb@linear-16bpp-rotate-90.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][114] ([Intel XE#1124]) -> [SKIP][115] ([Intel XE#6703]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@linear-tiling-1-displays-target-2160x1440p: - shard-bmg: [SKIP][116] ([Intel XE#367]) -> [SKIP][117] ([Intel XE#6703]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2160x1440p.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2160x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][118] ([Intel XE#2887]) -> [SKIP][119] ([Intel XE#6703]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][120] ([Intel XE#2252]) -> [SKIP][121] ([Intel XE#6703]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-1/igt@kms_chamelium_frames@dp-frame-dump.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][122] ([Intel XE#2320]) -> [SKIP][123] ([Intel XE#6703]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-bmg: [DMESG-FAIL][124] ([Intel XE#5545] / [Intel XE#7774]) -> [SKIP][125] ([Intel XE#6703]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-bmg: [SKIP][126] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][127] ([Intel XE#6703]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][128] ([Intel XE#2311]) -> [SKIP][129] ([Intel XE#6703]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#4141]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][132] ([Intel XE#4141]) -> [SKIP][133] ([Intel XE#6703]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-bmg: [SKIP][134] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][135] ([Intel XE#6703]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render: - shard-lnl: [ABORT][136] -> [SKIP][137] ([Intel XE#7905]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][138] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][139] ([Intel XE#6703]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][140] ([Intel XE#2313]) -> [SKIP][141] ([Intel XE#6703]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-bmg: [SKIP][142] ([Intel XE#7283]) -> [SKIP][143] ([Intel XE#6703]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][144] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][145] ([Intel XE#6703]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@kms_pm_rpm@dpms-lpsp.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][146] ([Intel XE#1489]) -> [SKIP][147] ([Intel XE#6703]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-bmg: [SKIP][148] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][149] ([Intel XE#6703]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_psr@pr-cursor-plane-onoff.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: [SKIP][150] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][151] ([Intel XE#6703]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][152] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][153] ([Intel XE#2426] / [Intel XE#5848]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][154] ([Intel XE#7636]) -> [SKIP][155] ([Intel XE#6703]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: [SKIP][156] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][157] ([Intel XE#6703]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-defer-bind.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue: - shard-bmg: [SKIP][158] ([Intel XE#7136]) -> [SKIP][159] ([Intel XE#6703]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate: - shard-bmg: [SKIP][160] ([Intel XE#6874]) -> [SKIP][161] ([Intel XE#6703]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: [SKIP][162] ([Intel XE#7138]) -> [SKIP][163] ([Intel XE#6703]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_pmu@fn-engine-activity-load: - shard-bmg: [FAIL][164] ([Intel XE#7992]) -> [SKIP][165] ([Intel XE#6703]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq: - shard-bmg: [SKIP][166] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][167] ([Intel XE#6703]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html * igt@xe_query@multigpu-query-oa-units: - shard-bmg: [SKIP][168] ([Intel XE#944]) -> [SKIP][169] ([Intel XE#6703]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_query@multigpu-query-oa-units.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/shard-bmg-2/igt@xe_query@multigpu-query-oa-units.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [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#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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#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#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [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#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922 [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8918 -> IGTPW_15198 * Linux: xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900 -> xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356 IGTPW_15198: 11321a7d760aa341bcbca466fe49fcb5bd7277fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8918: 8918 xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356: ac60a9dd73e01e3f22825241c2f0498968cb2356 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15198/index.html [-- Attachment #2: Type: text/html, Size: 57254 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka ` (2 preceding siblings ...) 2026-05-19 9:19 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-19 10:23 ` Krzysztof Karas 2026-05-19 10:28 ` Sebastian Brzezinka 2026-05-19 10:52 ` Zbigniew Kempczyński ` (2 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Krzysztof Karas @ 2026-05-19 10:23 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny, ashutosh.dixit Hi Sebastian, [...] > @@ -38,12 +39,15 @@ static bool prepare(struct measurement *m) > int ret, fd = -1; > > if (m->drm_device) { > - fd = open(m->drm_device, O_RDONLY); > + fd = open(m->drm_device, O_RDWR); > if (fd < 0) { > fprintf(stderr, "Unable to open drm device %s (%d)\n", > m->drm_device, -errno); > return false; > } > + > + if (is_xe_device(fd)) > + xe_device_get(fd); > } > > ret = igt_power_open(fd, &m->power, m->rapl_domain); > @@ -54,12 +58,20 @@ static bool prepare(struct measurement *m) > else > fprintf(stderr, "Unable to open rapl domain %s (%d)\n", > m->rapl_domain, ret); > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > > return false; > } > > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > } > > return true; > -- > 2.53.0 > These changes follow a known Xe get/put pattern, so I do not have anything against them: Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> On a side note: did you notice any similar places where this could be missing? I do not think more changes should be added to this patch, but maybe there are more bugs like this and you already know how to fix them :) -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-19 10:23 ` [PATCH] " Krzysztof Karas @ 2026-05-19 10:28 ` Sebastian Brzezinka 0 siblings, 0 replies; 10+ messages in thread From: Sebastian Brzezinka @ 2026-05-19 10:28 UTC (permalink / raw) To: Krzysztof Karas, Sebastian Brzezinka Cc: igt-dev, kamil.konieczny, ashutosh.dixit Hi Krzysztof, On Tue May 19, 2026 at 12:23 PM CEST, Krzysztof Karas wrote: > Hi Sebastian, > > [...] > >> @@ -38,12 +39,15 @@ static bool prepare(struct measurement *m) >> int ret, fd = -1; >> >> if (m->drm_device) { >> - fd = open(m->drm_device, O_RDONLY); >> + fd = open(m->drm_device, O_RDWR); >> if (fd < 0) { >> fprintf(stderr, "Unable to open drm device %s (%d)\n", >> m->drm_device, -errno); >> return false; >> } >> + >> + if (is_xe_device(fd)) >> + xe_device_get(fd); >> } >> >> ret = igt_power_open(fd, &m->power, m->rapl_domain); >> @@ -54,12 +58,20 @@ static bool prepare(struct measurement *m) >> else >> fprintf(stderr, "Unable to open rapl domain %s (%d)\n", >> m->rapl_domain, ret); >> - close(fd); >> + if (fd >= 0) { >> + if (is_xe_device(fd)) >> + xe_device_put(fd); >> + close(fd); >> + } >> >> return false; >> } >> >> - close(fd); >> + if (fd >= 0) { >> + if (is_xe_device(fd)) >> + xe_device_put(fd); >> + close(fd); >> + } >> } >> >> return true; >> -- >> 2.53.0 >> > These changes follow a known Xe get/put pattern, so I do not > have anything against them: > > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > > On a side note: did you notice any similar places where this > could be missing? I do not think more changes should be added > to this patch, but maybe there are more bugs like this and you > already know how to fix them :) I did not really check for similar cases, it’s issue reported by user so this patch is intended as quick fix. Thx for review. -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka ` (3 preceding siblings ...) 2026-05-19 10:23 ` [PATCH] " Krzysztof Karas @ 2026-05-19 10:52 ` Zbigniew Kempczyński 2026-05-19 11:28 ` Kamil Konieczny 2026-05-19 20:55 ` ✗ i915.CI.Full: failure for " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Zbigniew Kempczyński @ 2026-05-19 10:52 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny, ashutosh.dixit On Mon, May 18, 2026 at 02:32:24PM +0200, Sebastian Brzezinka wrote: > Opening a DRM device with plain open() does not initialize the Xe device > cache. When igt_power_open() calls is_intel_dgfx() -> xe_has_vram(), it > uses find_in_cache() which asserts the cache entry exists, causing a crash > on Xe devices with: xe_query-CRITICAL: Failed assertion: xe_dev > > Fix this by opening the device with O_RDWR (required for DRM ioctls), > calling xe_device_get() for Xe devices to populate the cache before > calling igt_power_open(), and calling xe_device_put() on cleanup for > proper cache management. LGTM. Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- > tools/igt_power.c | 18 +++++++++++++++--- > 1 file changed, 15 insertions(+), 3 deletions(-) > > diff --git a/tools/igt_power.c b/tools/igt_power.c > index 6dd180d34..11da0430b 100644 > --- a/tools/igt_power.c > +++ b/tools/igt_power.c > @@ -11,6 +11,7 @@ > > #include "drmtest.h" > #include "igt_power.h" > +#include "xe/xe_query.h" > > struct measurement { > int battery_index; > @@ -38,12 +39,15 @@ static bool prepare(struct measurement *m) > int ret, fd = -1; > > if (m->drm_device) { > - fd = open(m->drm_device, O_RDONLY); > + fd = open(m->drm_device, O_RDWR); > if (fd < 0) { > fprintf(stderr, "Unable to open drm device %s (%d)\n", > m->drm_device, -errno); > return false; > } > + > + if (is_xe_device(fd)) > + xe_device_get(fd); > } > > ret = igt_power_open(fd, &m->power, m->rapl_domain); > @@ -54,12 +58,20 @@ static bool prepare(struct measurement *m) > else > fprintf(stderr, "Unable to open rapl domain %s (%d)\n", > m->rapl_domain, ret); > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > > return false; > } > > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > } > > return true; > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka ` (4 preceding siblings ...) 2026-05-19 10:52 ` Zbigniew Kempczyński @ 2026-05-19 11:28 ` Kamil Konieczny 2026-05-19 11:47 ` Sebastian Brzezinka 2026-05-19 20:55 ` ✗ i915.CI.Full: failure for " Patchwork 6 siblings, 1 reply; 10+ messages in thread From: Kamil Konieczny @ 2026-05-19 11:28 UTC (permalink / raw) To: Sebastian Brzezinka Cc: igt-dev, ashutosh.dixit, Krzysztof Karas, Zbigniew Kempczyński Hi Sebastian, On 2026-05-18 at 14:32:24 +0200, Sebastian Brzezinka wrote: > Opening a DRM device with plain open() does not initialize the Xe device > cache. When igt_power_open() calls is_intel_dgfx() -> xe_has_vram(), it > uses find_in_cache() which asserts the cache entry exists, causing a crash > on Xe devices with: xe_query-CRITICAL: Failed assertion: xe_dev > > Fix this by opening the device with O_RDWR (required for DRM ioctls), > calling xe_device_get() for Xe devices to populate the cache before > calling igt_power_open(), and calling xe_device_put() on cleanup for > proper cache management. > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- > tools/igt_power.c | 18 +++++++++++++++--- > 1 file changed, 15 insertions(+), 3 deletions(-) > > diff --git a/tools/igt_power.c b/tools/igt_power.c > index 6dd180d34..11da0430b 100644 > --- a/tools/igt_power.c > +++ b/tools/igt_power.c > @@ -11,6 +11,7 @@ > > #include "drmtest.h" > #include "igt_power.h" > +#include "xe/xe_query.h" > While you fix it now, your change make it even more difficult to remove 'testing' dependancy in tools, see work item https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/16 IGT command line tools load redundant GUI libraries +cc Krzysztof and Zbigniew We can merge it for now but it is not ideal. Regards, Kamil > struct measurement { > int battery_index; > @@ -38,12 +39,15 @@ static bool prepare(struct measurement *m) > int ret, fd = -1; > > if (m->drm_device) { > - fd = open(m->drm_device, O_RDONLY); > + fd = open(m->drm_device, O_RDWR); > if (fd < 0) { > fprintf(stderr, "Unable to open drm device %s (%d)\n", > m->drm_device, -errno); > return false; > } > + > + if (is_xe_device(fd)) > + xe_device_get(fd); > } > > ret = igt_power_open(fd, &m->power, m->rapl_domain); > @@ -54,12 +58,20 @@ static bool prepare(struct measurement *m) > else > fprintf(stderr, "Unable to open rapl domain %s (%d)\n", > m->rapl_domain, ret); > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > > return false; > } > > - close(fd); > + if (fd >= 0) { > + if (is_xe_device(fd)) > + xe_device_put(fd); > + close(fd); > + } > } > > return true; > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-19 11:28 ` Kamil Konieczny @ 2026-05-19 11:47 ` Sebastian Brzezinka 0 siblings, 0 replies; 10+ messages in thread From: Sebastian Brzezinka @ 2026-05-19 11:47 UTC (permalink / raw) To: Kamil Konieczny, Sebastian Brzezinka Cc: igt-dev, ashutosh.dixit, Krzysztof Karas, Zbigniew Kempczyński Hi, On Tue May 19, 2026 at 1:28 PM CEST, Kamil Konieczny wrote: > Hi Sebastian, > On 2026-05-18 at 14:32:24 +0200, Sebastian Brzezinka wrote: >> Opening a DRM device with plain open() does not initialize the Xe device >> cache. When igt_power_open() calls is_intel_dgfx() -> xe_has_vram(), it >> uses find_in_cache() which asserts the cache entry exists, causing a crash >> on Xe devices with: xe_query-CRITICAL: Failed assertion: xe_dev >> >> Fix this by opening the device with O_RDWR (required for DRM ioctls), >> calling xe_device_get() for Xe devices to populate the cache before >> calling igt_power_open(), and calling xe_device_put() on cleanup for >> proper cache management. >> >> Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> >> --- >> tools/igt_power.c | 18 +++++++++++++++--- >> 1 file changed, 15 insertions(+), 3 deletions(-) >> >> diff --git a/tools/igt_power.c b/tools/igt_power.c >> index 6dd180d34..11da0430b 100644 >> --- a/tools/igt_power.c >> +++ b/tools/igt_power.c >> @@ -11,6 +11,7 @@ >> >> #include "drmtest.h" >> #include "igt_power.h" >> +#include "xe/xe_query.h" >> > > While you fix it now, your change make it even more difficult > to remove 'testing' dependancy in tools, see work item > https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/16 > IGT command line tools load redundant GUI libraries Yeah, I know. I can probably handle it in igt_power_open(), but I’m not sure it helps much with the dependency issue overall. Still, it should be a bit cleaner, so I’ll go with v2. -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for tools/igt_power: Fix crash on Xe devices by initializing xe_device cache 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka ` (5 preceding siblings ...) 2026-05-19 11:28 ` Kamil Konieczny @ 2026-05-19 20:55 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-05-19 20:55 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 139360 bytes --] == Series Details == Series: tools/igt_power: Fix crash on Xe devices by initializing xe_device cache URL : https://patchwork.freedesktop.org/series/166775/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18514_full -> IGTPW_15198_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15198_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15198_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_15198/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15198_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@most-busy-check-all@bcs0: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@bcs0.html #### Warnings #### * igt@kms_pm_rpm@cursor: - shard-dg1: [SKIP][3] ([i915#4077]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-18/igt@kms_pm_rpm@cursor.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_pm_rpm@cursor.html New tests --------- New tests have been introduced between CI_DRM_18514_full and IGTPW_15198_full: ### New IGT tests (1) ### * igt@perf@non-zero-reason@1-vecs0: - Statuses : 1 pass(s) - Exec time: [4.15] s Known issues ------------ Here are the changes found in IGTPW_15198_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][5] ([i915#15792]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-snb7/igt@fbdev@pan.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#7697]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#7697]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#13008]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][14] ([i915#13356]) +1 other test incomplete [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk5/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#5882]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4771]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#4525]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@gem_exec_fence@submit.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-15/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-3/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-14/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +10 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][38] ([i915#2190]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk1/igt@gem_lmem_swapping@verify.html - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#8289]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-15/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@write-display: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-14/igt@gem_partial_pwrite_pread@write-display.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][53] ([i915#2658]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-8/igt@gem_pread@exhaustion.html - shard-glk11: NOTRUN -> [WARN][54] ([i915#2658]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk11/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-glk: [PASS][61] -> [INCOMPLETE][62] ([i915#13809]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@gem_softpin@noreloc-s3.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk3/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#15657]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#3323]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-19/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][72] -> [INCOMPLETE][73] ([i915#13356]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@bitmasks: - shard-glk10: NOTRUN -> [SKIP][74] +97 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk10/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#14073]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-8/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#14118]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#15479]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][84] ([i915#15342]) +1 other test abort [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#8399]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8399]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#16080]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#16080]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [PASS][89] -> [INCOMPLETE][90] ([i915#13356]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@i915_pm_rpm@system-suspend.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk9/igt@i915_pm_rpm@system-suspend.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#6245]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#16079]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#5723]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][94] ([i915#12061]) +1 other test dmesg-fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@debugfs-reader: - shard-glk11: NOTRUN -> [INCOMPLETE][95] ([i915#4817]) +1 other test incomplete [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk11/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][96] -> [INCOMPLETE][97] ([i915#4817]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-rkl: [PASS][98] -> [ABORT][99] ([i915#15140]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@i915_suspend@forcewake.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#7707]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#5286]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#5286]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#15733] / [i915#5138]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3638]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#3828]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][110] +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#12313]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544] / [i915#6095]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14098] / [i915#6095]) +39 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6095]) +19 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#12313]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][118] ([i915#12313]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#12313]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#12805]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#6095]) +18 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][123] -> [INCOMPLETE][124] ([i915#15582]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +84 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#6095]) +34 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#12313]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +64 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#6095]) +62 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][131] +556 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +178 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#16017]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-glk11: NOTRUN -> [SKIP][138] +76 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#14544] / [i915#7828]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#12655] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#15330]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#15330] / [i915#3116]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#15330]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#15865]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#15865]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_content_protection@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#15865]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_content_protection@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#15865]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_content_protection@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#15865]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#4423]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#8814]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#13049]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][155] -> [FAIL][156] ([i915#13566]) +5 other tests fail [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3555]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][158] ([i915#13566]) +2 other tests fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#8814]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][162] ([i915#13566]) +3 other tests fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][163] -> [FAIL][164] ([i915#13566]) +3 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#4103]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#4103]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#13046] / [i915#5354]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg1: NOTRUN -> [SKIP][168] +25 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9809]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#9723]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#9723]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3804]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3804]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev@basic: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#1257]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#13707]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13707]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8812]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8812]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3840] / [i915#9053]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#16084]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#16081]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#658]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#9934]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][188] ([i915#12745] / [i915#4839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk10: NOTRUN -> [INCOMPLETE][189] ([i915#12745]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9934]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9934]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) +7 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9934]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg1: [PASS][195] -> [DMESG-WARN][196] ([i915#4423]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#15643]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#15643]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#15643]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#15643]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#15643]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#15643]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15643] / [i915#5190]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#15990] / [i915#8708]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#15990] / [i915#8708]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#15990] / [i915#8708]) +16 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#1825]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-glk: [PASS][208] -> [SKIP][209] +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk4/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#15989]) +13 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#15989]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][212] +102 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][213] +80 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#15989]) +17 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#15104] / [i915#15990]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#15104] / [i915#15990]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#15102]) +23 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][218] +70 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#15102] / [i915#3023]) +21 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#5439]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#15990]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#15102]) +34 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15990]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#15102]) +9 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-blt: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#14544] / [i915#15102]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#15989]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#15990]) +20 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#15989]) +22 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#15989]) +12 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#15991]) +13 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-rkl: [PASS][231] -> [SKIP][232] ([i915#15989]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15991] / [i915#5354]) +17 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#15991] / [i915#1825]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#15102]) +22 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#15102]) +37 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15991]) +33 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#16012] / [i915#3555] / [i915#8228]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#16012]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#16012]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#16076]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#16011]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#16012]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-8/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#16012]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#16011] / [i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-10/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#16011] / [i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#16011] / [i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#16011]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#16011]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#16011]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#16011] / [i915#3555] / [i915#8228]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_hdr@static-toggle@pipe-a-edp-1-xrgb16161616f: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#16011]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@kms_hdr@static-toggle@pipe-a-edp-1-xrgb16161616f.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#16011]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-10/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15460]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#15459]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#13688]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#15459]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#15459]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15458]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#15458]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15458]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15458]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#15458]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#15815]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#6301]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][269] -> [INCOMPLETE][270] ([i915#12756] / [i915#13476]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][272] ([i915#13476]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14544] / [i915#14712]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#15709]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#15608]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#15709]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15709]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15709]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#15709]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#15608]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#15608]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15608]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#15709]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][284] ([i915#12178]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][285] ([i915#7862]) +1 other test fail [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8821]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-14/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-7/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8821]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#13958]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#13958]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#13958]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-x.html - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#13958]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#15329]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15329]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#15329]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15329] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15329]) +8 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#12343] / [i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_pm_backlight@bad-brightness.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#12343] / [i915#5354]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#12343] / [i915#9812]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-8/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#12343] / [i915#9812]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#12343] / [i915#5354]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#15948]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3828]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#15739]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#8430]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#15073]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#15073]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][310] -> [SKIP][311] ([i915#15073]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: [PASS][312] -> [SKIP][313] ([i915#15073]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#15073]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][315] +8 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#4077]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_pm_rpm@pm-caching.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: NOTRUN -> [INCOMPLETE][317] ([i915#14419]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#6524] / [i915#6805]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#11520]) +6 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][321] ([i915#11520]) +15 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][322] ([i915#11520]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][323] ([i915#11520]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][324] ([i915#11520]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][325] ([i915#11520]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#11520] / [i915#14544]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +9 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#11520]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9683]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9683]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9732]) +14 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +6 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#9688]) +6 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +22 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +21 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +13 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_psr@psr-cursor-render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#15949]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#5190]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#5289]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#12755] / [i915#15867]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][343] ([i915#13179]) +1 other test abort [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk6/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][344] -> [FAIL][345] ([i915#15106]) +2 other tests fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-7/igt@kms_setmode@basic.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_setmode@basic.html - shard-mtlp: [PASS][346] -> [FAIL][347] ([i915#15106]) +1 other test fail [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@kms_setmode@basic.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@kms_setmode@basic.html - shard-dg2: [PASS][348] -> [FAIL][349] ([i915#15106]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-7/igt@kms_setmode@basic.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#3555]) +5 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][351] ([i915#10959]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#15243] / [i915#3555]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#11920]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#9906]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#9906]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][356] +178 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-snb7/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][357] ([i915#4349]) +4 other tests fail [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][358] ([i915#15778]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk5/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-check-all: - shard-mtlp: [PASS][359] -> [FAIL][360] ([i915#15997]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-8/igt@perf_pmu@most-busy-check-all.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-8/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#8516]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-dg2: [PASS][362] -> [ABORT][363] ([i915#15131]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-3/igt@perf_pmu@rc6-suspend.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-10/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][364] -> [INCOMPLETE][365] ([i915#13520]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@perf_pmu@rc6-suspend.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#8516]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#3708] / [i915#4077]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-3/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#3708] / [i915#4077]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#3291] / [i915#3708]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#3708]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-7/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][372] ([i915#3708]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-19/igt@prime_vgem@fence-read-hang.html - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#9917]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9917]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#9917]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [SKIP][378] ([i915#16066]) +9 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#16066]) +9 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-tglu: [FAIL][380] ([i915#15816]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@gem_exec_big@single.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@gem_exec_big@single.html * igt@i915_selftest@live: - shard-tglu: [DMESG-FAIL][382] -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@i915_selftest@live.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@i915_selftest@live.html - shard-mtlp: [DMESG-FAIL][384] ([i915#15560]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@i915_selftest@live.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - shard-tglu: [DMESG-FAIL][386] ([i915#16077]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@i915_selftest@live@gem_contexts.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@i915_selftest@live@gem_contexts.html - shard-mtlp: [DMESG-FAIL][388] ([i915#16077]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@fence-restore-untiled: - shard-snb: [ABORT][390] ([i915#15840]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-snb6/igt@i915_suspend@fence-restore-untiled.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-snb4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@too-wide: - shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_addfb_basic@too-wide.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_addfb_basic@too-wide.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-glk: [FAIL][394] ([i915#14888]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][396] ([i915#13566]) -> [PASS][397] +2 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][398] ([i915#13566]) -> [PASS][399] +3 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][400] ([i915#9878]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [FAIL][402] ([i915#13027]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg1: [FAIL][404] ([i915#13027]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-12/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [SKIP][406] ([i915#15672]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [INCOMPLETE][408] ([i915#10056]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][410] ([i915#15989]) -> [PASS][411] +4 other tests pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [SKIP][412] -> [PASS][413] +14 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][414] ([i915#13030]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][416] ([i915#15073]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: [FAIL][418] -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-2/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@busy-idle: - shard-mtlp: [FAIL][420] ([i915#4349]) -> [PASS][421] +4 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-3/igt@perf_pmu@busy-idle.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-mtlp-5/igt@perf_pmu@busy-idle.html #### Warnings #### * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][422] ([i915#3281]) -> [SKIP][423] ([i915#14544] / [i915#3281]) +4 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#6335]) -> [SKIP][425] ([i915#6335]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][426] ([i915#6344]) -> [SKIP][427] ([i915#14544] / [i915#6344]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: [SKIP][428] ([i915#14544] / [i915#3281]) -> [SKIP][429] ([i915#3281]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#4613]) -> [SKIP][431] ([i915#4613]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][432] ([i915#3282]) -> [SKIP][433] ([i915#14544] / [i915#3282]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@gem_readwrite@beyond-eob.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_readwrite@beyond-eob.html * igt@gem_tiled_pread_pwrite: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_tiled_pread_pwrite.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][436] ([i915#3297]) -> [SKIP][437] ([i915#14544] / [i915#3297]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#3297]) -> [SKIP][439] ([i915#3297]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#2527]) -> [SKIP][441] ([i915#2527]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][442] ([i915#2527]) -> [SKIP][443] ([i915#14544] / [i915#2527]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][444] ([i915#5286]) -> [SKIP][445] ([i915#14544] / [i915#5286]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#5286]) -> [SKIP][447] ([i915#5286]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][448] ([i915#3828]) -> [SKIP][449] ([i915#14544] / [i915#3828]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#3638]) -> [SKIP][451] ([i915#3638]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: [SKIP][452] ([i915#4423] / [i915#4538]) -> [SKIP][453] ([i915#4538]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][454] ([i915#14098] / [i915#6095]) -> [SKIP][455] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][456] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][457] ([i915#14098] / [i915#6095]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg1: [SKIP][458] ([i915#6095]) -> [SKIP][459] ([i915#4423] / [i915#6095]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: [INCOMPLETE][460] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][461] ([i915#15582]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_chamelium_color@degamma: - shard-rkl: [SKIP][462] ([i915#14544]) -> [SKIP][463] +29 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_chamelium_color@degamma.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][464] ([i915#11151] / [i915#7828]) -> [SKIP][465] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][466] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][467] ([i915#11151] / [i915#7828]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][468] ([i915#15330] / [i915#3116]) -> [SKIP][469] ([i915#14544] / [i915#15330] / [i915#3116]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#15330]) -> [SKIP][471] ([i915#15330]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#3555]) -> [SKIP][473] ([i915#3555]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#9067]) -> [SKIP][475] ([i915#9067]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][476] ([i915#13707]) -> [SKIP][477] ([i915#13707] / [i915#14544]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#3840]) -> [SKIP][479] ([i915#3840]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][481] ([i915#3555] / [i915#3840]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][482] ([i915#9934]) -> [SKIP][483] ([i915#14544] / [i915#9934]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#9934]) -> [SKIP][485] ([i915#9934]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][486] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][487] ([i915#12314] / [i915#12745] / [i915#4839]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][488] ([i915#12745]) -> [INCOMPLETE][489] ([i915#12314] / [i915#12745]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][490] ([i915#15643]) -> [SKIP][491] ([i915#14544] / [i915#15643]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#15643]) -> [SKIP][493] ([i915#15643]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][494] ([i915#1825]) -> [SKIP][495] ([i915#14544] / [i915#1825]) +2 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) +21 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][498] ([i915#15102]) -> [SKIP][499] ([i915#10433] / [i915#15102]) +2 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#1825]) -> [SKIP][501] ([i915#1825]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-rkl: [SKIP][502] ([i915#15102] / [i915#3023]) -> [SKIP][503] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg1: [SKIP][504] ([i915#15102]) -> [SKIP][505] ([i915#15102] / [i915#4423]) +2 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#15102]) -> [SKIP][507] ([i915#15102]) +7 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: [SKIP][508] -> [SKIP][509] ([i915#4423]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][511] ([i915#15102] / [i915#3023]) +2 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg1: [SKIP][512] ([i915#15102] / [i915#4423]) -> [SKIP][513] ([i915#15102]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-slowdraw.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: [SKIP][514] ([i915#15102]) -> [SKIP][515] ([i915#14544] / [i915#15102]) +10 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][516] ([i915#16011] / [i915#3555] / [i915#8228]) -> [INCOMPLETE][517] ([i915#15436]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: [SKIP][518] ([i915#16011]) -> [INCOMPLETE][519] ([i915#15436]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-rkl: [SKIP][520] ([i915#15709]) -> [SKIP][521] ([i915#14544] / [i915#15709]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#15709]) -> [SKIP][523] ([i915#15709]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][524] ([i915#3828]) -> [SKIP][525] ([i915#9340]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][526] ([i915#8430]) -> [SKIP][527] ([i915#14544] / [i915#8430]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_prime@d3hot: - shard-dg1: [SKIP][528] ([i915#4423] / [i915#6524]) -> [SKIP][529] ([i915#6524]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_prime@d3hot.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-16/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][530] ([i915#11520]) -> [SKIP][531] ([i915#11520] / [i915#14544]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][532] ([i915#11520] / [i915#14544]) -> [SKIP][533] ([i915#11520]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-rkl: [SKIP][534] ([i915#1072] / [i915#9732]) -> [SKIP][535] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_psr@pr-primary-mmap-gtt.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr2-no-drrs: - shard-dg1: [SKIP][536] ([i915#1072] / [i915#9732]) -> [SKIP][537] ([i915#1072] / [i915#4423] / [i915#9732]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-17/igt@kms_psr@psr2-no-drrs.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-13/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: [SKIP][538] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#9732]) +4 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-4/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: [SKIP][540] ([i915#15949]) -> [SKIP][541] ([i915#15949] / [i915#4423]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][542] ([i915#3555]) -> [SKIP][543] ([i915#14544] / [i915#3555]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][544] ([i915#9906]) -> [SKIP][545] ([i915#14544] / [i915#9906]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@module-unload: - shard-tglu: [INCOMPLETE][546] ([i915#13520]) -> [ABORT][547] ([i915#15778]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-7/igt@perf_pmu@module-unload.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-tglu-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][548] ([i915#3708]) -> [SKIP][549] ([i915#14544] / [i915#3708]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-1/igt@prime_vgem@fence-write-hang.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [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#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [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#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [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#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [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#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16076 [i915#16077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16077 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [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#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#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_8918 -> IGTPW_15198 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18514: ac60a9dd73e01e3f22825241c2f0498968cb2356 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15198: 11321a7d760aa341bcbca466fe49fcb5bd7277fb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8918: 8918 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15198/index.html [-- Attachment #2: Type: text/html, Size: 184606 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-05-19 20:56 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-18 12:32 [PATCH] tools/igt_power: Fix crash on Xe devices by initializing xe_device cache Sebastian Brzezinka 2026-05-19 1:22 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-05-19 1:43 ` ✓ i915.CI.BAT: " Patchwork 2026-05-19 9:19 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-19 10:23 ` [PATCH] " Krzysztof Karas 2026-05-19 10:28 ` Sebastian Brzezinka 2026-05-19 10:52 ` Zbigniew Kempczyński 2026-05-19 11:28 ` Kamil Konieczny 2026-05-19 11:47 ` Sebastian Brzezinka 2026-05-19 20:55 ` ✗ i915.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox