* [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
@ 2026-01-21 5:21 Karthik B S
2026-01-21 8:39 ` ✓ Xe.CI.BAT: success for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Karthik B S @ 2026-01-21 5:21 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, juha-pekka.heikkila, ramanaidu.naladala,
Karthik B S
Previously, setup_fb() contained the igt_require() for format + modifier,
causing the dynamic test to be intialized only to skip eventually if the
combination is unsupported.
This patch moves format/modifier checks to the per-subtest level.
Additionally, linear framebuffers combined with REFLECT_X rotation are
not supported on Intel platforms prior to gen35. To make this explicit and
reduce CI run time, the test now performs an early skip for this
combination, clearly stating the reason in the skip message.
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
tests/intel/kms_flip_scaled_crc.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/tests/intel/kms_flip_scaled_crc.c b/tests/intel/kms_flip_scaled_crc.c
index 954b46b5f..91e5793f4 100644
--- a/tests/intel/kms_flip_scaled_crc.c
+++ b/tests/intel/kms_flip_scaled_crc.c
@@ -670,9 +670,6 @@ const struct {
static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t width,
uint32_t height, uint64_t format, uint64_t modifier)
{
- igt_require(igt_display_has_format_mod(&data->display, format,
- modifier));
-
igt_create_color_fb(data->drm_fd, width, height,
format, modifier, 0, 1, 0, newfb);
}
@@ -901,6 +898,18 @@ int igt_main()
for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
igt_describe(flip_scenario_test[index].describe);
igt_subtest_with_dynamic(flip_scenario_test[index].name) {
+ igt_require(igt_display_has_format_mod(&data.display,
+ flip_scenario_test[index].firstformat,
+ flip_scenario_test[index].firstmodifier));
+ igt_require(igt_display_has_format_mod(&data.display,
+ flip_scenario_test[index].secondformat,
+ flip_scenario_test[index].secondmodifier));
+
+ if(flip_scenario_test[index].secondmodifier == DRM_FORMAT_MOD_LINEAR &&
+ flip_scenario_test[index].secondrotation & IGT_REFLECT_X)
+ igt_require_f(data.gen >= 35,
+ "Linear fb with REFLECT_X unsupported");
+
free_fbs(&data);
for_each_pipe(&data.display, pipe) {
bool found = false;
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
@ 2026-01-21 8:39 ` Patchwork
2026-01-21 9:04 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-21 8:39 UTC (permalink / raw)
To: Karthik B S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1566 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
URL : https://patchwork.freedesktop.org/series/160397/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8709_BAT -> XEIGTPW_14386_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14386_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* IGT: IGT_8709 -> IGTPW_14386
* Linux: xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1 -> xe-4423-97a937cbdac99e49f279955be6b427237bfe4772
IGTPW_14386: 14386
IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1: fa2241b92adb500a9c016188d338aa3f6f8a95a1
xe-4423-97a937cbdac99e49f279955be6b427237bfe4772: 97a937cbdac99e49f279955be6b427237bfe4772
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/index.html
[-- Attachment #2: Type: text/html, Size: 2141 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
2026-01-21 8:39 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-01-21 9:04 ` Patchwork
2026-01-21 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-21 9:04 UTC (permalink / raw)
To: Karthik B S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2811 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
URL : https://patchwork.freedesktop.org/series/160397/
State : success
== Summary ==
CI Bug Log - changes from IGT_8709 -> IGTPW_14386
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/index.html
Participating hosts (43 -> 39)
------------------------------
Missing (4): bat-dg2-13 fi-bsw-nick fi-snb-2520m bat-adlp-6
Known issues
------------
Here are the changes found in IGTPW_14386 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8709/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#14365]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8709/bat-twl-2/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/bat-twl-2/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8709/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8709/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14365
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8709 -> IGTPW_14386
* Linux: CI_DRM_17854 -> CI_DRM_17859
CI-20190529: 20190529
CI_DRM_17854: fa2241b92adb500a9c016188d338aa3f6f8a95a1 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17859: b7c3274a57563fc1652889043a6e8d08473e5f31 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14386: 14386
IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/index.html
[-- Attachment #2: Type: text/html, Size: 3600 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
2026-01-21 8:39 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-21 9:04 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-21 11:18 ` Patchwork
2026-01-21 17:58 ` ✗ i915.CI.Full: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-21 11:18 UTC (permalink / raw)
To: Karthik B S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 46552 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
URL : https://patchwork.freedesktop.org/series/160397/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8709_FULL -> XEIGTPW_14386_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14386_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14386_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14386_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-bmg: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-bmg: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
#### Warnings ####
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: [SKIP][5] ([Intel XE#1397]) -> [SKIP][6] +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][7] ([Intel XE#2380]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: [SKIP][9] ([Intel XE#1401] / [Intel XE#1745]) -> [SKIP][10] +23 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][11] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][12] +23 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: [SKIP][13] ([Intel XE#7064] / [Intel XE#7081]) -> [SKIP][14] +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: [SKIP][15] ([Intel XE#6703]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
Known issues
------------
Here are the changes found in XEIGTPW_14386_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +5 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2669]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2252]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#373]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][31] ([Intel XE#6968]) +3 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-c-edp-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#3304]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3278])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#5354])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#323])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1508])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4354])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#4294])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4422])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#702])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-busy-flip:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#3098]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1397] / [Intel XE#1745])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1397])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4141]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6312])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2311]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7061]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +11 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7061]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2313]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1470] / [Intel XE#2853])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6886]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6886]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#870])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#718]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1439] / [Intel XE#3141])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#2893])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1128] / [Intel XE#1406])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2387])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#3414] / [Intel XE#3904])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [PASS][77] -> [ABORT][78] ([Intel XE#1727])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1499])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_vrr@flip-suspend.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#6010])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-2/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4837]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4837]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@interrupt-other:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4837] / [Intel XE#6665])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-2/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#688]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2322]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-priority:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6874]) +11 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#6874]) +11 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#5007])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#5007])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][92] ([Intel XE#7098])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4943]) +12 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#4943]) +9 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2229])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2229])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#5100])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-5/igt@xe_mmap@pci-membarrier.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6964]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#977])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-4/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2245])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#5694])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#584])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2284])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#944])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#4130])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][106] ([Intel XE#5993]) -> [PASS][107] +3 other tests pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][108] ([Intel XE#6054]) -> [PASS][109] +3 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-b-dp-2:
- shard-bmg: [DMESG-FAIL][110] ([Intel XE#5545]) -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-b-dp-2.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-lnl: [DMESG-WARN][112] ([Intel XE#7063]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: [INCOMPLETE][114] ([Intel XE#2597]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-10/igt@kms_pipe_crc_basic@suspend-read-crc.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][116] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@xe_pat@pat-sanity:
- shard-lnl: [DMESG-WARN][118] ([Intel XE#4537] / [Intel XE#7063]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-lnl-2/igt@xe_pat@pat-sanity.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-lnl-2/igt@xe_pat@pat-sanity.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [FAIL][120] ([Intel XE#5937]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][122] ([Intel XE#6569]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-many-front:
- shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [PASS][125] +62 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_vm@munmap-style-unbind-userptr-inval-many-front.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@xe_vm@munmap-style-unbind-userptr-inval-many-front.html
#### Warnings ####
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2252])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-fast.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][128] ([Intel XE#4633]) -> [FAIL][129] ([Intel XE#6715])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#2311]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#4141])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#2313]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#6911])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2486])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_panel_fitting@legacy.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@kms_panel_fitting@legacy.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][140] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][141] ([Intel XE#1406] / [Intel XE#1489])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-dpms:
- shard-bmg: [SKIP][142] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][143] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@kms_psr@psr-dpms.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@kms_psr@psr-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][144] ([Intel XE#1729]) -> [SKIP][145] ([Intel XE#2426])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-bmg: [SKIP][146] ([Intel XE#6703]) -> [SKIP][147] ([Intel XE#4837] / [Intel XE#6665])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_eudebug_online@reset-with-attention.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#2322])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority:
- shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#6874]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#5007])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-9/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge-nomemset:
- shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#4943])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge-nomemset.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge-nomemset.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#4733])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#944])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8709/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/shard-bmg-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
[Intel XE#7064]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7064
[Intel XE#7081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7081
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8709 -> IGTPW_14386
* Linux: xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1 -> xe-4423-97a937cbdac99e49f279955be6b427237bfe4772
IGTPW_14386: 14386
IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1: fa2241b92adb500a9c016188d338aa3f6f8a95a1
xe-4423-97a937cbdac99e49f279955be6b427237bfe4772: 97a937cbdac99e49f279955be6b427237bfe4772
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14386/index.html
[-- Attachment #2: Type: text/html, Size: 54254 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
` (2 preceding siblings ...)
2026-01-21 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-21 17:58 ` Patchwork
2026-01-29 15:18 ` Karthik B S
2026-01-23 8:32 ` [PATCH i-g-t] " B, Jeevan
2026-01-29 14:34 ` Kamil Konieczny
5 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-01-21 17:58 UTC (permalink / raw)
To: Karthik B S; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 134961 bytes --]
== Series Details ==
Series: tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
URL : https://patchwork.freedesktop.org/series/160397/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17859_full -> IGTPW_14386_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14386_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14386_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_14386/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14386_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-rkl: NOTRUN -> [SKIP][2] +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][3] +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
#### Warnings ####
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: [SKIP][6] ([i915#2672] / [i915#3555]) -> [SKIP][7] +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [SKIP][8] ([i915#2672] / [i915#3555]) -> [SKIP][9] +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-tglu: [SKIP][10] ([i915#15573]) -> [SKIP][11] +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
- shard-mtlp: [SKIP][12] ([i915#8813]) -> [SKIP][13] +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
- shard-rkl: [SKIP][14] ([i915#15573]) -> [SKIP][15] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][16] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: [SKIP][18] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][19] +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: [SKIP][20] ([i915#2587] / [i915#2672] / [i915#3555]) -> [SKIP][21] +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][22] ([i915#2672] / [i915#3555]) -> [SKIP][23] +11 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: [SKIP][24] ([i915#2672] / [i915#3555]) -> [SKIP][25] +16 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: [SKIP][26] ([i915#2672] / [i915#3555] / [i915#8813]) -> [SKIP][27] +24 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-dg2: [SKIP][28] ([i915#15573]) -> [SKIP][29] +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-dg1: [SKIP][30] ([i915#15573]) -> [SKIP][31] +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-19/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
New tests
---------
New tests have been introduced between CI_DRM_17859_full and IGTPW_14386_full:
### New IGT tests (33) ###
* igt@i915_pm_rps@4-tiled-8bpp-rotate-0:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@all-busy-idle-check-all:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@bad-size:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@basic-cpu-noreloc:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@cursora-vs-flipb-toggle:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@fbc-1p-offscreen-pri-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@fbc-2p-primscrn-spr-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@int-max-clock:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@invalid-signal-one-illegal-handle:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@linear-16bpp-rotate-180:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@psr-argb161616f-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@reset-signaled:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@syncobj-invalid-flags:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@alloc_timeline:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@alpha-opaque-fb:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@bad-fence:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@bad-flink:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@coherency-sync:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@crc-primary-basic-4-tiled-dg2-rc-ccs:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@cursor-onscreen-32x10:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@fbc-psr-basic:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@fbcpsr-1p-primscrn-cur-indfb-move:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@invalid-flags:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@nullptr:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@resubmit-new:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@wait-all-complex:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@wait-wedge-10ms:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_legacy@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_14386_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#8411])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#8411])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#3555] / [i915#9323])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#7697])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#7697])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-glk10: NOTRUN -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][38] ([i915#1099]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb6/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#280])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4771])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_exec_balancer@sliced.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_params@secure-non-master:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#14544])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#8289])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#284])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][65] -> [ABORT][66] ([i915#14809]) +1 other test abort
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#13809])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@access-control:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][81] ([i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][84] -> [INCOMPLETE][85] ([i915#13356])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_workarounds@suspend-resume-fd.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#11527]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_module_load@fault-injection:
- shard-rkl: NOTRUN -> [ABORT][93] ([i915#15342] / [i915#15481])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
- shard-rkl: NOTRUN -> [ABORT][94] ([i915#15481])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [DMESG-WARN][95] ([i915#15342])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_gt_init-enodev:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#15479]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][97] -> [DMESG-WARN][98] ([i915#13029] / [i915#14545])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#6412])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#14544] / [i915#8399])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][103] +9 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: NOTRUN -> [FAIL][104] ([i915#12964]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: NOTRUN -> [INCOMPLETE][105] ([i915#13356])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#11681]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][107] -> [INCOMPLETE][108] ([i915#4817]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4077]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#9531])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#9531])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][117] -> [FAIL][118] ([i915#5138])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544] / [i915#3638])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][127]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +214 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +56 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +135 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +60 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][136] +298 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#12805])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14098] / [i915#6095]) +29 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +64 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544] / [i915#6095]) +8 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#13781]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3742])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +9 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][148] +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][153] -> [SKIP][154] ([i915#12655] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_color@deep-color.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7118] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#6944]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3116] / [i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#15330]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#6944])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#6944])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][164] ([i915#7173]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#3555])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#13049])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][167] -> [FAIL][168] ([i915#13566]) +5 other tests fail
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: NOTRUN -> [FAIL][172] ([i915#13566]) +3 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [PASS][173] -> [FAIL][174] ([i915#13566]) +2 other tests fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13049])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#13049])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: NOTRUN -> [FAIL][179] ([i915#13566]) +4 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#4103]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- shard-dg1: [PASS][182] -> [DMESG-WARN][183] ([i915#4391] / [i915#4423])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#9809])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#13046] / [i915#5354])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-mtlp: [PASS][186] -> [ABORT][187] ([i915#13562])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9833])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13691] / [i915#14544])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][191] -> [SKIP][192] ([i915#1257])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_dp_aux_dev.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#13748])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#13748])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13748])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#13707])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#13707])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840] / [i915#4423])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#4854])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#4854])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#1839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#1839])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) +11 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#9934]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][210] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12314] / [i915#12745] / [i915#6113])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810] / [i915#8813])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#15104])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#15104])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#1825]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [PASS][217] -> [FAIL][218] ([i915#15389] / [i915#6880]) +1 other test fail
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][219] ([i915#10056])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#5439])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#5439])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#5439])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#10055])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#15102])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15102] / [i915#3458]) +8 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +16 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +5 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8708])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][230] +18 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][231] +49 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#15574]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#15574])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#15102] / [i915#3023]) +11 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#15102]) +8 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#9766])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#15102]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#15102]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15102] / [i915#3458]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544] / [i915#1825]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][241] +29 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#1825]) +19 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#15574])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#15574]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#15574]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#15102]) +25 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15459])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#15458])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15459])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#13522])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#13522])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][255] ([i915#13026]) +1 other test incomplete
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][256] -> [INCOMPLETE][257] ([i915#14412]) +1 other test incomplete
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk10: NOTRUN -> [FAIL][258] ([i915#10647] / [i915#12169])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][259] ([i915#10647]) +1 other test fail
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#13958]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#13958])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14259])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#14259] / [i915#4423])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15329] / [i915#6953])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15329]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#9812]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#14544] / [i915#5354])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#5354])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9685])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#9685])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3828])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3828])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3828])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-glk10: NOTRUN -> [SKIP][275] +54 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#15073]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][277] -> [SKIP][278] ([i915#15073]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#15403])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][280] -> [INCOMPLETE][281] ([i915#14419])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#11520]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520]) +6 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-snb: NOTRUN -> [SKIP][284] ([i915#11520]) +5 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12316]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#11520]) +8 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][287] ([i915#11520]) +7 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-glk10: NOTRUN -> [SKIP][289] ([i915#11520]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#11520]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#9683]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#9688]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#9732]) +21 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#9732]) +8 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +11 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +9 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +12 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#9685])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][300] +192 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12755]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][302] ([i915#15492])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#5289])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#5289])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#5289])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg1: [PASS][306] -> [DMESG-WARN][307] ([i915#4423])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-14/igt@kms_rotation_crc@sprite-rotation-270.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12755]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#8623]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][310] ([i915#10959])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#8623])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@lobf:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#11920])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#9906])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9906])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [PASS][315] -> [FAIL][316] ([i915#15453])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [FAIL][317] ([i915#14433])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#3708])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][319] ([i915#12910]) +9 other tests fail
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#9917])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#9917])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][322] ([i915#12910])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9917])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][324] ([i915#13356]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][326] ([i915#12392] / [i915#13356]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-snb: [ABORT][328] ([i915#14871]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg1: [TIMEOUT][330] ([i915#3778]) -> [PASS][331] +1 other test pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: [SKIP][332] ([i915#4270]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@gem_pxp@create-regular-buffer.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [INCOMPLETE][334] ([i915#13356]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [INCOMPLETE][336] ([i915#13356]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-glk3/igt@i915_pm_rpm@system-suspend.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@i915_pm_rpm@system-suspend.html
* igt@intel_hwmon@hwmon-read:
- shard-dg1: [FAIL][338] -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-19/igt@intel_hwmon@hwmon-read.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@intel_hwmon@hwmon-read.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][340] ([i915#15582]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][342] ([i915#12655] / [i915#3555]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_color@deep-color.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [FAIL][344] ([i915#13566]) -> [PASS][345] +2 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [FAIL][346] ([i915#13566]) -> [PASS][347] +3 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][348] ([i915#2346]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][350] ([i915#3555]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [ABORT][352] ([i915#15132]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_plane_cursor@primary:
- shard-dg1: [DMESG-WARN][354] ([i915#4423]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_plane_cursor@primary.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_plane_cursor@primary.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][356] ([i915#14544] / [i915#15073]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][358] ([i915#15073]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][360] ([i915#15073]) -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1:
- shard-snb: [DMESG-WARN][362] ([i915#13899]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][364] ([i915#4349]) -> [PASS][365] +3 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][366] ([i915#4349]) -> [PASS][367] +4 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][368] ([i915#8411]) -> [SKIP][369] ([i915#14544] / [i915#8411]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][370] ([i915#9323]) -> [SKIP][371] ([i915#14544] / [i915#9323])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][372] ([i915#3555] / [i915#9323]) -> [SKIP][373] ([i915#14544] / [i915#3555] / [i915#9323])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][374] ([i915#14544] / [i915#9323]) -> [SKIP][375] ([i915#9323])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: [SKIP][376] ([i915#4525]) -> [SKIP][377] ([i915#14544] / [i915#4525]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@gem_exec_balancer@parallel.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: [SKIP][378] ([i915#14544] / [i915#4525]) -> [SKIP][379] ([i915#4525])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-rkl: [SKIP][380] ([i915#14544] / [i915#3281]) -> [SKIP][381] ([i915#3281]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: [SKIP][382] ([i915#3281]) -> [SKIP][383] ([i915#14544] / [i915#3281]) +3 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][384] ([i915#4613] / [i915#7582]) -> [SKIP][385] ([i915#14544] / [i915#4613] / [i915#7582])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][386] ([i915#4613]) -> [SKIP][387] ([i915#14544] / [i915#4613])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][388] ([i915#14544] / [i915#3282]) -> [SKIP][389] ([i915#3282])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pread@self:
- shard-rkl: [SKIP][390] ([i915#3282]) -> [SKIP][391] ([i915#14544] / [i915#3282])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@gem_pread@self.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_pread@self.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: [SKIP][392] ([i915#14544] / [i915#8411]) -> [SKIP][393] ([i915#8411])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: [SKIP][394] ([i915#14544] / [i915#3297]) -> [SKIP][395] ([i915#3297])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_userptr_blits@access-control.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_userptr_blits@access-control.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][396] ([i915#14544] / [i915#2527]) -> [SKIP][397] ([i915#2527])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][398] ([i915#2527]) -> [SKIP][399] ([i915#14544] / [i915#2527]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][400] ([i915#13821]) -> [INCOMPLETE][401] ([i915#13729] / [i915#13821])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb1/igt@i915_pm_rps@reset.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb6/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][402] ([i915#14544] / [i915#7984]) -> [SKIP][403] ([i915#7984])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@i915_power@sanity.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][404] ([i915#6245]) -> [SKIP][405] ([i915#14544] / [i915#6245])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@i915_query@hwconfig_table.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][406] ([i915#14544] / [i915#7707]) -> [SKIP][407] ([i915#7707])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#5286]) -> [SKIP][409] ([i915#5286]) +3 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][410] ([i915#5286]) -> [SKIP][411] ([i915#14544] / [i915#5286]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#3828]) -> [SKIP][413] ([i915#3828])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#3638]) -> [SKIP][415] ([i915#3638])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#6095]) -> [SKIP][417] ([i915#6095]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][418] ([i915#6095]) -> [SKIP][419] ([i915#14544] / [i915#6095]) +7 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][420] ([i915#14098] / [i915#6095]) -> [SKIP][421] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][422] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][423] ([i915#14098] / [i915#6095]) +6 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][424] ([i915#3742]) -> [SKIP][425] ([i915#14544] / [i915#3742])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cdclk@mode-transition.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][426] ([i915#11151] / [i915#7828]) -> [SKIP][427] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: [SKIP][428] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][429] ([i915#11151] / [i915#7828]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][431] ([i915#15330] / [i915#3116])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: [SKIP][432] ([i915#6944] / [i915#9424]) -> [SKIP][433] ([i915#14544] / [i915#6944] / [i915#9424])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][434] ([i915#6944] / [i915#7118]) -> [FAIL][435] ([i915#7173])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_content_protection@srm.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: [FAIL][436] ([i915#1339] / [i915#7173]) -> [SKIP][437] ([i915#6944] / [i915#7118] / [i915#9424])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_content_protection@uevent.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-dg2: [SKIP][438] ([i915#6944]) -> [FAIL][439] ([i915#7173])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-1/igt@kms_content_protection@uevent-hdcp14.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][440] ([i915#13049]) -> [SKIP][441] ([i915#13049] / [i915#14544]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][442] ([i915#3555]) -> [SKIP][443] ([i915#14544] / [i915#3555]) +3 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][444] -> [SKIP][445] ([i915#14544]) +8 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][446] ([i915#9723]) -> [SKIP][447] ([i915#14544] / [i915#9723])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][449] ([i915#3555] / [i915#3804])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#3804]) -> [SKIP][451] ([i915#3804])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: [SKIP][452] ([i915#13749]) -> [SKIP][453] ([i915#13749] / [i915#14544])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][454] ([i915#3555] / [i915#3840]) -> [SKIP][455] ([i915#14544] / [i915#3555] / [i915#3840])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][456] ([i915#3955]) -> [SKIP][457] ([i915#14544] / [i915#3955])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#1839]) -> [SKIP][459] ([i915#1839])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#658]) -> [SKIP][461] ([i915#658])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_feature_discovery@psr2.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#9934]) -> [SKIP][463] ([i915#9934]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: [SKIP][464] ([i915#9934]) -> [SKIP][465] ([i915#14544] / [i915#9934]) +1 other test skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][466] ([i915#2672] / [i915#3555]) -> [SKIP][467] ([i915#14544]) +3 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: [SKIP][468] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][469] ([i915#5190]) +10 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][470] ([i915#15102]) -> [SKIP][471] ([i915#14544] / [i915#15102]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][473] ([i915#15102] / [i915#3023]) +6 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][474] ([i915#15102] / [i915#3458]) -> [SKIP][475] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][476] ([i915#14544]) -> [SKIP][477] +3 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#1825]) -> [SKIP][479] ([i915#1825]) +9 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#15102]) -> [SKIP][481] ([i915#15102])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][482] ([i915#15102] / [i915#3023]) -> [SKIP][483] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-dg1: [SKIP][484] -> [SKIP][485] ([i915#4423])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][486] ([i915#1825]) -> [SKIP][487] ([i915#14544] / [i915#1825]) +14 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#15574]) -> [SKIP][489] ([i915#15574]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt:
- shard-rkl: [SKIP][490] ([i915#15574]) -> [SKIP][491] ([i915#14544] / [i915#15574])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][492] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][493] ([i915#15102] / [i915#3458]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][494] ([i915#15458]) -> [SKIP][495] ([i915#14544] / [i915#15458])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][496] ([i915#6301]) -> [SKIP][497] ([i915#14544] / [i915#6301])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#6301]) -> [SKIP][499] ([i915#6301])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_panel_fitting@legacy.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][500] ([i915#14712]) -> [SKIP][501] ([i915#14544] / [i915#14712])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][502] ([i915#9685]) -> [SKIP][503] ([i915#14544] / [i915#9685])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#9340]) -> [SKIP][505] ([i915#3828])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][506] ([i915#15403]) -> [SKIP][507] ([i915#14544] / [i915#15403])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_pm_rpm@package-g7.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#6524]) -> [SKIP][509] ([i915#6524])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-rkl: [SKIP][510] ([i915#11520]) -> [SKIP][511] ([i915#11520] / [i915#14544]) +2 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][512] ([i915#11520] / [i915#14544]) -> [SKIP][513] ([i915#11520])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-rkl: [SKIP][514] ([i915#1072] / [i915#9732]) -> [SKIP][515] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][516] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][517] ([i915#1072] / [i915#9732]) +7 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg1: [SKIP][518] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][519] ([i915#1072] / [i915#9732])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_psr@psr-sprite-blt.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_psr@psr-sprite-blt.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#3555]) -> [SKIP][521] ([i915#3555])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][523] ([i915#15243] / [i915#3555])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_vrr@flip-basic.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#3708]) -> [SKIP][525] ([i915#3708]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15573]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573
[i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8709 -> IGTPW_14386
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17859: b7c3274a57563fc1652889043a6e8d08473e5f31 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14386: 14386
IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/index.html
[-- Attachment #2: Type: text/html, Size: 181210 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
` (3 preceding siblings ...)
2026-01-21 17:58 ` ✗ i915.CI.Full: " Patchwork
@ 2026-01-23 8:32 ` B, Jeevan
2026-01-29 14:34 ` Kamil Konieczny
5 siblings, 0 replies; 9+ messages in thread
From: B, Jeevan @ 2026-01-23 8:32 UTC (permalink / raw)
To: B S, Karthik, igt-dev@lists.freedesktop.org
Cc: Sharma, Swati2, Heikkila, Juha-pekka, Naladala, Ramanaidu,
B S, Karthik
LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Karthik B
> S
> Sent: Wednesday, January 21, 2026 10:52 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Sharma, Swati2 <swati2.sharma@intel.com>; Heikkila, Juha-pekka <juha-
> pekka.heikkila@intel.com>; Naladala, Ramanaidu
> <ramanaidu.naladala@intel.com>; B S, Karthik <karthik.b.s@intel.com>
> Subject: [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the
> beginning of the subtest
>
> Previously, setup_fb() contained the igt_require() for format + modifier,
> causing the dynamic test to be intialized only to skip eventually if the
> combination is unsupported.
> This patch moves format/modifier checks to the per-subtest level.
>
> Additionally, linear framebuffers combined with REFLECT_X rotation are not
> supported on Intel platforms prior to gen35. To make this explicit and reduce
> CI run time, the test now performs an early skip for this combination, clearly
> stating the reason in the skip message.
>
> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
> ---
> tests/intel/kms_flip_scaled_crc.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/kms_flip_scaled_crc.c
> b/tests/intel/kms_flip_scaled_crc.c
> index 954b46b5f..91e5793f4 100644
> --- a/tests/intel/kms_flip_scaled_crc.c
> +++ b/tests/intel/kms_flip_scaled_crc.c
> @@ -670,9 +670,6 @@ const struct {
> static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t width,
> uint32_t height, uint64_t format, uint64_t modifier) {
> - igt_require(igt_display_has_format_mod(&data->display, format,
> - modifier));
> -
> igt_create_color_fb(data->drm_fd, width, height,
> format, modifier, 0, 1, 0, newfb); } @@ -901,6
> +898,18 @@ int igt_main()
> for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
> igt_describe(flip_scenario_test[index].describe);
> igt_subtest_with_dynamic(flip_scenario_test[index].name) {
> +
> igt_require(igt_display_has_format_mod(&data.display,
> +
> flip_scenario_test[index].firstformat,
> +
> flip_scenario_test[index].firstmodifier));
> +
> igt_require(igt_display_has_format_mod(&data.display,
> +
> flip_scenario_test[index].secondformat,
> +
> flip_scenario_test[index].secondmodifier));
> +
> + if(flip_scenario_test[index].secondmodifier ==
> DRM_FORMAT_MOD_LINEAR &&
> + flip_scenario_test[index].secondrotation &
> IGT_REFLECT_X)
> + igt_require_f(data.gen >= 35,
> + "Linear fb with REFLECT_X
> unsupported");
> +
> free_fbs(&data);
> for_each_pipe(&data.display, pipe) {
> bool found = false;
> --
> 2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
` (4 preceding siblings ...)
2026-01-23 8:32 ` [PATCH i-g-t] " B, Jeevan
@ 2026-01-29 14:34 ` Kamil Konieczny
2026-01-29 15:08 ` Karthik B S
5 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2026-01-29 14:34 UTC (permalink / raw)
To: Karthik B S
Cc: Jeevan B, igt-dev, swati2.sharma, juha-pekka.heikkila,
ramanaidu.naladala
Hi Karthik,
On 2026-01-21 at 10:51:58 +0530, Karthik B S wrote:
add 'intel/' after 'test/' in subject:
[PATCH i-g-t] tests/intel/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
> Previously, setup_fb() contained the igt_require() for format + modifier,
> causing the dynamic test to be intialized only to skip eventually if the
s/intialized/initialized/
> combination is unsupported.
> This patch moves format/modifier checks to the per-subtest level.
>
> Additionally, linear framebuffers combined with REFLECT_X rotation are
> not supported on Intel platforms prior to gen35. To make this explicit and
> reduce CI run time, the test now performs an early skip for this
> combination, clearly stating the reason in the skip message.
+cc Jeevan B <jeevan.b@intel.com>
>
> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
> ---
> tests/intel/kms_flip_scaled_crc.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/kms_flip_scaled_crc.c b/tests/intel/kms_flip_scaled_crc.c
> index 954b46b5f..91e5793f4 100644
> --- a/tests/intel/kms_flip_scaled_crc.c
> +++ b/tests/intel/kms_flip_scaled_crc.c
> @@ -670,9 +670,6 @@ const struct {
> static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t width,
> uint32_t height, uint64_t format, uint64_t modifier)
> {
> - igt_require(igt_display_has_format_mod(&data->display, format,
> - modifier));
> -
> igt_create_color_fb(data->drm_fd, width, height,
> format, modifier, 0, 1, 0, newfb);
> }
> @@ -901,6 +898,18 @@ int igt_main()
> for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
> igt_describe(flip_scenario_test[index].describe);
> igt_subtest_with_dynamic(flip_scenario_test[index].name) {
> + igt_require(igt_display_has_format_mod(&data.display,
> + flip_scenario_test[index].firstformat,
> + flip_scenario_test[index].firstmodifier));
> + igt_require(igt_display_has_format_mod(&data.display,
> + flip_scenario_test[index].secondformat,
> + flip_scenario_test[index].secondmodifier));
> +
> + if(flip_scenario_test[index].secondmodifier == DRM_FORMAT_MOD_LINEAR &&
Add space after 'if':
if (flip_scenario_test[index].secondmodifier == DRM_FORMAT_MOD_LINEAR &&
> + flip_scenario_test[index].secondrotation & IGT_REFLECT_X)
> + igt_require_f(data.gen >= 35,
> + "Linear fb with REFLECT_X unsupported");
Add newline at end of message:
"Linear fb with REFLECT_X unsupported\n");
Without it in report there is:
Linear fb with REFLECT_X unsupportedSubtest flip-P016-linear-to-P016-linear-reflect-x: SKIP (0.000s)
Regards,
Kamil
> +
> free_fbs(&data);
> for_each_pipe(&data.display, pipe) {
> bool found = false;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-29 14:34 ` Kamil Konieczny
@ 2026-01-29 15:08 ` Karthik B S
0 siblings, 0 replies; 9+ messages in thread
From: Karthik B S @ 2026-01-29 15:08 UTC (permalink / raw)
To: Kamil Konieczny, Jeevan B, igt-dev, swati2.sharma,
juha-pekka.heikkila, ramanaidu.naladala
Hi Kamil,
Thank you for the review. Will fix these during merge.
Thanks and Regards,
Karthik.B.S
On 1/29/2026 8:04 PM, Kamil Konieczny wrote:
> Hi Karthik,
> On 2026-01-21 at 10:51:58 +0530, Karthik B S wrote:
>
> add 'intel/' after 'test/' in subject:
>
> [PATCH i-g-t] tests/intel/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
>
>> Previously, setup_fb() contained the igt_require() for format + modifier,
>> causing the dynamic test to be intialized only to skip eventually if the
> s/intialized/initialized/
>
>> combination is unsupported.
>> This patch moves format/modifier checks to the per-subtest level.
>>
>> Additionally, linear framebuffers combined with REFLECT_X rotation are
>> not supported on Intel platforms prior to gen35. To make this explicit and
>> reduce CI run time, the test now performs an early skip for this
>> combination, clearly stating the reason in the skip message.
> +cc Jeevan B <jeevan.b@intel.com>
>
>> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
>> ---
>> tests/intel/kms_flip_scaled_crc.c | 15 ++++++++++++---
>> 1 file changed, 12 insertions(+), 3 deletions(-)
>>
>> diff --git a/tests/intel/kms_flip_scaled_crc.c b/tests/intel/kms_flip_scaled_crc.c
>> index 954b46b5f..91e5793f4 100644
>> --- a/tests/intel/kms_flip_scaled_crc.c
>> +++ b/tests/intel/kms_flip_scaled_crc.c
>> @@ -670,9 +670,6 @@ const struct {
>> static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t width,
>> uint32_t height, uint64_t format, uint64_t modifier)
>> {
>> - igt_require(igt_display_has_format_mod(&data->display, format,
>> - modifier));
>> -
>> igt_create_color_fb(data->drm_fd, width, height,
>> format, modifier, 0, 1, 0, newfb);
>> }
>> @@ -901,6 +898,18 @@ int igt_main()
>> for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
>> igt_describe(flip_scenario_test[index].describe);
>> igt_subtest_with_dynamic(flip_scenario_test[index].name) {
>> + igt_require(igt_display_has_format_mod(&data.display,
>> + flip_scenario_test[index].firstformat,
>> + flip_scenario_test[index].firstmodifier));
>> + igt_require(igt_display_has_format_mod(&data.display,
>> + flip_scenario_test[index].secondformat,
>> + flip_scenario_test[index].secondmodifier));
>> +
>> + if(flip_scenario_test[index].secondmodifier == DRM_FORMAT_MOD_LINEAR &&
> Add space after 'if':
> if (flip_scenario_test[index].secondmodifier == DRM_FORMAT_MOD_LINEAR &&
>
>> + flip_scenario_test[index].secondrotation & IGT_REFLECT_X)
>> + igt_require_f(data.gen >= 35,
>> + "Linear fb with REFLECT_X unsupported");
> Add newline at end of message:
> "Linear fb with REFLECT_X unsupported\n");
>
> Without it in report there is:
>
> Linear fb with REFLECT_X unsupportedSubtest flip-P016-linear-to-P016-linear-reflect-x: SKIP (0.000s)
>
> Regards,
> Kamil
>
>> +
>> free_fbs(&data);
>> for_each_pipe(&data.display, pipe) {
>> bool found = false;
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest
2026-01-21 17:58 ` ✗ i915.CI.Full: " Patchwork
@ 2026-01-29 15:18 ` Karthik B S
0 siblings, 0 replies; 9+ messages in thread
From: Karthik B S @ 2026-01-29 15:18 UTC (permalink / raw)
To: igt-dev
[-- Attachment #1: Type: text/plain, Size: 178903 bytes --]
Hi,
The change in output of kms_flip_scaled_crc@.*reflect-x tests is
expected as test is now skipping before triggering the dynamic subtest.
So not a genuine failure.
Will go ahead with merge.
Thanks and Regards,
Karthik.B.S
On 1/21/2026 11:28 PM, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* tests/kms_flip_scaled_crc: Move require checks at the
> beginning of the subtest
> *URL:* https://patchwork.freedesktop.org/series/160397/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/index.html
>
>
> CI Bug Log - changes from CI_DRM_17859_full -> IGTPW_14386_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_14386_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_14386_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_14386/index.html
>
>
> Participating hosts (9 -> 9)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_14386_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html>
> +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html>
> +4 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html>
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html>
> +1 other test skip
>
>
> Warnings
>
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> o shard-tglu: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> +12 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html>
> +12 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
>
> o shard-tglu: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> (i915#15573
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> +3 other tests skip
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> (i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> +3 other tests skip
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> (i915#15573
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html>
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html>
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> +2 other tests skip
> o shard-tglu: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> +11 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html>
> +16 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html>
> +24 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html>
> (i915#15573
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html>
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-19/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html>
> (i915#15573
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html>
> +3 other tests skip
>
>
> New tests
>
> New tests have been introduced between CI_DRM_17859_full and
> IGTPW_14386_full:
>
>
> New IGT tests (33)
>
> *
>
> igt@i915_pm_rps@4-tiled-8bpp-rotate-0:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@all-busy-idle-check-all:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@bad-size:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@basic-cpu-noreloc:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@cursora-vs-flipb-toggle:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@fbc-1p-offscreen-pri-indfb-draw-render:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@fbc-2p-primscrn-spr-indfb-draw-render:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@int-max-clock:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@invalid-signal-one-illegal-handle:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@linear-16bpp-rotate-180:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@psr-argb161616f-draw-mmap-gtt:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@reset-signaled:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@syncobj-invalid-flags:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@i915_pm_rps@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@alloc_timeline:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@alpha-opaque-fb:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@bad-fence:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@bad-flink:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@coherency-sync:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@crc-primary-basic-4-tiled-dg2-rc-ccs:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@cursor-onscreen-32x10:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@fbc-psr-basic:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@fbcpsr-1p-primscrn-cur-indfb-move:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@invalid-flags:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@nullptr:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@resubmit-new:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@wait-all-complex:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@wait-wedge-10ms:
>
> o Statuses :
> o Exec time: [None] s
> *
>
> igt@kms_cursor_legacy@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>
> o Statuses :
> o Exec time: [None] s
>
>
> Known issues
>
> Here are the changes found in IGTPW_14386_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@api_intel_bb@object-reloc-keep-cache:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@api_intel_bb@object-reloc-keep-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@api_intel_bb@object-reloc-purge-cache:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@gem_ccs@block-copy-compressed:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_close_race@multigpu-basic-threads:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html>
> (i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@gem_close_race@multigpu-basic-threads.html>
> (i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> *
>
> igt@gem_ctx_isolation@preservation-s3:
>
> o shard-glk10: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> +1 other test incomplete
> *
>
> igt@gem_ctx_persistence@processes:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb6/igt@gem_ctx_persistence@processes.html>
> (i915#1099
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>)
> +3 other tests skip
> *
>
> igt@gem_ctx_sseu@engines:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_ctx_sseu@engines.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_ctx_sseu@mmap-args:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_exec_balancer@bonded-pair:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html>
> (i915#4771
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>)
> *
>
> igt@gem_exec_balancer@parallel-balancer:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@gem_exec_balancer@parallel-balancer.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> +1 other test skip
> *
>
> igt@gem_exec_balancer@sliced:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_exec_balancer@sliced.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_exec_balancer@sliced.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_flush@basic-batch-kernel-default-uc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> *
>
> igt@gem_exec_flush@basic-uc-prw-default:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>)
> *
>
> igt@gem_exec_flush@basic-wb-ro-default:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_exec_flush@basic-wb-ro-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> *
>
> igt@gem_exec_params@secure-non-master:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_params@secure-non-master.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +5 other tests skip
> *
>
> igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +4 other tests skip
> *
>
> igt@gem_exec_reloc@basic-write-gtt-active:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_exec_reloc@basic-write-gtt-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +3 other tests skip
> *
>
> igt@gem_exec_schedule@preempt-queue-contexts:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_schedule@preempt-queue-contexts-chain:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +1 other test skip
> *
>
> igt@gem_fence_thrash@bo-write-verify-y:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> *
>
> igt@gem_fenced_exec_thrash@no-spare-fences:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> +1 other test skip
> *
>
> igt@gem_lmem_swapping@heavy-verify-random:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> *
>
> igt@gem_lmem_swapping@parallel-random-verify-ccs:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +1 other test skip
> *
>
> igt@gem_lmem_swapping@verify-random-ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@gem_lmem_swapping@verify-random-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +1 other test skip
> *
>
> igt@gem_media_fill@media-fill:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@gem_media_fill@media-fill.html>
> (i915#8289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289>)
> *
>
> igt@gem_media_vme:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gem_media_vme.html>
> (i915#284
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>)
> *
>
> igt@gem_mmap_gtt@basic-short:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_mmap_gtt@basic-short.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +3 other tests skip
> *
>
> igt@gem_mmap_gtt@cpuset-medium-copy-xy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +7 other tests skip
> *
>
> igt@gem_mmap_offset@clear-via-pagefault:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html>
> (i915#14809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809>)
> +1 other test abort
> *
>
> igt@gem_mmap_wc@coherency:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@gem_mmap_wc@coherency.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +2 other tests skip
> *
>
> igt@gem_mmap_wc@read-write-distinct:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@gem_mmap_wc@read-write-distinct.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +1 other test skip
> *
>
> igt@gem_partial_pwrite_pread@reads-uncached:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +4 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +1 other test skip
> *
>
> igt@gem_pxp@display-protected-crc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@gem_pxp@display-protected-crc.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +1 other test skip
> *
>
> igt@gem_pxp@verify-pxp-stale-ctx-execution:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-ctx-execution.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +1 other test skip
> *
>
> igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>
> / i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +5 other tests skip
> *
>
> igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html>
> (i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +2 other tests skip
> *
>
> igt@gem_render_tiled_blits@basic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@gem_render_tiled_blits@basic.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> *
>
> igt@gem_set_tiling_vs_blt@tiled-to-untiled:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> *
>
> igt@gem_softpin@noreloc-s3:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@gem_softpin@noreloc-s3.html>
> (i915#13809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809>)
> *
>
> igt@gem_userptr_blits@access-control:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gem_userptr_blits@access-control.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@dmabuf-sync:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html>
> (i915#3323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
> *
>
> igt@gem_userptr_blits@readonly-pwrite-unsync:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@gem_userptr_blits@readonly-pwrite-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@readonly-unsync:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_workarounds@suspend-resume-fd:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_workarounds@suspend-resume-fd.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> *
>
> igt@gen9_exec_parse@allowed-single:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@bb-secure:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@unaligned-access:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +2 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@gen9_exec_parse@unaligned-access.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@unaligned-jump:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +6 other tests skip
> *
>
> igt@i915_drm_fdinfo@busy-check-all:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@i915_drm_fdinfo@busy-check-all.html>
> (i915#11527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>)
> +5 other tests skip
> *
>
> igt@i915_module_load@fault-injection:
>
> o shard-rkl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection.html>
> (i915#15342
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342>
> / i915#15481
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
> *
>
> igt@i915_module_load@fault-injection@i915_driver_hw_probe:
>
> o shard-rkl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html>
> (i915#15481
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
> *
>
> igt@i915_module_load@fault-injection@intel_connector_register:
>
> o shard-rkl: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@intel_connector_register.html>
> (i915#15342
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342>)
> *
>
> igt@i915_module_load@fault-injection@intel_gt_init-enodev:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html>
> (i915#15479
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479>)
> +4 other tests skip
> *
>
> igt@i915_module_load@reload-no-display:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-17/igt@i915_module_load@reload-no-display.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@i915_module_load@reload-no-display.html>
> (i915#13029
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029>
> / i915#14545
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>)
> *
>
> igt@i915_module_load@resize-bar:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@i915_module_load@resize-bar.html>
> (i915#6412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>)
> *
>
> igt@i915_pm_freq_api@freq-basic-api:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_freq_api@freq-reset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_freq_api@freq-reset-multiple:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_rc6_residency@media-rc6-accuracy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html>
> +9 other tests skip
> *
>
> igt@i915_pm_rc6_residency@rc6-accuracy:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +1 other test fail
> *
>
> igt@i915_pm_rpm@system-suspend-execbuf:
>
> o shard-dg2: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-3/igt@i915_pm_rpm@system-suspend-execbuf.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> *
>
> igt@i915_pm_rps@thresholds-park:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html>
> (i915#11681
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>)
> +1 other test skip
> *
>
> igt@i915_suspend@debugfs-reader:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@i915_suspend@debugfs-reader.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_suspend@debugfs-reader.html>
> (i915#4817
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> +1 other test incomplete
> *
>
> igt@i915_suspend@fence-restore-untiled:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@i915_suspend@fence-restore-untiled.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +4 other tests skip
> *
>
> igt@kms_addfb_basic@bo-too-small-due-to-tiling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> *
>
> igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (i915#9531
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (i915#9531
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_big_fb@4-tiled-16bpp-rotate-0:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +2 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-addfb-size-overflow:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +1 other test skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> (i915#5138
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +7 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@linear-8bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +1 other test skip
> *
>
> igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_big_fb@x-tiled-64bpp-rotate-90:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +1 other test skip
> *
>
> igt@kms_big_fb@y-tiled-addfb:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +1 other test skip
> *
>
> igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +4 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html>
> *
>
> igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +214 other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +56 other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +135 other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#10434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +1 other test skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +60 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html>
> +298 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +39 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html>
> (i915#12805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +5 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +29 other tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +64 other tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +8 other tests skip
> *
>
> igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html>
> (i915#13781
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>)
> +3 other tests skip
> *
>
> igt@kms_cdclk@plane-scaling:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_cdclk@plane-scaling.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_cdclk@plane-scaling.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> *
>
> igt@kms_chamelium_audio@dp-audio:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +9 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_chamelium_audio@dp-audio.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +1 other test skip
> *
>
> igt@kms_chamelium_color@ctm-max:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html>
> +1 other test skip
> *
>
> igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +1 other test skip
> *
>
> igt@kms_chamelium_frames@dp-crc-fast:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +3 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_color@deep-color:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_color@deep-color.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_color@deep-color.html>
> (i915#12655
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_content_protection@atomic.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_content_protection@atomic.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>
> / i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@atomic-dpms-hdcp14:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> +1 other test skip
> *
>
> igt@kms_content_protection@dp-mst-type-0:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>
> / i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> *
>
> igt@kms_content_protection@dp-mst-type-0-hdcp14:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
> +1 other test skip
> *
>
> igt@kms_content_protection@legacy-hdcp14:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_content_protection@legacy-hdcp14.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_content_protection@legacy-hdcp14.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> *
>
> igt@kms_content_protection@lic-type-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_content_protection@lic-type-1.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> +1 other test fail
> *
>
> igt@kms_cursor_crc@cursor-offscreen-32x10:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-256x85:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +5 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-onscreen-32x10:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-32x32:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_cursor_crc@cursor-random-128x42:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +3 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-random-64x21:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_cursor_crc@cursor-random-64x21.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +2 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-512x170:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-512x512:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-512x170:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x170.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-64x21:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +4 other tests fail
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> +1 other test skip
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>
> / i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> *
>
> igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html>
> (i915#4391
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html>
> (i915#9809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html>
> (i915#13046
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> *
>
> igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html>
> (i915#13562
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>)
> *
>
> igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9833
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>)
> *
>
> igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> *
>
> igt@kms_display_modes@extended-mode-basic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html>
> (i915#13691
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@kms_dp_aux_dev:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_dp_aux_dev.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_dp_aux_dev.html>
> (i915#1257
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>)
> *
>
> igt@kms_dp_link_training@uhbr-mst:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_dp_link_training@uhbr-mst.html>
> (i915#13748
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> *
>
> igt@kms_dp_link_training@uhbr-sst:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html>
> (i915#13748
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html>
> (i915#13748
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> *
>
> igt@kms_dp_linktrain_fallback@dp-fallback:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html>
> (i915#13707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
> *
>
> igt@kms_dp_linktrain_fallback@dsc-fallback:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html>
> (i915#13707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
> *
>
> igt@kms_dsc@dsc-basic:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_dsc@dsc-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_dsc@dsc-with-bpc-formats:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> *
>
> igt@kms_feature_discovery@chamelium:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> *
>
> igt@kms_feature_discovery@display-2x:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_feature_discovery@display-2x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> *
>
> igt@kms_feature_discovery@display-3x:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_feature_discovery@display-3x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> *
>
> igt@kms_flip@2x-absolute-wf_vblank:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_flip@2x-absolute-wf_vblank.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +2 other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-modeset:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@kms_flip@2x-flip-vs-modeset.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +11 other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-modeset-vs-hang:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +3 other tests skip
> *
>
> igt@kms_flip@2x-modeset-vs-vblank-race:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +5 other tests skip
> *
>
> igt@kms_flip@2x-plain-flip:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_flip@2x-plain-flip.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> *
>
> igt@kms_flip@flip-vs-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_flip@flip-vs-suspend.html>
> (i915#12314
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314>
> / i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>
> / i915#4839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>
> / i915#6113
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>)
> *
>
> igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html>
> (i915#12314
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314>
> / i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>
> / i915#6113
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8810
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>
> / i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html>
> (i915#8810
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>
> / i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
> (i915#15389
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389>
> / i915#6880
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
> +1 other test fail
> *
>
> igt@kms_frontbuffer_tracking@fbc-suspend:
>
> o shard-glk10: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> (i915#10056
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-4:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html>
> (i915#10055
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +16 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +5 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +5 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> +18 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html>
> +49 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-gtt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-gtt.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-gtt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +11 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9766
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +7 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html>
> +29 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +19 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> *
>
> igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +25 other tests skip
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-6/igt@kms_hdr@invalid-hdr.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> +1 other test skip
> *
>
> igt@kms_hdr@static-toggle:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_hdr@static-toggle.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@static-toggle-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_joiner@basic-force-big-joiner:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html>
> (i915#15459
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_joiner@invalid-modeset-force-big-joiner:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
> (i915#15459
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> *
>
> igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html>
> (i915#13522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html>
> (i915#13522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
> *
>
> igt@kms_plane@plane-panning-bottom-right-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html>
> (i915#13026
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026>)
> +1 other test incomplete
> *
>
> igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html>
> (i915#14412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412>)
> +1 other test incomplete
> *
>
> igt@kms_plane_alpha_blend@alpha-opaque-fb:
>
> o shard-glk10: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>
> / i915#12169
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>)
> *
>
> igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1:
>
> o shard-glk10: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>)
> +1 other test fail
> *
>
> igt@kms_plane_multiple@2x-tiling-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-4.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> +1 other test skip
> *
>
> igt@kms_plane_multiple@2x-tiling-none:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> *
>
> igt@kms_plane_multiple@tiling-4:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_plane_multiple@tiling-4.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> *
>
> igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>
> / i915#6953
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>)
> *
>
> igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +3 other tests skip
> *
>
> igt@kms_pm_backlight@fade-with-suspend:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_backlight@fade-with-suspend.html>
> (i915#9812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>)
> +2 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> *
>
> igt@kms_pm_dc@dc3co-vpb-simulation:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_pm_dc@dc5-psr:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_pm_dc@dc5-retention-flops:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-6/igt@kms_pm_dc@dc5-retention-flops.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_pm_dc@dc5-retention-flops.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> *
>
> igt@kms_pm_lpsp@kms-lpsp:
>
> o shard-glk10: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html>
> +54 other tests skip
> *
>
> igt@kms_pm_rpm@dpms-non-lpsp:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> +2 other tests skip
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> +1 other test skip
> *
>
> igt@kms_pm_rpm@package-g7:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_pm_rpm@package-g7.html>
> (i915#15403
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
> *
>
> igt@kms_pm_rpm@system-suspend-idle:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html>
> (i915#14419
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
> *
>
> igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +4 other tests skip
> *
>
> igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +6 other tests skip
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +5 other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html>
> (i915#12316
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>)
> +1 other test skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +8 other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +7 other tests skip
> *
>
> igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +6 other tests skip
> o shard-glk10: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +1 other test skip
> *
>
> igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +1 other test skip
> *
>
> igt@kms_psr2_su@page_flip-xrgb8888:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> +1 other test skip
> *
>
> igt@kms_psr@fbc-psr-dpms:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-8/igt@kms_psr@fbc-psr-dpms.html>
> (i915#9688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
> +5 other tests skip
> *
>
> igt@kms_psr@fbc-psr-no-drrs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +21 other tests skip
> *
>
> igt@kms_psr@fbc-psr-primary-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +1 other test skip
> *
>
> igt@kms_psr@pr-sprite-plane-onoff:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +8 other tests skip
> *
>
> igt@kms_psr@psr-cursor-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +11 other tests skip
> *
>
> igt@kms_psr@psr2-cursor-mmap-gtt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +9 other tests skip
> *
>
> igt@kms_psr@psr2-sprite-blt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_psr@psr2-sprite-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +12 other tests skip
> *
>
> igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_rotation_crc@bad-pixel-format:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html>
> +192 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>)
> +1 other test skip
> *
>
> igt@kms_rotation_crc@multiplane-rotation-cropping-top:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html>
> (i915#15492
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-270:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-14/igt@kms_rotation_crc@sprite-rotation-270.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@kms_rotation_crc@sprite-rotation-270.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>)
> +1 other test skip
> *
>
> igt@kms_tiled_display@basic-test-pattern:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> +1 other test skip
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#10959
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> *
>
> igt@kms_vrr@lobf:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_vrr@lobf.html>
> (i915#11920
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>)
> *
>
> igt@kms_vrr@max-min:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_vrr@max-min.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@kms_vrr@seamless-rr-switch-vrr:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@perf_pmu@all-busy-idle-check-all:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html>
> (i915#15453
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453>)
> *
>
> igt@perf_pmu@module-unload:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-5/igt@perf_pmu@module-unload.html>
> (i915#14433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>)
> *
>
> igt@prime_vgem@fence-write-hang:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@prime_vgem@fence-write-hang.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> *
>
> igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
>
> o shard-tglu-1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html>
> (i915#12910
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>)
> +9 other tests fail
> *
>
> igt@sriov_basic@enable-vfs-autoprobe-on:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> *
>
> igt@sriov_basic@enable-vfs-bind-unbind-each:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> *
>
> igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html>
> (i915#12910
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
>
>
> Possible fixes
>
> *
>
> igt@gem_ccs@suspend-resume:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-5/igt@gem_ccs@suspend-resume.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_ccs@suspend-resume.html>
> *
>
> igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html>
> (i915#12392
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392>
> / i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html>
> *
>
> igt@gem_ctx_isolation@preservation-s3@rcs0:
>
> o shard-snb: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
> (i915#14871
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
> +1 other test pass
> *
>
> igt@gem_exec_endless@dispatch@bcs0:
>
> o shard-dg1: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-15/igt@gem_exec_endless@dispatch@bcs0.html>
> (i915#3778
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-19/igt@gem_exec_endless@dispatch@bcs0.html>
> +1 other test pass
> *
>
> igt@gem_pxp@create-regular-buffer:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@gem_pxp@create-regular-buffer.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html>
> *
>
> igt@gem_workarounds@suspend-resume-context:
>
> o shard-rkl: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html>
> *
>
> igt@i915_pm_rpm@system-suspend:
>
> o shard-glk: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-glk3/igt@i915_pm_rpm@system-suspend.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@i915_pm_rpm@system-suspend.html>
> *
>
> igt@intel_hwmon@hwmon-read:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-19/igt@intel_hwmon@hwmon-read.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-18/igt@intel_hwmon@hwmon-read.html>
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html>
> (i915#15582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html>
> +1 other test pass
> *
>
> igt@kms_color@deep-color:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_color@deep-color.html>
> (i915#12655
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_color@deep-color.html>
> *
>
> igt@kms_cursor_crc@cursor-random-256x85:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html>
> +2 other tests pass
> *
>
> igt@kms_cursor_crc@cursor-sliding-256x85:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html>
> +3 other tests pass
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
> (i915#2346
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html>
> *
>
> igt@kms_fbcon_fbt@fbc-suspend:
>
> o shard-rkl: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html>
> (i915#15132
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html>
> *
>
> igt@kms_plane_cursor@primary:
>
> o shard-dg1: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-16/igt@kms_plane_cursor@primary.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_plane_cursor@primary.html>
> *
>
> igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html>
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> +1 other test pass
> *
>
> igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1:
>
> o shard-snb: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html>
> (i915#13899
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html>
> +1 other test pass
> *
>
> igt@perf_pmu@busy-double-start@rcs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html>
> +3 other tests pass
> *
>
> igt@perf_pmu@busy-double-start@vecs1:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html>
> +4 other tests pass
>
>
> Warnings
>
> *
>
> igt@api_intel_bb@object-reloc-purge-cache:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> +1 other test skip
> *
>
> igt@gem_ccs@block-multicopy-compressed:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_ccs@block-multicopy-inplace:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_ccs@ctrl-surf-copy-new-ctx:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_exec_balancer@parallel:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@gem_exec_balancer@parallel.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_balancer@parallel.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> +1 other test skip
> *
>
> igt@gem_exec_balancer@parallel-out-fence:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> *
>
> igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +1 other test skip
> *
>
> igt@gem_exec_reloc@basic-scanout:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +3 other tests skip
> *
>
> igt@gem_lmem_evict@dontneed-evict-race:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>
> / i915#7582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>
> / i915#7582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>)
> *
>
> igt@gem_lmem_swapping@verify-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> *
>
> igt@gem_partial_pwrite_pread@write-snoop:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gem_partial_pwrite_pread@write-snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> *
>
> igt@gem_pread@self:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@gem_pread@self.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gem_pread@self.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> *
>
> igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@gem_userptr_blits@access-control:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gem_userptr_blits@access-control.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@gem_userptr_blits@access-control.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gen9_exec_parse@allowed-all:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> *
>
> igt@gen9_exec_parse@bb-oversize:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +1 other test skip
> *
>
> igt@i915_pm_rps@reset:
>
> o shard-snb: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-snb1/igt@i915_pm_rps@reset.html>
> (i915#13821
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821>)
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-snb6/igt@i915_pm_rps@reset.html>
> (i915#13729
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729>
> / i915#13821
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821>)
> *
>
> igt@i915_power@sanity:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@i915_power@sanity.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7984
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@i915_power@sanity.html>
> (i915#7984
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>)
> *
>
> igt@i915_query@hwconfig_table:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@i915_query@hwconfig_table.html>
> (i915#6245
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@i915_query@hwconfig_table.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6245
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> *
>
> igt@intel_hwmon@hwmon-write:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@intel_hwmon@hwmon-write.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@intel_hwmon@hwmon-write.html>
> (i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> *
>
> igt@kms_big_fb@4-tiled-64bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-0:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +1 other test skip
> *
>
> igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +1 other test skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +7 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +11 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +6 other tests skip
> *
>
> igt@kms_cdclk@mode-transition:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cdclk@mode-transition.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cdclk@mode-transition.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> *
>
> igt@kms_chamelium_edid@hdmi-edid-read:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_frames@dp-crc-multiple:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-multiple.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +2 other tests skip
> *
>
> igt@kms_content_protection@dp-mst-lic-type-0:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
> *
>
> igt@kms_content_protection@lic-type-1:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_content_protection@lic-type-1.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_content_protection@lic-type-1.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-8/igt@kms_content_protection@srm.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>)
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_content_protection@srm.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-11/igt@kms_content_protection@uevent.html>
> (i915#1339
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339>
> / i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-7/igt@kms_content_protection@uevent.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@uevent-hdcp14:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-1/igt@kms_content_protection@uevent-hdcp14.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x10:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +3 other tests skip
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +8 other tests skip
> *
>
> igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html>
> (i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dp_link_training@non-uhbr-mst:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@kms_dsc@dsc-with-bpc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#3955
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3955
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> *
>
> igt@kms_feature_discovery@display-2x:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_feature_discovery@display-2x.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_feature_discovery@display-2x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> *
>
> igt@kms_feature_discovery@psr2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_feature_discovery@psr2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_feature_discovery@psr2.html>
> (i915#658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
> *
>
> igt@kms_flip@2x-flip-vs-wf_vblank:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> *
>
> igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html>
> +3 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +14 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-cpu.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt.html>
> (i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15574
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>)
> *
>
> igt@kms_frontbuffer_tracking@psr-slowdraw:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-slowdraw.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +1 other test skip
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_panel_fitting@atomic-fastset:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> *
>
> igt@kms_panel_fitting@legacy:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_panel_fitting@legacy.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_panel_fitting@legacy.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> *
>
> igt@kms_pipe_stress@stress-xrgb8888-4tiled:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html>
> (i915#14712
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#14712
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>)
> *
>
> igt@kms_pm_dc@dc5-psr:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_pm_lpsp@kms-lpsp:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9340
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> *
>
> igt@kms_pm_rpm@package-g7:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-4/igt@kms_pm_rpm@package-g7.html>
> (i915#15403
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_pm_rpm@package-g7.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15403
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
> *
>
> igt@kms_prime@basic-crc-hybrid:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> *
>
> igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +2 other tests skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> *
>
> igt@kms_psr@fbc-pr-primary-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-1/igt@kms_psr@fbc-pr-primary-mmap-gtt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +9 other tests skip
> *
>
> igt@kms_psr@psr-cursor-plane-move:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +7 other tests skip
> *
>
> igt@kms_psr@psr-sprite-blt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-dg1-13/igt@kms_psr@psr-sprite-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-dg1-12/igt@kms_psr@psr-sprite-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> *
>
> igt@kms_scaling_modes@scaling-mode-none:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_vrr@flip-basic:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@kms_vrr@flip-basic.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15243
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-5/igt@kms_vrr@flip-basic.html>
> (i915#15243
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@prime_vgem@coherency-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17859/shard-rkl-6/igt@prime_vgem@coherency-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14386/shard-rkl-3/igt@prime_vgem@coherency-gtt.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> +1 other test skip
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8709 -> IGTPW_14386
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_17859: b7c3274a57563fc1652889043a6e8d08473e5f31 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_14386: 14386
> IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
[-- Attachment #2: Type: text/html, Size: 231428 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-01-29 15:19 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-21 5:21 [PATCH i-g-t] tests/kms_flip_scaled_crc: Move require checks at the beginning of the subtest Karthik B S
2026-01-21 8:39 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-21 9:04 ` ✓ i915.CI.BAT: " Patchwork
2026-01-21 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-21 17:58 ` ✗ i915.CI.Full: " Patchwork
2026-01-29 15:18 ` Karthik B S
2026-01-23 8:32 ` [PATCH i-g-t] " B, Jeevan
2026-01-29 14:34 ` Kamil Konieczny
2026-01-29 15:08 ` Karthik B S
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox