* [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled
@ 2024-10-23 6:07 Jouni Högander
2024-10-23 7:59 ` ✓ Fi.CI.BAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jouni Högander @ 2024-10-23 6:07 UTC (permalink / raw)
To: igt-dev; +Cc: Jouni Högander
PTL doesn't support x tiled format and older platforms (display version <
9) do not have FBC support for linear. There is no specific reason to use x
tiled format in this testcase: switch to linear format except on older
platforms.
v2: use x tiled for display version < 9
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
tests/intel/kms_fbcon_fbt.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
index 6d134ea62..ab4819d23 100644
--- a/tests/intel/kms_fbcon_fbt.c
+++ b/tests/intel/kms_fbcon_fbt.c
@@ -221,7 +221,9 @@ static void set_mode_for_one_screen(struct drm_info *drm,
buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
- I915_FORMAT_MOD_X_TILED, &drm->fb);
+ intel_display_ver(intel_get_drm_devid(drm->fd)) < 9 ?
+ I915_FORMAT_MOD_X_TILED : DRM_FORMAT_MOD_LINEAR,
+ &drm->fb);
igt_draw_fill_fb(drm->fd, &drm->fb, 0xFF);
igt_info("Setting %dx%d mode for %s connector\n",
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
@ 2024-10-23 7:59 ` Patchwork
2024-10-23 8:07 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-10-23 7:59 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3210 bytes --]
== Series Details ==
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL : https://patchwork.freedesktop.org/series/140242/
State : success
== Summary ==
CI Bug Log - changes from IGT_8082 -> IGTPW_11964
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11964 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [INCOMPLETE][1] ([i915#12133] / [i915#9413]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/bat-twl-1/igt@i915_selftest@live.html
- bat-dg2-9: [ABORT][3] ([i915#12133]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/bat-dg2-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@client:
- bat-dg2-9: [ABORT][5] ([i915#12305]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/bat-dg2-9/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][7] ([i915#9413]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][9] ([i915#11621]) -> [PASS][10] +132 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8082 -> IGTPW_11964
* Linux: CI_DRM_15576 -> CI_DRM_15581
CI-20190529: 20190529
CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15581: 8a7ac0227c7c3fe2fcb01a933df5b9c49c7f2832 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11964: 34e16667c570394de3f142312912ecb283cd8119 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/index.html
[-- Attachment #2: Type: text/html, Size: 4057 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
2024-10-23 7:59 ` ✓ Fi.CI.BAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2) Patchwork
@ 2024-10-23 8:07 ` Patchwork
2024-10-23 11:33 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-10-23 8:07 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4533 bytes --]
== Series Details ==
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL : https://patchwork.freedesktop.org/series/140242/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11964_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11964_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2871])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][3] -> [FAIL][4] ([Intel XE#886]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-adlp-7: [PASS][5] -> [SKIP][6] ([Intel XE#455]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-primary-page-flip@edp-1:
- bat-adlp-7: [PASS][7] -> [DMESG-FAIL][8] ([Intel XE#2871]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#2874]) +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][11] ([Intel XE#2496]) -> [PASS][12] +31 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][13] ([Intel XE#1861]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [INCOMPLETE][15] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496
[Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11964
IGTPW_11964: 34e16667c570394de3f142312912ecb283cd8119 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/index.html
[-- Attachment #2: Type: text/html, Size: 5418 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
2024-10-23 7:59 ` ✓ Fi.CI.BAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2) Patchwork
2024-10-23 8:07 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-23 11:33 ` Patchwork
2024-10-25 11:45 ` Hogander, Jouni
2024-10-23 12:03 ` ✗ Fi.CI.IGT: " Patchwork
2024-10-25 11:38 ` [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Juha-Pekka Heikkila
4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2024-10-23 11:33 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 88335 bytes --]
== Series Details ==
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL : https://patchwork.freedesktop.org/series/140242/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11964_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11964_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11964_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11964_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@torture-bo@pipe-b:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo@pipe-b.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-b.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html
Known issues
------------
Here are the changes found in XEIGTPW_11964_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#1885])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@core_hotunplug@hotunbind-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html
- shard-dg2-set2: [PASS][7] -> [SKIP][8] ([Intel XE#1885])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@core_hotunplug@hotunbind-rebind.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#1701]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][11] -> [FAIL][12] ([Intel XE#1426]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2231]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-dg2-set2: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#877])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#2890]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1407])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2669]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#616]) +8 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +27 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1195]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#306])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#308])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#2791] / [Intel XE#877])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#3184])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3:
- shard-bmg: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#877]) +1 other test dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1135])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#301]) +4 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][47] -> [FAIL][48] ([Intel XE#301]) +2 other tests fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#1204])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#886]) +5 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][54] ([Intel XE#886]) +2 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#2351] / [Intel XE#2890])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2231] / [Intel XE#2890])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1401]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#1491]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([i915#5274])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#656]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#651]) +12 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2351] / [Intel XE#2890])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#651]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653]) +16 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2890]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2927])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_lease@possible-crtcs-filtering:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#3007]) +14 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_lease@possible-crtcs-filtering.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_lease@possible-crtcs-filtering.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#356])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#309])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2763]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#908])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#1430])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#3129])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2893])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1489]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1128])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1437])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#2883]) +2 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#899])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#2159]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#2443]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_vrr@flip-basic.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#756])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_drm_fdinfo@utilization-others-idle:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#2667]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_drm_fdinfo@utilization-others-idle.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@xe_drm_fdinfo@utilization-others-idle.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2905]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2905]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#1473]) +1 other test incomplete
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-small-multi-vm:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][106] ([Intel XE#1195] / [Intel XE#1473])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@xe_evict@evict-beng-threads-small-multi-vm.html
* igt@xe_evict@evict-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#688])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][108] ([Intel XE#1473])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1392]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#1130]) +27 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_exec_basic@once-userptr-invalidate-race.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +37 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#288]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#2105])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#2977]) +1 other test fail
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_gt_freq@freq_reset:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1130]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_gt_freq@freq_reset.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: NOTRUN -> [DMESG-WARN][120] ([Intel XE#3184])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2541]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1420] / [Intel XE#2838])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][123] ([Intel XE#1173]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#944]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_query@multigpu-query-gt-list.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [SKIP][127] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic@atomic-invalid-params:
- shard-dg2-set2: [SKIP][129] ([Intel XE#2423] / [i915#2575]) -> [PASS][130] +15 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_atomic@atomic-invalid-params.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][131] ([Intel XE#2231]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-lnl: [FAIL][133] ([Intel XE#1659]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-lnl: [DMESG-WARN][135] ([Intel XE#2055]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size:
- shard-lnl: [FAIL][137] ([Intel XE#1541]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-dg2-set2: [DMESG-WARN][139] -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@torture-move@pipe-b.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][141] ([Intel XE#301]) -> [PASS][142] +9 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][143] ([Intel XE#301]) -> [PASS][144] +2 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][145] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#886]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [FAIL][147] ([Intel XE#1204]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][149] ([Intel XE#301]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][151] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][153] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-dp4:
- shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1195]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_flip@flip-vs-suspend@b-dp4.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [SKIP][157] ([Intel XE#3007]) -> [PASS][158] +14 other tests pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][159] ([Intel XE#886]) -> [PASS][160] +6 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][161] ([Intel XE#2890]) -> [PASS][162] +2 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [FAIL][163] ([Intel XE#3217]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-lnl: [FAIL][165] ([Intel XE#2948]) -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][167] ([Intel XE#2443]) -> [PASS][168] +3 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@flipline.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_vrr@flipline.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [FAIL][169] ([Intel XE#1000]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [SKIP][171] ([Intel XE#1130]) -> [PASS][172] +18 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-lnl: [FAIL][173] ([Intel XE#2754]) -> [PASS][174] +1 other test pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_pat@pat-index-xelp:
- shard-dg2-set2: [SKIP][175] ([Intel XE#1130]) -> [PASS][176] +16 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pat@pat-index-xelp.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][177] ([Intel XE#1794]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][179] ([Intel XE#2233]) -> [SKIP][180] ([Intel XE#3007])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-dg2-set2: [SKIP][181] ([Intel XE#623]) -> [SKIP][182] ([Intel XE#2423] / [i915#2575])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: [SKIP][183] ([Intel XE#455]) -> [SKIP][184] ([Intel XE#2423] / [i915#2575])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-bmg: [SKIP][185] ([Intel XE#2370]) -> [SKIP][186] ([Intel XE#3007])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: [SKIP][187] ([Intel XE#2327]) -> [SKIP][188] ([Intel XE#2231] / [Intel XE#2890])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][189] ([Intel XE#316]) -> [SKIP][190] ([Intel XE#2351] / [Intel XE#2890])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-bmg: [SKIP][191] ([Intel XE#2231]) -> [SKIP][192] ([Intel XE#1124])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][193] ([Intel XE#1124]) -> [SKIP][194] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
- shard-dg2-set2: [SKIP][195] ([Intel XE#1124]) -> [SKIP][196] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][197] ([Intel XE#2231]) -> [SKIP][198] ([Intel XE#2328])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
- shard-dg2-set2: [SKIP][199] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][200] ([Intel XE#619])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][201] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][202] ([Intel XE#3007])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: [SKIP][203] ([Intel XE#2191]) -> [SKIP][204] ([Intel XE#2423] / [i915#2575])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-bmg: [SKIP][205] ([Intel XE#367]) -> [SKIP][206] ([Intel XE#3007])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][207] ([Intel XE#3007]) -> [SKIP][208] ([Intel XE#367])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: [SKIP][209] ([Intel XE#2423] / [i915#2575]) -> [SKIP][210] ([Intel XE#367])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: [SKIP][211] ([Intel XE#2887]) -> [SKIP][212] ([Intel XE#2231]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
- shard-dg2-set2: [SKIP][213] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][214] ([Intel XE#2890]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: [SKIP][215] ([Intel XE#2887]) -> [SKIP][216] ([Intel XE#2231] / [Intel XE#2890])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
- shard-dg2-set2: [SKIP][217] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][218] ([Intel XE#2351] / [Intel XE#2890])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-bmg: [SKIP][219] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][220] ([Intel XE#2887])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
- shard-dg2-set2: [SKIP][221] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#455] / [Intel XE#787])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: [SKIP][223] ([Intel XE#2325]) -> [SKIP][224] ([Intel XE#3007])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_chamelium_color@ctm-max.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html
- shard-dg2-set2: [SKIP][225] ([Intel XE#306]) -> [SKIP][226] ([Intel XE#2423] / [i915#2575])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][227] ([Intel XE#3007]) -> [SKIP][228] ([Intel XE#2252])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
- shard-dg2-set2: [SKIP][229] ([Intel XE#2423] / [i915#2575]) -> [SKIP][230] ([Intel XE#373]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][231] ([Intel XE#373]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
- shard-bmg: [SKIP][233] ([Intel XE#2252]) -> [SKIP][234] ([Intel XE#3007]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#455])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
- shard-bmg: [SKIP][237] ([Intel XE#3007]) -> [SKIP][238] ([Intel XE#2341])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][239] ([Intel XE#1188]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_content_protection@uevent.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_content_protection@uevent.html
- shard-bmg: [DMESG-FAIL][241] ([Intel XE#3177]) -> [SKIP][242] ([Intel XE#3007])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_content_protection@uevent.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][243] ([Intel XE#2321]) -> [SKIP][244] ([Intel XE#3007])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg2-set2: [SKIP][245] ([Intel XE#308]) -> [SKIP][246] ([Intel XE#2423] / [i915#2575])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x170.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][247] ([Intel XE#323]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: [SKIP][249] ([Intel XE#2286]) -> [SKIP][250] ([Intel XE#3007])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: [SKIP][251] ([Intel XE#2244]) -> [SKIP][252] ([Intel XE#2231] / [Intel XE#2890])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_dsc@dsc-basic.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_dsc@dsc-basic.html
- shard-dg2-set2: [SKIP][253] ([Intel XE#455]) -> [SKIP][254] ([Intel XE#2351])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][255] ([Intel XE#2890]) -> [SKIP][256] ([Intel XE#455])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-bmg: [SKIP][257] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][258] ([Intel XE#2244])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [FAIL][259] ([Intel XE#886]) -> [FAIL][260] ([Intel XE#3149] / [Intel XE#886])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
- shard-lnl: [FAIL][261] ([Intel XE#3036]) -> [FAIL][262] ([Intel XE#886])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][263] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][264] ([Intel XE#2231] / [Intel XE#2890])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2-set2: [SKIP][265] ([Intel XE#455]) -> [SKIP][266] ([Intel XE#2890]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][267] ([Intel XE#2311]) -> [SKIP][268] ([Intel XE#2231] / [Intel XE#2890]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][269] ([Intel XE#651]) -> [SKIP][270] ([Intel XE#2351] / [Intel XE#2890]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: [SKIP][271] ([Intel XE#2231]) -> [SKIP][272] ([Intel XE#2311])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [FAIL][273] ([Intel XE#2333]) -> [SKIP][274] ([Intel XE#2231]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][275] ([Intel XE#2311]) -> [SKIP][276] ([Intel XE#2231]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][277] ([Intel XE#2890]) -> [SKIP][278] ([Intel XE#651]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][279] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][280] ([Intel XE#2311])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][281] ([Intel XE#653]) -> [SKIP][282] ([Intel XE#2351] / [Intel XE#2890])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: [SKIP][283] ([Intel XE#653]) -> [SKIP][284] ([Intel XE#2890]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [FAIL][285] ([Intel XE#2333]) -> [SKIP][286] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][287] ([Intel XE#2231]) -> [SKIP][288] ([Intel XE#2313]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg2-set2: [SKIP][289] ([Intel XE#2890]) -> [SKIP][290] ([Intel XE#653]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][291] ([Intel XE#2313]) -> [SKIP][292] ([Intel XE#2231]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][293] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][294] ([Intel XE#653])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][295] ([Intel XE#2313]) -> [SKIP][296] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-bmg: [SKIP][297] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][298] ([Intel XE#2313]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: [SKIP][299] ([Intel XE#3007]) -> [SKIP][300] ([Intel XE#2340])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2890]) -> [SKIP][302] ([Intel XE#346])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [DMESG-WARN][303] ([Intel XE#3177]) -> [SKIP][304] ([Intel XE#3007]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][305] ([Intel XE#2392]) -> [SKIP][306] ([Intel XE#2231] / [Intel XE#2890])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][307] ([Intel XE#2890]) -> [SKIP][308] ([Intel XE#1489]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][309] ([Intel XE#2231]) -> [SKIP][310] ([Intel XE#1489]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][311] ([Intel XE#1489]) -> [SKIP][312] ([Intel XE#2231]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-dg2-set2: [SKIP][313] ([Intel XE#1489]) -> [SKIP][314] ([Intel XE#2890]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-bmg: [SKIP][315] ([Intel XE#2231]) -> [SKIP][316] ([Intel XE#2234] / [Intel XE#2850])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_psr@fbc-pr-primary-render.html
- shard-dg2-set2: [SKIP][317] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][318] ([Intel XE#2850] / [Intel XE#929])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-bmg: [SKIP][319] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][320] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html
- shard-dg2-set2: [SKIP][321] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][322] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-blt.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-no-drrs:
- shard-bmg: [SKIP][323] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][324] ([Intel XE#2234] / [Intel XE#2850])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_psr@pr-no-drrs.html
- shard-dg2-set2: [SKIP][325] ([Intel XE#2890]) -> [SKIP][326] ([Intel XE#2850] / [Intel XE#929])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: [SKIP][327] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][328] ([Intel XE#2231])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_psr@psr-sprite-plane-move.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][329] ([Intel XE#2168]) -> [SKIP][330] ([Intel XE#3007])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_vrr@cmrr.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_vrr@cmrr.html
- shard-dg2-set2: [SKIP][331] ([Intel XE#2168]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_vrr@cmrr.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_vrr@cmrr.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [FAIL][333] ([Intel XE#1050]) -> [SKIP][334] ([Intel XE#1130])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html
- shard-dg2-set2: [FAIL][335] ([Intel XE#1050]) -> [SKIP][336] ([Intel XE#1130])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_compute@ccs-mode-basic.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][337] ([Intel XE#1126]) -> [SKIP][338] ([Intel XE#1130])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2905]) -> [SKIP][340] ([Intel XE#1130]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_eudebug@multiple-sessions.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug@read-metadata:
- shard-bmg: [SKIP][341] ([Intel XE#2905]) -> [SKIP][342] ([Intel XE#1130]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_eudebug@read-metadata.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-bmg: [SKIP][343] ([Intel XE#1130]) -> [SKIP][344] ([Intel XE#2905])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [FAIL][345] ([Intel XE#2364]) -> [SKIP][346] ([Intel XE#1130])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html
- shard-dg2-set2: [FAIL][347] ([Intel XE#1600]) -> [SKIP][348] ([Intel XE#1130])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [SKIP][349] ([Intel XE#2322]) -> [SKIP][350] ([Intel XE#1130]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
- shard-bmg: [SKIP][351] ([Intel XE#1130]) -> [SKIP][352] ([Intel XE#2322])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch:
- shard-dg2-set2: [SKIP][353] ([Intel XE#288]) -> [SKIP][354] ([Intel XE#1130]) +3 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html
* igt@xe_exec_fault_mode@many-userptr-imm:
- shard-dg2-set2: [SKIP][355] ([Intel XE#1130]) -> [SKIP][356] ([Intel XE#288]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][357] ([Intel XE#1130]) -> [SKIP][358] ([Intel XE#2237] / [Intel XE#2245])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][359] ([Intel XE#2236]) -> [SKIP][360] ([Intel XE#1130])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: [SKIP][361] ([Intel XE#979]) -> [SKIP][362] ([Intel XE#1130])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#2284])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: [SKIP][365] ([Intel XE#1130]) -> [SKIP][366] ([Intel XE#2284])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pm@d3cold-mocs.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][367] ([Intel XE#944]) -> [SKIP][368] ([Intel XE#1130])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
- shard-dg2-set2: [SKIP][369] ([Intel XE#944]) -> [SKIP][370] ([Intel XE#1130])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][371] ([Intel XE#1130]) -> [SKIP][372] ([Intel XE#944])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
- shard-bmg: [SKIP][373] ([Intel XE#1130]) -> [SKIP][374] ([Intel XE#944])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2977
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3036]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3036
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3129
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3217]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3217
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8082 -> IGTPW_11964
IGTPW_11964: 34e16667c570394de3f142312912ecb283cd8119 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/index.html
[-- Attachment #2: Type: text/html, Size: 110984 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
` (2 preceding siblings ...)
2024-10-23 11:33 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-23 12:03 ` Patchwork
2024-10-25 11:45 ` Hogander, Jouni
2024-10-25 11:38 ` [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Juha-Pekka Heikkila
4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2024-10-23 12:03 UTC (permalink / raw)
To: Hogander, Jouni; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100283 bytes --]
== Series Details ==
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL : https://patchwork.freedesktop.org/series/140242/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15581_full -> IGTPW_11964_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11964_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11964_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_11964/index.html
Participating hosts (9 -> 8)
------------------------------
Additional (1): shard-tglu-1
Missing (2): pig-kbl-iris shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11964_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_fdinfo@memory-info-resident:
- shard-dg1: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@drm_fdinfo@memory-info-resident.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@drm_fdinfo@memory-info-resident.html
* igt@gem_ctx_persistence@smoketest:
- shard-mtlp: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-8/igt@gem_ctx_persistence@smoketest.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@gem_ctx_persistence@smoketest.html
* igt@i915_selftest@mock@fence:
- shard-snb: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@i915_selftest@mock@fence.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@i915_selftest@mock@fence.html
* igt@i915_suspend@sysfs-reader:
- shard-tglu: [PASS][7] -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-9/igt@i915_suspend@sysfs-reader.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-6/igt@i915_suspend@sysfs-reader.html
#### Warnings ####
* igt@i915_selftest@mock:
- shard-snb: [DMESG-WARN][9] ([i915#9311]) -> [INCOMPLETE][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@i915_selftest@mock.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@i915_selftest@mock.html
Known issues
------------
Here are the changes found in IGTPW_11964_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@drm_fdinfo@busy-idle@bcs0.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_busy@close-race:
- shard-dg2: NOTRUN -> [FAIL][15] ([i915#12297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@gem_busy@close-race.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_compute@compute-square:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#9310])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][23] -> [FAIL][24] ([i915#12031])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2846])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu-1: NOTRUN -> [FAIL][36] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3711])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#5107])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_exec_reloc@basic-write-wc-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][48] ([i915#12296]) +7 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][51] -> [INCOMPLETE][52] ([i915#11441]) +1 other test incomplete
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg1: [PASS][53] -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#284])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +10 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +11 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pwrite@basic-self:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#3323])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gen9_exec_parse@bb-start-param.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][98] -> [ABORT][99] ([i915#9820])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][100] -> [ABORT][101] ([i915#9820])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#8399])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][103] ([i915#2681]) +1 other test warn
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][104] -> [INCOMPLETE][105] ([i915#7790])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@i915_pm_rps@reset.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb2/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#4387])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) +1 other test dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#7707])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@kms_addfb_basic@clobberred-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#8709]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#8709]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#8709]) +11 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#9531])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition:
- shard-dg1: [PASS][118] -> [DMESG-WARN][119] ([i915#4423])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-18/igt@kms_atomic_transition@modeset-transition.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#5286])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][126] +14 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190] / [i915#9197]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6187])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-snb: NOTRUN -> [SKIP][133] +46 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +171 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#6095]) +96 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +29 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +49 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +14 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +68 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#7828]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#7828]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][145] +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#3116] / [i915#3299])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-dg2: [PASS][154] -> [SKIP][155] ([i915#9197]) +11 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8814])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#11453] / [i915#3359])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#11453] / [i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-dg1: NOTRUN -> [DMESG-WARN][161] ([i915#4423])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11453] / [i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#3555]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][165] +9 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3469])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#9337])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#8381])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8381])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9934]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
- shard-snb: [PASS][184] -> [FAIL][185] ([i915#2122]) +3 other tests fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3637]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#3966])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-tglu: [PASS][188] -> [FAIL][189] ([i915#2122]) +2 other tests fail
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2: [PASS][190] -> [FAIL][191] ([i915#10826])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_flip@modeset-vs-vblank-race.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@modeset-vs-vblank-race@b-dp3:
- shard-dg2: NOTRUN -> [FAIL][192] ([i915#10826])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_flip@modeset-vs-vblank-race@b-dp3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#8813]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672] / [i915#3555])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
- shard-dg2: [PASS][206] -> [SKIP][207] ([i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8708]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#5354]) +34 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][211] +35 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1825]) +7 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [PASS][213] -> [SKIP][214] ([i915#5354]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#1825]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
- shard-tglu-1: NOTRUN -> [SKIP][216] +56 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#10433] / [i915#3458])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +13 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#8708]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][220] +36 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#8708]) +16 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3023]) +7 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3458]) +18 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][227] -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#12339])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#12339])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][231] -> [SKIP][232] ([i915#12388])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#12388])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#12388])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#12339])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9197]) +15 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#8825])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_plane@plane-position-covered.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#7294])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_plane_alpha_blend@constant-alpha-min.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][241] -> [FAIL][242] ([i915#8292])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][243] ([i915#8292])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#9423]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-dg2: [PASS][245] -> [SKIP][246] ([i915#12247] / [i915#8152] / [i915#9423])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
- shard-dg2: [PASS][247] -> [SKIP][248] ([i915#12247]) +8 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
- shard-dg2: [PASS][249] -> [SKIP][250] ([i915#8152] / [i915#9423])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#8152])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#12247]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247]) +14 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#12247]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#12247]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg2: [PASS][259] -> [SKIP][260] ([i915#6953] / [i915#8152] / [i915#9423])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#8152]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8152] / [i915#9423])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#12247] / [i915#8152])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#3555] / [i915#9423])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#5354])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#12343])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9685])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#9685])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9340])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#9340])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: [PASS][272] -> [SKIP][273] ([i915#1849])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#9519])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][275] -> [SKIP][276] ([i915#9519]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][277] -> [SKIP][278] ([i915#9519])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#6524])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#11520]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12316]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#11520]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#9808])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) +6 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#11520]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][286] ([i915#11520])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#11520])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9688]) +12 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr-basic:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9732]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +22 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +17 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9732]) +14 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9685]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#5289])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#11131] / [i915#4235] / [i915#5190])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#5289])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#11131] / [i915#4235])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8809] / [i915#8823])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][300] -> [FAIL][301] ([IGT#2])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#8623])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#3555]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3555]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#11920])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9906]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][307] -> [FAIL][308] ([i915#10393]) +1 other test fail
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_vrr@negative-basic.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#9906])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9906])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#8808] / [i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#2437] / [i915#9412])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#2433])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][314] -> [FAIL][315] ([i915#4349]) +2 other tests fail
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][316] -> [FAIL][317] ([i915#4349]) +4 other tests fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3708] / [i915#4077])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#3708] / [i915#4077])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#3708] / [i915#4077]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#3291] / [i915#3708]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#3291] / [i915#3708])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#3708])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9917])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-dg2: [SKIP][325] ([i915#2582]) -> [PASS][326] +1 other test pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@fbdev@pan.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@fbdev@pan.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][327] ([i915#7297]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][329] ([i915#12392] / [i915#7297]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][331] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@gem_eio@hibernate.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][333] ([i915#5784]) -> [PASS][334] +1 other test pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][335] ([i915#2842]) -> [PASS][336] +3 other tests pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][337] ([i915#9820]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-snb: [INCOMPLETE][339] -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-dg1: [INCOMPLETE][341] -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][343] ([i915#5956]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][345] ([i915#11808]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-transition:
- shard-dg2: [SKIP][347] ([i915#9197]) -> [PASS][348] +39 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_color@gamma:
- shard-dg2: [SKIP][349] ([i915#5354]) -> [PASS][350] +12 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_color@gamma.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_color@gamma.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][351] ([i915#12402]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [SKIP][353] ([i915#1849]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][355] ([i915#11961] / [i915#2122]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: [FAIL][357] ([i915#11961]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-mtlp: [INCOMPLETE][359] ([i915#6113]) -> [PASS][360] +1 other test pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [DMESG-WARN][361] ([i915#4423]) -> [PASS][362] +3 other tests pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][363] ([i915#2122]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate.html
- shard-rkl: [FAIL][365] ([i915#2122]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][367] ([i915#2122]) -> [PASS][368] +3 other tests pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][369] ([i915#2122]) -> [PASS][370] +9 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [FAIL][371] ([i915#11989] / [i915#2122]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: [FAIL][373] ([i915#2122]) -> [PASS][374] +3 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][375] ([i915#6880]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-snb: [SKIP][377] -> [PASS][378] +1 other test pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_invalid_mode@zero-clock:
- shard-dg2: [SKIP][379] ([i915#3555]) -> [PASS][380] +2 other tests pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_invalid_mode@zero-clock.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_invalid_mode@zero-clock.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [SKIP][381] ([i915#12388]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2: [SKIP][383] ([i915#8825]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-dg2: [SKIP][385] ([i915#7294]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-dg2: [SKIP][387] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- shard-dg2: [SKIP][389] ([i915#12247] / [i915#8152]) -> [PASS][390] +1 other test pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [SKIP][391] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][393] ([i915#8152] / [i915#9423]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][395] ([i915#12247]) -> [PASS][396] +14 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][397] ([i915#8152]) -> [PASS][398] +2 other tests pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-dg2: [SKIP][399] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][401] ([i915#9519]) -> [PASS][402] +2 other tests pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][403] ([i915#5465]) -> [PASS][404] +2 other tests pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-6/igt@kms_setmode@basic.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_setmode@basic.html
* igt@perf@blocking:
- shard-dg2: [FAIL][405] ([i915#10538]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@perf@blocking.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@perf@blocking.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace:
- shard-rkl: [FAIL][407] ([i915#12467] / [i915#2842]) -> [FAIL][408] ([i915#2842])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][409] ([i915#2876]) -> [FAIL][410] ([i915#2842])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][411] ([i915#9697] / [i915#9820]) -> [ABORT][412] ([i915#9820])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414] +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][415] ([i915#4538] / [i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#9197]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][417] ([i915#5190] / [i915#9197]) -> [SKIP][418] ([i915#4538] / [i915#5190]) +9 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][419] ([i915#10307] / [i915#6095]) -> [SKIP][420] ([i915#9197]) +6 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][421] ([i915#9197]) -> [SKIP][422] ([i915#12313]) +2 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][423] ([i915#9197]) -> [SKIP][424] ([i915#10307] / [i915#6095]) +7 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][425] ([i915#3299]) -> [SKIP][426] ([i915#9197])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][427] ([i915#9197]) -> [SKIP][428] ([i915#7118] / [i915#9424])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_content_protection@uevent.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][429] ([i915#9197]) -> [SKIP][430] ([i915#11453] / [i915#3359]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2: [SKIP][431] ([i915#5354]) -> [SKIP][432] ([i915#9197]) +1 other test skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: [SKIP][433] ([i915#4103] / [i915#4213]) -> [SKIP][434] ([i915#9197])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#5354]) +3 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#4103] / [i915#4213])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][439] ([i915#8812]) -> [SKIP][440] ([i915#9197])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][441] ([i915#9197]) -> [SKIP][442] ([i915#8812])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][443] ([i915#9197]) -> [SKIP][444] ([i915#3555] / [i915#3840])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: [SKIP][445] ([i915#3555] / [i915#5190]) -> [SKIP][446] ([i915#2672] / [i915#3555] / [i915#5190])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: [SKIP][447] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][448] ([i915#3555] / [i915#5190])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: [SKIP][449] ([i915#3555]) -> [SKIP][450] ([i915#2672] / [i915#3555]) +2 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/index.html
[-- Attachment #2: Type: text/html, Size: 108937 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
` (3 preceding siblings ...)
2024-10-23 12:03 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-10-25 11:38 ` Juha-Pekka Heikkila
2024-10-25 11:53 ` Hogander, Jouni
4 siblings, 1 reply; 9+ messages in thread
From: Juha-Pekka Heikkila @ 2024-10-25 11:38 UTC (permalink / raw)
To: Jouni Högander, igt-dev
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On 23.10.2024 9.07, Jouni Högander wrote:
> PTL doesn't support x tiled format and older platforms (display version <
> 9) do not have FBC support for linear. There is no specific reason to use x
> tiled format in this testcase: switch to linear format except on older
> platforms.
>
> v2: use x tiled for display version < 9
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> tests/intel/kms_fbcon_fbt.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/kms_fbcon_fbt.c b/tests/intel/kms_fbcon_fbt.c
> index 6d134ea62..ab4819d23 100644
> --- a/tests/intel/kms_fbcon_fbt.c
> +++ b/tests/intel/kms_fbcon_fbt.c
> @@ -221,7 +221,9 @@ static void set_mode_for_one_screen(struct drm_info *drm,
>
> buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode->vdisplay,
> DRM_FORMAT_XRGB8888,
> - I915_FORMAT_MOD_X_TILED, &drm->fb);
> + intel_display_ver(intel_get_drm_devid(drm->fd)) < 9 ?
> + I915_FORMAT_MOD_X_TILED : DRM_FORMAT_MOD_LINEAR,
> + &drm->fb);
> igt_draw_fill_fb(drm->fd, &drm->fb, 0xFF);
>
> igt_info("Setting %dx%d mode for %s connector\n",
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ CI.xeFULL: failure for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 11:33 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-25 11:45 ` Hogander, Jouni
0 siblings, 0 replies; 9+ messages in thread
From: Hogander, Jouni @ 2024-10-25 11:45 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 94960 bytes --]
Hello All.
Regressions reported by CI can't be related to my patch as it's changing only one tests and not touching reported testcases at all.
BR,
Jouni Högander
On Wed, 2024-10-23 at 11:33 +0000, Patchwork wrote:
Patch Details
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL: https://patchwork.freedesktop.org/series/140242/
State: failure
Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/index.html
CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11964_full
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_11964_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11964_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 (4 -> 4)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_11964_full:
IGT changes
Possible regressions
* igt@kms_cursor_legacy@torture-bo@pipe-b:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo@pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-b.html>
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html>
Known issues
Here are the changes found in XEIGTPW_11964_full that come from known issues:
IGT changes
Issues hit
* igt@core_hotunplug@hotunbind-rebind:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@core_hotunplug@hotunbind-rebind.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>)
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@core_hotunplug@hotunbind-rebind.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>)
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> (Intel XE#1701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) +1 other test fail
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (Intel XE#1426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) +1 other test fail
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>)
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* igt@kms_big_fb@linear-64bpp-rotate-0:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +4 other tests skip
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>)
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 other tests skip
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +6 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +3 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>)
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +1 other test skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) +8 other tests fail
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +27 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) +1 other test incomplete
* igt@kms_chamelium_color@ctm-0-50:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +3 other tests skip
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests skip
* igt@kms_cursor_crc@cursor-offscreen-128x42:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +2 other tests skip
* igt@kms_cursor_crc@cursor-sliding-512x170:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#2791<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791> / Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)
* igt@kms_cursor_legacy@torture-bo:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>)
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_display_modes@extended-mode-basic@pipe-a-dp-2-pipe-d-hdmi-a-3.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test dmesg-warn
* igt@kms_dsc@dsc-with-bpc:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_dsc@dsc-with-bpc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +5 other tests skip
* igt@kms_feature_discovery@psr2:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_feature_discovery@psr2.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>)
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +4 other tests fail
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +2 other tests fail
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html> (Intel XE#1204<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204>)
* igt@kms_flip@2x-flip-vs-wf_vblank:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_flip@2x-flip-vs-wf_vblank.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +1 other test skip
* igt@kms_flip@flip-vs-absolute-wf_vblank:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +5 other tests fail
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
* shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2 other tests fail
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +1 other test skip
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-rc-ccs-to-4.html> (Intel XE#1491<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491>) +1 other test fail
* igt@kms_force_connector_basic@prune-stale-modes:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html> (i915#5274<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274>)
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +7 other tests skip
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +12 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +16 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 other test skip
* igt@kms_joiner@basic-ultra-joiner:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
* igt@kms_lease@possible-crtcs-filtering:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_lease@possible-crtcs-filtering.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_lease@possible-crtcs-filtering.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) +14 other tests skip
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>)
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>)
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +15 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +7 other tests skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +5 other tests skip
* igt@kms_pm_dc@dc6-dpms:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#908<https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>)
* igt@kms_pm_dc@dc6-psr:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
* igt@kms_pm_rpm@basic-pci-d3-state:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html> (Intel XE#3129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3129>)
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>)
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other tests skip
* igt@kms_psr2_su@page_flip-p010:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html> (Intel XE#1128<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>)
* igt@kms_psr@psr-dpms:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_psr@psr-dpms.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +6 other tests skip
* igt@kms_rotation_crc@sprite-rotation-90:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-90.html> (Intel XE#1437<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437>)
* igt@kms_setmode@basic@pipe-b-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) +2 other tests fail
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>)
* igt@kms_vrr@cmrr@pipe-a-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#2159<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159>) +1 other test fail
* igt@kms_vrr@flip-basic:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_vrr@flip-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_vrr@flip-basic.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 other test fail
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
* igt@xe_compute_preempt@compute-preempt-many:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip
* igt@xe_drm_fdinfo@utilization-others-idle:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_drm_fdinfo@utilization-others-idle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@xe_drm_fdinfo@utilization-others-idle.html> (Intel XE#2667<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667>) +1 other test fail
* igt@xe_eudebug@basic-vm-bind-ufence:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +4 other tests skip
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-1/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +1 other test skip
* igt@xe_evict@evict-beng-mixed-many-threads-small:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) +1 other test incomplete
* igt@xe_evict@evict-beng-threads-small-multi-vm:
* shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@xe_evict@evict-beng-threads-small-multi-vm.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_evict@evict-cm-threads-small:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_evict@evict-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>)
* igt@xe_evict@evict-mixed-many-threads-large:
* shard-dg2-set2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1 other test skip
* igt@xe_exec_basic@once-userptr-invalidate-race:
* shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_exec_basic@once-userptr-invalidate-race.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_exec_basic@once-userptr-invalidate-race.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +27 other tests skip
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_exec_fault_mode@twice-rebind-prefetch.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +37 other tests skip
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +11 other tests skip
* igt@xe_exec_reset@parallel-gt-reset:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html> (Intel XE#2105<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105>)
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html> (Intel XE#2977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2977>) +1 other test fail
* igt@xe_gt_freq@freq_reset:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_gt_freq@freq_reset.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +6 other tests skip
* igt@xe_gt_freq@freq_reset_multiple:
* shard-lnl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>)
* igt@xe_oa@invalid-remove-userspace-config:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +2 other tests skip
* igt@xe_pat@pat-index-xehpc:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>)
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
* shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) +1 other test fail
* igt@xe_pm@s3-d3cold-basic-exec:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
* igt@xe_query@multigpu-query-config:
* shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_query@multigpu-query-config.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip
* igt@xe_query@multigpu-query-gt-list:
* shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@xe_query@multigpu-query-gt-list.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
Possible fixes
* igt@intel_hwmon@hwmon-write:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-7/igt@intel_hwmon@hwmon-write.html>
* igt@kms_atomic@atomic-invalid-params:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_atomic@atomic-invalid-params.html> +15 other tests pass
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
* igt@kms_big_fb@linear-8bpp-rotate-180:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html> (Intel XE#1659<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html>
* igt@kms_cursor_edge_walk@128x128-right-edge:
* shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html> (Intel XE#2055<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-right-edge.html> +1 other test pass
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html> (Intel XE#1541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html>
* igt@kms_cursor_legacy@torture-move@pipe-b:
* shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@torture-move@pipe-b.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-b.html> +1 other test pass
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html> +9 other tests pass
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html> +2 other tests pass
* igt@kms_flip@flip-vs-expired-vblank:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html>
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html> (Intel XE#1204<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html>
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html>
* igt@kms_flip@flip-vs-suspend:
* shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html>
* igt@kms_flip@flip-vs-suspend@b-dp4:
* shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_flip@flip-vs-suspend@b-dp4.html>
* igt@kms_flip@nonexisting-fb:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_flip@nonexisting-fb.html> +14 other tests pass
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> +6 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html> +2 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#3217<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3217>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html>
* igt@kms_psr@psr2-cursor-plane-onoff:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html> (Intel XE#2948<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_psr@psr2-cursor-plane-onoff.html> +1 other test pass
* igt@kms_vrr@flipline:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@flipline.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-2/igt@kms_vrr@flipline.html> +3 other tests pass
* igt@xe_evict@evict-beng-threads-large:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html>
* igt@xe_exec_basic@many-bindexecqueue-rebind:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html> +18 other tests pass
* igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html> (Intel XE#2754<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html> +1 other test pass
* igt@xe_pat@pat-index-xelp:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pat@pat-index-xelp.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_pat@pat-index-xelp.html> +16 other tests pass
* igt@xe_pm@s4-vm-bind-unbind-all:
* shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html>
Warnings
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2233<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#623<https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_big_fb@linear-64bpp-rotate-270:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +2 other tests skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +2 other tests skip
* igt@kms_big_fb@y-tiled-addfb:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>)
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 other test skip
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>)
* igt@kms_chamelium_color@ctm-max:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_chamelium_color@ctm-max.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +1 other test skip
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +1 other test skip
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_content_protection@lic-type-1.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_content_protection@uevent:
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_content_protection@uevent.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_content_protection@uevent.html> (Intel XE#3177<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_content_protection@uevent.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* igt@kms_dsc@dsc-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_dsc@dsc-basic.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_dsc@dsc-basic.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_dsc@dsc-basic.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_dsc@dsc-basic.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>)
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html> (Intel XE#3036<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3036>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 other test skip
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +4 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +5 other tests skip
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +4 other tests skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 other test skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 other test skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +3 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>)
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +2 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +1 other test skip
* igt@kms_getfb@getfb2-accept-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
* shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> (Intel XE#3177<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) +2 other tests skip
* igt@kms_pm_dc@dc5-psr:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html> (Intel XE#2392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +1 other test skip
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +1 other test skip
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) +1 other test skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 other test skip
* igt@kms_psr@fbc-pr-primary-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-8/igt@kms_psr@fbc-pr-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>)
* igt@kms_psr@fbc-psr2-cursor-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +2 other tests skip
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-blt.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-blt.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +3 other tests skip
* igt@kms_psr@pr-no-drrs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-1/igt@kms_psr@pr-no-drrs.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-463/igt@kms_psr@pr-no-drrs.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>)
* igt@kms_psr@psr-sprite-plane-move:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_psr@psr-sprite-plane-move.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_psr@psr-sprite-plane-move.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>)
* igt@kms_vrr@cmrr:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@kms_vrr@cmrr.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@kms_vrr@cmrr.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
* igt@xe_compute@ccs-mode-basic:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@xe_compute@ccs-mode-basic.html> (Intel XE#1050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_compute@ccs-mode-basic.html> (Intel XE#1050<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_compute@ccs-mode-basic.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_copy_basic@mem-set-linear-0x3fff:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_eudebug@multiple-sessions:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_eudebug@multiple-sessions.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_eudebug@multiple-sessions.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +2 other tests skip
* igt@xe_eudebug@read-metadata:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_eudebug@read-metadata.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_eudebug@read-metadata.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +2 other tests skip
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>)
* igt@xe_evict@evict-large-multi-vm-cm:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#2364<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#1600<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>)
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-prefetch.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +3 other tests skip
* igt@xe_exec_fault_mode@many-userptr-imm:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +3 other tests skip
* igt@xe_pat@pat-index-xelp:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pat@pat-index-xelp.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_pat@pat-index-xelp.html> (Intel XE#2237<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237> / Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>)
* igt@xe_pat@pat-index-xelpg:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html> (Intel XE#2236<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_pm@d3cold-mocs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-2/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_pm@d3cold-mocs.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-434/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-464/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)
* igt@xe_query@multigpu-query-uc-fw-version-guc:
* shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11964/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
Build changes
* IGT: IGT_8082 -> IGTPW_11964
IGTPW_11964: 34e16667c570394de3f142312912ecb283cd8119 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52
[-- Attachment #2: Type: text/html, Size: 111448 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
2024-10-23 12:03 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-10-25 11:45 ` Hogander, Jouni
0 siblings, 0 replies; 9+ messages in thread
From: Hogander, Jouni @ 2024-10-25 11:45 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 92949 bytes --]
Hello All.
Regressions reported by CI can't be related to my patch as it's changing only one tests and not touching reported testcases at all.
BR,
Jouni Högander
On Wed, 2024-10-23 at 12:03 +0000, Patchwork wrote:
Patch Details
Series: tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2)
URL: https://patchwork.freedesktop.org/series/140242/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/index.html
CI Bug Log - changes from CI_DRM_15581_full -> IGTPW_11964_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_11964_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11964_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_11964/index.html
Participating hosts (9 -> 8)
Additional (1): shard-tglu-1
Missing (2): pig-kbl-iris shard-glk
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_11964_full:
IGT changes
Possible regressions
* igt@drm_fdinfo@memory-info-resident:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@drm_fdinfo@memory-info-resident.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@drm_fdinfo@memory-info-resident.html> +1 other test fail
* igt@gem_ctx_persistence@smoketest:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-8/igt@gem_ctx_persistence@smoketest.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@gem_ctx_persistence@smoketest.html>
* igt@i915_selftest@mock@fence:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@i915_selftest@mock@fence.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@i915_selftest@mock@fence.html>
* igt@i915_suspend@sysfs-reader:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-9/igt@i915_suspend@sysfs-reader.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-6/igt@i915_suspend@sysfs-reader.html>
Warnings
* igt@i915_selftest@mock:
* shard-snb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@i915_selftest@mock.html> ([i915#9311]) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@i915_selftest@mock.html>
Known issues
Here are the changes found in IGTPW_11964_full that come from known issues:
IGT changes
Issues hit
* igt@device_reset@cold-reset-bound:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@device_reset@cold-reset-bound.html> ([i915#11078])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@device_reset@cold-reset-bound.html> ([i915#11078])
* igt@drm_fdinfo@busy-idle@bcs0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@drm_fdinfo@busy-idle@bcs0.html> ([i915#8414]) +7 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@drm_fdinfo@busy-idle@bcs0.html> ([i915#8414]) +7 other tests skip
* igt@gem_busy@close-race:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@gem_busy@close-race.html> ([i915#12297])
* igt@gem_ccs@ctrl-surf-copy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323])
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> ([i915#9323])
* igt@gem_ccs@suspend-resume:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_ccs@suspend-resume.html> ([i915#9323])
* igt@gem_compute@compute-square:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gem_compute@compute-square.html> ([i915#9310])
* igt@gem_create@create-ext-cpu-access-big:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html> ([i915#6335])
* igt@gem_create@create-ext-set-pat:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_create@create-ext-set-pat.html> ([i915#8562])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_create@create-ext-set-pat.html> ([i915#8562])
* igt@gem_ctx_engines@invalid-engines:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html> ([i915#12031])
* igt@gem_ctx_persistence@heartbeat-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html> ([i915#8555])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html> ([i915#8555]) +1 other test skip
* igt@gem_ctx_sseu@invalid-args:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html> ([i915#280])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html> ([i915#280])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html> ([i915#280])
* igt@gem_eio@hibernate:
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-3/igt@gem_eio@hibernate.html> ([i915#10030] / [i915#7975] / [i915#8213])
* igt@gem_exec_balancer@bonded-false-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html> ([i915#4812])
* igt@gem_exec_balancer@bonded-sync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html> ([i915#4771]) +1 other test skip
* igt@gem_exec_balancer@parallel-keep-submit-fence:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html> ([i915#4525]) +1 other test skip
* igt@gem_exec_fair@basic-deadline:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html> ([i915#2846])
* igt@gem_exec_fair@basic-none-vip@rcs0:
* shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842]) +1 other test fail
* igt@gem_exec_fair@basic-pace:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_exec_fair@basic-pace.html> ([i915#3539])
* igt@gem_exec_fair@basic-pace-share@rcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) +1 other test fail
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> ([i915#3539] / [i915#4852]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> ([i915#3711])
* igt@gem_exec_flush@basic-uc-ro-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html> ([i915#3539] / [i915#4852]) +1 other test skip
* igt@gem_exec_params@rsvd2-dirt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_exec_params@rsvd2-dirt.html> ([i915#5107])
* igt@gem_exec_reloc@basic-wc-read-active:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html> ([i915#3281]) +7 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-read-active.html> ([i915#3281]) +3 other tests skip
* igt@gem_exec_reloc@basic-write-wc-noreloc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_exec_reloc@basic-write-wc-noreloc.html> ([i915#3281]) +3 other tests skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html> ([i915#3281]) +3 other tests skip
* igt@gem_exec_schedule@pi-ringfull@ccs0:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html> ([i915#12296]) +7 other tests fail
* igt@gem_exec_schedule@preempt-queue-contexts:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-contexts.html> ([i915#4812]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts.html> ([i915#4537] / [i915#4812])
* igt@gem_exec_suspend@basic-s0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html> ([i915#11441]) +1 other test incomplete
* igt@gem_exec_suspend@basic-s4-devices:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html> ([i915#7975] / [i915#8213]) +1 other test abort
* igt@gem_fence_thrash@bo-copy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gem_fence_thrash@bo-copy.html> ([i915#4860])
* igt@gem_fence_thrash@bo-write-verify-none:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html> ([i915#4860]) +2 other tests skip
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> ([i915#4860]) +1 other test skip
* igt@gem_lmem_swapping@heavy-random:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
* igt@gem_lmem_swapping@verify-random:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html> ([i915#4613])
* igt@gem_lmem_swapping@verify-random-ccs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html> ([i915#4613]) +3 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs.html> ([i915#12193])
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html> ([i915#4565])
* igt@gem_media_vme:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@gem_media_vme.html> ([i915#284])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@gem_media_vme.html> ([i915#284])
* igt@gem_mmap_gtt@basic-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@gem_mmap_gtt@basic-wc.html> ([i915#4077]) +10 other tests skip
* igt@gem_mmap_gtt@medium-copy-xy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_mmap_gtt@medium-copy-xy.html> ([i915#4077]) +11 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_mmap_gtt@medium-copy-xy.html> ([i915#4077]) +8 other tests skip
* igt@gem_mmap_wc@bad-offset:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html> ([i915#4083]) +3 other tests skip
* igt@gem_mmap_wc@close:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@gem_mmap_wc@close.html> ([i915#4083]) +5 other tests skip
* igt@gem_mmap_wc@read:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_mmap_wc@read.html> ([i915#4083]) +4 other tests skip
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> ([i915#3282]) +2 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> ([i915#3282])
* igt@gem_pwrite@basic-self:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@gem_pwrite@basic-self.html> ([i915#3282])
* igt@gem_pxp@create-valid-protected-context:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_pxp@create-valid-protected-context.html> ([i915#4270]) +1 other test skip
* igt@gem_pxp@display-protected-crc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@gem_pxp@display-protected-crc.html> ([i915#4270]) +1 other test skip
* igt@gem_pxp@protected-raw-src-copy-not-readible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html> ([i915#4270]) +2 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_pxp@protected-raw-src-copy-not-readible.html> ([i915#4270]) +1 other test skip
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html> ([i915#4270]) +1 other test skip
* igt@gem_pxp@verify-pxp-stale-buf-execution:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html> ([i915#4270]) +1 other test skip
* igt@gem_render_copy@y-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@gem_render_copy@y-tiled.html> ([i915#8428]) +2 other tests skip
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html> ([i915#5190] / [i915#8428]) +7 other tests skip
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> ([i915#4079]) +2 other tests skip
* igt@gem_set_tiling_vs_gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html> ([i915#4079]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html> ([i915#4079]) +2 other tests skip
* igt@gem_userptr_blits@coherency-unsync:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html> ([i915#3297]) +1 other test skip
* igt@gem_userptr_blits@create-destroy-unsync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html> ([i915#3297]) +2 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@gem_userptr_blits@create-destroy-unsync.html> ([i915#3297])
* igt@gem_userptr_blits@dmabuf-sync:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html> ([i915#3297] / [i915#3323])
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html> ([i915#3297])
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297] / [i915#4880])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297] / [i915#4880])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297]) +1 other test skip
* igt@gen9_exec_parse@batch-invalid-length:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@gen9_exec_parse@batch-invalid-length.html> ([i915#2527] / [i915#2856])
* igt@gen9_exec_parse@bb-large:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@gen9_exec_parse@bb-large.html> ([i915#2527] / [i915#2856]) +4 other tests skip
* igt@gen9_exec_parse@bb-start-param:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@gen9_exec_parse@bb-start-param.html> ([i915#2856]) +3 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html> ([i915#2527]) +2 other tests skip
* igt@gen9_exec_parse@secure-batches:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html> ([i915#2856]) +1 other test skip
* igt@i915_module_load@reload-with-fault-injection:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820])
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820])
* igt@i915_pm_freq_api@freq-reset:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html> ([i915#8399])
* igt@i915_pm_rc6_residency@rc6-fence:
* shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681]) +1 other test warn
* igt@i915_pm_rps@reset:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@i915_pm_rps@reset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb2/igt@i915_pm_rps@reset.html> ([i915#7790])
* igt@i915_pm_rps@thresholds-idle-park:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html> ([i915#11681]) +1 other test skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html> ([i915#11681])
* igt@i915_pm_sseu@full-enable:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@i915_pm_sseu@full-enable.html> ([i915#4387])
* igt@i915_selftest@mock@memory_region:
* shard-tglu-1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@i915_selftest@mock@memory_region.html> ([i915#9311]) +1 other test dmesg-warn
* igt@intel_hwmon@hwmon-write:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@intel_hwmon@hwmon-write.html> ([i915#7707])
* igt@kms_addfb_basic@clobberred-modifier:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212])
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html> ([i915#4212]) +1 other test skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs.html> ([i915#8709]) +7 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html> ([i915#8709]) +11 other tests skip
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> ([i915#9531])
* igt@kms_atomic_transition@modeset-transition:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-18/igt@kms_atomic_transition@modeset-transition.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_atomic_transition@modeset-transition.html> ([i915#4423])
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> ([i915#4538] / [i915#5286]) +5 other tests skip
* igt@kms_big_fb@4-tiled-addfb:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html> ([i915#5286]) +3 other tests skip
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html> ([i915#5286])
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> ([i915#5286]) +2 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([i915#5286]) +1 other test skip
* igt@kms_big_fb@linear-8bpp-rotate-270:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html> ([i915#3638])
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> +14 other tests skip
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> ([i915#3638]) +1 other test skip
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> ([i915#5190] / [i915#9197]) +3 other tests skip
* igt@kms_big_fb@y-tiled-addfb:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb.html> ([i915#5190])
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> ([i915#6187])
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> ([i915#4538] / [i915#5190]) +7 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> ([i915#4538]) +4 other tests skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +46 other tests skip
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html> ([i915#10307] / [i915#6095]) +171 other tests skip
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-4.html> ([i915#6095]) +96 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> ([i915#12313])
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html> ([i915#6095]) +29 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> ([i915#6095]) +49 other tests skip
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1.html> ([i915#6095]) +14 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> ([i915#12313])
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> ([i915#6095]) +68 other tests skip
* igt@kms_chamelium_audio@dp-audio-edid:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html> ([i915#7828]) +1 other test skip
* igt@kms_chamelium_audio@hdmi-audio-edid:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html> ([i915#7828]) +7 other tests skip
* igt@kms_chamelium_color@ctm-negative:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html> +11 other tests skip
* igt@kms_chamelium_frames@hdmi-crc-multiple:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html> ([i915#7828]) +4 other tests skip
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828]) +2 other tests skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828]) +2 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828]) +3 other tests skip
* igt@kms_content_protection@content-type-change:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_content_protection@content-type-change.html> ([i915#6944] / [i915#9424])
* igt@kms_content_protection@dp-mst-type-0:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3116] / [i915#3299])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3299])
* igt@kms_content_protection@lic-type-1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_content_protection@lic-type-1.html> ([i915#9424])
* igt@kms_cursor_crc@cursor-offscreen-64x64:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-64x64.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-64x64.html> ([i915#9197]) +11 other tests skip
* igt@kms_cursor_crc@cursor-offscreen-max-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html> ([i915#3555] / [i915#8814])
* igt@kms_cursor_crc@cursor-onscreen-256x85:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html> ([i915#8814]) +2 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#11453] / [i915#3359])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#11453] / [i915#3359])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#11453] / [i915#3359])
* igt@kms_cursor_crc@cursor-random-128x42:
* shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_cursor_crc@cursor-random-128x42.html> ([i915#4423])
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#11453] / [i915#3359])
* igt@kms_cursor_crc@cursor-random-max-size:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_cursor_crc@cursor-random-max-size.html> ([i915#3555]) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> ([i915#3555]) +4 other tests skip
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> +9 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> ([i915#9809]) +1 other test skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4103] / [i915#4213])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4103])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4213])
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> ([i915#3555]) +3 other tests skip
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> ([i915#3840])
* igt@kms_dsc@dsc-with-bpc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html> ([i915#3555] / [i915#3840])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_dsc@dsc-with-bpc.html> ([i915#3555] / [i915#3840])
* igt@kms_dsc@dsc-with-output-formats:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840])
* igt@kms_fbcon_fbt@psr:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_fbcon_fbt@psr.html> ([i915#3469])
* igt@kms_feature_discovery@display-3x:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_feature_discovery@display-3x.html> ([i915#1839])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_feature_discovery@display-3x.html> ([i915#1839])
* igt@kms_feature_discovery@dp-mst:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html> ([i915#9337])
* igt@kms_flip@2x-flip-vs-fences-interruptible:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html> ([i915#8381])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html> ([i915#8381])
* igt@kms_flip@2x-flip-vs-modeset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_flip@2x-flip-vs-modeset.html> ([i915#9934]) +2 other tests skip
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> ([i915#3637]) +1 other test skip
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> ([i915#3637])
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html> ([i915#2122]) +3 other tests fail
* igt@kms_flip@2x-plain-flip-interruptible:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html> ([i915#3637]) +4 other tests skip
* igt@kms_flip@2x-plain-flip-ts-check:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html> ([i915#3637] / [i915#3966])
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html> ([i915#2122]) +2 other tests fail
* igt@kms_flip@modeset-vs-vblank-race:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_flip@modeset-vs-vblank-race.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_flip@modeset-vs-vblank-race.html> ([i915#10826])
* igt@kms_flip@modeset-vs-vblank-race@b-dp3:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_flip@modeset-vs-vblank-race@b-dp3.html> ([i915#10826])
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> ([i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672])
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> ([i915#2672] / [i915#8813]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> ([i915#2587] / [i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +7 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html> ([i915#3555])
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html> ([i915#8708]) +3 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html> ([i915#5354]) +34 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> +35 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html> ([i915#1825]) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> ([i915#5354]) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> ([i915#1825]) +9 other tests skip
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> +56 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html> ([i915#10433] / [i915#3458])
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> ([i915#3458]) +13 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> ([i915#8708]) +11 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> +36 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html> ([i915#8708]) +16 other tests skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html> ([i915#3023]) +7 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html> ([i915#3458]) +18 other tests skip
* igt@kms_hdr@bpc-switch-dpms:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@static-toggle:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_hdr@static-toggle.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@static-toggle-suspend:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html> ([i915#3555] / [i915#8228]) +1 other test skip
* igt@kms_joiner@basic-ultra-joiner:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_joiner@basic-ultra-joiner.html> ([i915#12339])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html> ([i915#12339])
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html> ([i915#12388])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html> ([i915#12388])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html> ([i915#12388])
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html> ([i915#12339])
* igt@kms_pipe_crc_basic@suspend-read-crc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html> ([i915#9197]) +15 other tests skip
* igt@kms_plane@plane-position-covered:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_plane@plane-position-covered.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane@plane-position-covered.html> ([i915#8825])
* igt@kms_plane_alpha_blend@constant-alpha-min:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_plane_alpha_blend@constant-alpha-min.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html> ([i915#7294])
* igt@kms_plane_scaling@intel-max-src-size:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#8292])
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> ([i915#8292])
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> ([i915#12247] / [i915#9423]) +1 other test skip
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> ([i915#12247] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b.html> ([i915#12247]) +8 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html> ([i915#8152] / [i915#9423])
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html> ([i915#8152])
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> ([i915#12247]) +5 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> ([i915#12247]) +14 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html> ([i915#12247]) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html> ([i915#12247]) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> ([i915#6953] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> ([i915#12247] / [i915#8152]) +1 other test skip
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> ([i915#3555] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> ([i915#12247] / [i915#8152])
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555] / [i915#9423])
* igt@kms_pm_backlight@basic-brightness:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html> ([i915#5354])
* igt@kms_pm_backlight@brightness-with-dpms:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html> ([i915#12343])
* igt@kms_pm_dc@dc5-psr:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html> ([i915#9685])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html> ([i915#9685])
* igt@kms_pm_lpsp@kms-lpsp:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html> ([i915#9340])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html> ([i915#9340])
* igt@kms_pm_rpm@cursor-dpms:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html> ([i915#1849])
* igt@kms_pm_rpm@modeset-lpsp:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html> ([i915#9519])
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> ([i915#9519]) +1 other test skip
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519])
* igt@kms_prime@basic-crc-hybrid:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524])
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> ([i915#11520]) +5 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> ([i915#12316]) +4 other tests skip
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> ([i915#11520]) +4 other tests skip
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html> ([i915#9808])
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> ([i915#11520]) +6 other tests skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> ([i915#11520]) +3 other tests skip
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> ([i915#11520])
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html> ([i915#11520])
* igt@kms_psr@fbc-pr-primary-blt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-7/igt@kms_psr@fbc-pr-primary-blt.html> ([i915#9688]) +12 other tests skip
* igt@kms_psr@fbc-psr-basic:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html> ([i915#1072] / [i915#9732]) +5 other tests skip
* igt@kms_psr@fbc-psr-no-drrs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html> ([i915#9732]) +7 other tests skip
* igt@kms_psr@fbc-psr-primary-page-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html> ([i915#1072] / [i915#9732]) +22 other tests skip
* igt@kms_psr@fbc-psr2-cursor-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html> ([i915#1072] / [i915#9732]) +17 other tests skip
* igt@kms_psr@psr2-cursor-blt:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html> ([i915#9732]) +14 other tests skip
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> ([i915#9685]) +1 other test skip
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> ([i915#5289])
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> ([i915#11131] / [i915#4235] / [i915#5190])
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> ([i915#5289])
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> ([i915#11131] / [i915#4235])
* igt@kms_setmode@invalid-clone-exclusive-crtc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html> ([i915#3555] / [i915#8809] / [i915#8823])
* igt@kms_sysfs_edid_timing:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_sysfs_edid_timing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_sysfs_edid_timing.html> ([IGT#2])
* igt@kms_tiled_display@basic-test-pattern:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html> ([i915#8623])
* igt@kms_vrr@flip-basic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_vrr@flip-basic.html> ([i915#3555]) +3 other tests skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_vrr@flip-basic.html> ([i915#3555]) +1 other test skip
* igt@kms_vrr@lobf:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@kms_vrr@lobf.html> ([i915#11920])
* igt@kms_vrr@max-min:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_vrr@max-min.html> ([i915#9906]) +1 other test skip
* igt@kms_vrr@negative-basic:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_vrr@negative-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_vrr@negative-basic.html> ([i915#10393]) +1 other test fail
* igt@kms_vrr@seamless-rr-switch-vrr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#8808] / [i915#9906])
* igt@kms_writeback@writeback-pixel-formats:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html> ([i915#2437] / [i915#9412])
* igt@perf@per-context-mode-unprivileged:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html> ([i915#2433])
* igt@perf_pmu@busy-double-start@vcs1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html> ([i915#4349]) +2 other tests fail
* igt@perf_pmu@busy-double-start@vecs1:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html> ([i915#4349]) +4 other tests fail
* igt@prime_vgem@basic-fence-mmap:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html> ([i915#3708] / [i915#4077])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html> ([i915#3708] / [i915#4077])
* igt@prime_vgem@basic-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@prime_vgem@basic-gtt.html> ([i915#3708] / [i915#4077]) +1 other test skip
* igt@prime_vgem@basic-write:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@prime_vgem@basic-write.html> ([i915#3291] / [i915#3708]) +1 other test skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-3/igt@prime_vgem@basic-write.html> ([i915#3291] / [i915#3708])
* igt@prime_vgem@fence-write-hang:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-19/igt@prime_vgem@fence-write-hang.html> ([i915#3708])
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off.html> ([i915#9917])
Possible fixes
* igt@fbdev@pan:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@fbdev@pan.html> ([i915#2582]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@fbdev@pan.html> +1 other test pass
* igt@gem_ccs@suspend-resume:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume.html> ([i915#7297]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@gem_ccs@suspend-resume.html>
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html> ([i915#12392] / [i915#7297]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html>
* igt@gem_eio@hibernate:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@gem_eio@hibernate.html> ([i915#10030] / [i915#7975] / [i915#8213]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-4/igt@gem_eio@hibernate.html>
* igt@gem_eio@unwedge-stress:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@gem_eio@unwedge-stress.html> ([i915#5784]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@gem_eio@unwedge-stress.html> +1 other test pass
* igt@gem_exec_fair@basic-pace-solo@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> +3 other tests pass
* igt@i915_module_load@reload-with-fault-injection:
* shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html>
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
* shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
* igt@i915_pm_freq_api@freq-suspend:
* shard-dg1: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html> +1 other test pass
* igt@kms_atomic_transition@plane-all-modeset-transition:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html> ([i915#5956]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html>
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> ([i915#11808]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> +1 other test pass
* igt@kms_atomic_transition@plane-all-transition:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html> ([i915#9197]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_atomic_transition@plane-all-transition.html> +39 other tests pass
* igt@kms_color@gamma:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_color@gamma.html> ([i915#5354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_color@gamma.html> +12 other tests pass
* igt@kms_dp_linktrain_fallback@dp-fallback:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html> ([i915#12402]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html>
* igt@kms_fbcon_fbt@fbc-suspend:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#1849]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html>
* igt@kms_flip@blocking-wf_vblank:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html> ([i915#11961] / [i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html>
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html> ([i915#11961]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html>
* igt@kms_flip@flip-vs-rmfb-interruptible:
* shard-mtlp: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible.html> ([i915#6113]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html> +1 other test pass
* igt@kms_flip@flip-vs-suspend:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html> ([i915#4423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html> +3 other tests pass
* igt@kms_flip@plain-flip-fb-recreate:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate.html>
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html> +1 other test pass
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> +3 other tests pass
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
* shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb5/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html> +9 other tests pass
* igt@kms_flip@plain-flip-ts-check-interruptible:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html> ([i915#11989] / [i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html>
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html> +3 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html> ([i915#6880]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html>
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
* shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> +1 other test pass
* igt@kms_invalid_mode@zero-clock:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_invalid_mode@zero-clock.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_invalid_mode@zero-clock.html> +2 other tests pass
* igt@kms_joiner@basic-force-big-joiner:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html> ([i915#12388]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html>
* igt@kms_plane@pixel-format-source-clamping:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html> ([i915#8825]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping.html> +1 other test pass
* igt@kms_plane_alpha_blend@constant-alpha-max:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html> ([i915#7294]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-max.html>
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html> ([i915#12247] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html>
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html> +1 other test pass
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html> ([i915#3555] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html>
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html> ([i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html> +1 other test pass
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html> +14 other tests pass
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html> ([i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html> +2 other tests pass
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html> ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5.html>
* igt@kms_pm_rpm@dpms-lpsp:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html> +2 other tests pass
* igt@kms_setmode@basic:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-6/igt@kms_setmode@basic.html> ([i915#5465]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-10/igt@kms_setmode@basic.html> +2 other tests pass
* igt@perf@blocking:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@perf@blocking.html> ([i915#10538]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@perf@blocking.html> +1 other test pass
Warnings
* igt@gem_exec_fair@basic-pace:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace.html> ([i915#12467] / [i915#2842]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace.html> ([i915#2842])
* igt@gem_exec_fair@basic-pace@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html> ([i915#2876]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html> ([i915#2842])
* igt@i915_module_load@reload-with-fault-injection:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9697] / [i915#9820]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820])
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> +1 other test skip
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html> ([i915#4538] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html> ([i915#5190] / [i915#9197]) +2 other tests skip
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html> ([i915#5190] / [i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html> ([i915#4538] / [i915#5190]) +9 other tests skip
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html> ([i915#10307] / [i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html> ([i915#9197]) +6 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#12313]) +2 other tests skip
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html> ([i915#10307] / [i915#6095]) +7 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html> ([i915#3299]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html> ([i915#9197])
* igt@kms_content_protection@uevent:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_content_protection@uevent.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_content_protection@uevent.html> ([i915#7118] / [i915#9424])
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#11453] / [i915#3359]) +1 other test skip
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> ([i915#9197]) +1 other test skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> ([i915#4103] / [i915#4213]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> ([i915#9197])
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> ([i915#5354]) +3 other tests skip
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103] / [i915#4213])
* igt@kms_draw_crc@draw-method-mmap-gtt:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html> ([i915#8812]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html> ([i915#9197])
* igt@kms_draw_crc@draw-method-mmap-wc:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#8812])
* igt@kms_dsc@dsc-with-output-formats:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840])
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> ([i915#3555] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190])
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11964/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html> ([i915#3555] / [i915#5190])
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip> ([i915#3555]) -> [SKIP][450] ([i915#2672] / [i915#3555]) +2 other tests skip
[-- Attachment #2: Type: text/html, Size: 111428 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled
2024-10-25 11:38 ` [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Juha-Pekka Heikkila
@ 2024-10-25 11:53 ` Hogander, Jouni
0 siblings, 0 replies; 9+ messages in thread
From: Hogander, Jouni @ 2024-10-25 11:53 UTC (permalink / raw)
To: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org
On Fri, 2024-10-25 at 14:38 +0300, Juha-Pekka Heikkila wrote:
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Thank you Juha-Pekka for checking my patch. This is now pushed to
master.
BR,
Jouni Högander
>
> On 23.10.2024 9.07, Jouni Högander wrote:
> > PTL doesn't support x tiled format and older platforms (display
> > version <
> > 9) do not have FBC support for linear. There is no specific reason
> > to use x
> > tiled format in this testcase: switch to linear format except on
> > older
> > platforms.
> >
> > v2: use x tiled for display version < 9
> >
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > ---
> > tests/intel/kms_fbcon_fbt.c | 4 +++-
> > 1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/tests/intel/kms_fbcon_fbt.c
> > b/tests/intel/kms_fbcon_fbt.c
> > index 6d134ea62..ab4819d23 100644
> > --- a/tests/intel/kms_fbcon_fbt.c
> > +++ b/tests/intel/kms_fbcon_fbt.c
> > @@ -221,7 +221,9 @@ static void set_mode_for_one_screen(struct
> > drm_info *drm,
> >
> > buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode-
> > >vdisplay,
> > DRM_FORMAT_XRGB8888,
> > - I915_FORMAT_MOD_X_TILED, &drm-
> > >fb);
> > +
> > intel_display_ver(intel_get_drm_devid(drm->fd)) < 9 ?
> > + I915_FORMAT_MOD_X_TILED :
> > DRM_FORMAT_MOD_LINEAR,
> > + &drm->fb);
> > igt_draw_fill_fb(drm->fd, &drm->fb, 0xFF);
> >
> > igt_info("Setting %dx%d mode for %s connector\n",
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-25 11:53 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-23 6:07 [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Jouni Högander
2024-10-23 7:59 ` ✓ Fi.CI.BAT: success for tests/intel/kms_fbcon_fbt: Use linear instead of x tiled (rev2) Patchwork
2024-10-23 8:07 ` ✓ CI.xeBAT: " Patchwork
2024-10-23 11:33 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-25 11:45 ` Hogander, Jouni
2024-10-23 12:03 ` ✗ Fi.CI.IGT: " Patchwork
2024-10-25 11:45 ` Hogander, Jouni
2024-10-25 11:38 ` [PATCH i-g-t v2] tests/intel/kms_fbcon_fbt: Use linear instead of x tiled Juha-Pekka Heikkila
2024-10-25 11:53 ` Hogander, Jouni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox