* [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips
@ 2026-02-05 4:41 Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Pranay Samala @ 2026-02-05 4:41 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar,
pranay.samala
These changes avoid running source clamping tests on cursor planes and
skip modifier subtests that are not supported on the target display
platform.
Pranay Samala (2):
tests/kms_plane: Skip cursor plane for source clamping
tests/kms_plane: Skip unsupported modifiers
tests/kms_plane.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 1/2] tests/kms_plane: Skip cursor plane for source clamping
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
@ 2026-02-05 4:41 ` Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Pranay Samala @ 2026-02-05 4:41 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar,
pranay.samala
Avoid running source clamping tests on cursor plane,
which do not support clamping.
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_plane.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 2be10f032..a7b1bf25d 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -1090,12 +1090,6 @@ static void test_format_plane(data_t *data, enum pipe pipe,
bool result = true;
bool found = false;
- /*
- * No clamping test for cursor plane
- */
- if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR)
- igt_skip("Clamping is invalid for the cursor plane.\n");
-
for (int i = 0; i < plane->format_mod_count; i++) {
if (data->mod == plane->modifiers[i]) {
found = true;
@@ -1288,6 +1282,9 @@ test_pixel_formats(data_t *data, enum pipe pipe)
for_each_plane_on_pipe(&data->display, pipe, plane) {
if (skip_plane(data, plane))
continue;
+ if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR)
+ continue;
+
igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), plane->index)
test_format_plane(data, pipe, output, plane, &primary_fb);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 2/2] tests/kms_plane: Skip unsupported modifiers
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala
@ 2026-02-05 4:41 ` Pranay Samala
2026-02-05 7:53 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Pranay Samala @ 2026-02-05 4:41 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar,
pranay.samala
Skip modifier subtests that are not supported.
v2: Avoid code duplication (Ramanaidu)
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_plane.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index a7b1bf25d..0aca68faa 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -1467,6 +1467,11 @@ static void run_test(data_t *data, void (*test)(data_t *, enum pipe))
igt_crtc_t *crtc;
int count = 0;
+ igt_require_f(igt_display_has_format_mod(&data->display,
+ DRM_FORMAT_XRGB8888,
+ data->mod),
+ "Modifier not supported\n");
+
for_each_crtc_with_single_output(&data->display, crtc, data->output) {
igt_display_reset(&data->display);
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips (rev2)
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala
@ 2026-02-05 7:53 ` Patchwork
2026-02-05 7:57 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-05 7:53 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1895 bytes --]
== Series Details ==
Series: tests/kms_plane: Refine clamping and modifier skips (rev2)
URL : https://patchwork.freedesktop.org/series/161133/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8738_BAT -> XEIGTPW_14500_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14500_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_pat@pat-index-xe2@render:
- bat-ptl-vm: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7110]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/bat-ptl-vm/igt@xe_pat@pat-index-xe2@render.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/bat-ptl-vm/igt@xe_pat@pat-index-xe2@render.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#6520])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#7110]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7110
Build changes
-------------
* IGT: IGT_8738 -> IGTPW_14500
IGTPW_14500: 4797fc5e0fc91233a377c050b87b7b4e8d55e440 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/index.html
[-- Attachment #2: Type: text/html, Size: 2491 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips (rev2)
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
` (2 preceding siblings ...)
2026-02-05 7:53 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips (rev2) Patchwork
@ 2026-02-05 7:57 ` Patchwork
2026-02-05 22:32 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-06 2:15 ` ✗ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-05 7:57 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1621 bytes --]
== Series Details ==
Series: tests/kms_plane: Refine clamping and modifier skips (rev2)
URL : https://patchwork.freedesktop.org/series/161133/
State : success
== Summary ==
CI Bug Log - changes from IGT_8738 -> IGTPW_14500
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/index.html
Participating hosts (43 -> 40)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_14500 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/bat-mtlp-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8738 -> IGTPW_14500
CI-20190529: 20190529
CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14500: 4797fc5e0fc91233a377c050b87b7b4e8d55e440 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/index.html
[-- Attachment #2: Type: text/html, Size: 2207 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_plane: Refine clamping and modifier skips (rev2)
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
` (3 preceding siblings ...)
2026-02-05 7:57 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-05 22:32 ` Patchwork
2026-02-06 2:15 ` ✗ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-05 22:32 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 143253 bytes --]
== Series Details ==
Series: tests/kms_plane: Refine clamping and modifier skips (rev2)
URL : https://patchwork.freedesktop.org/series/161133/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8738_full -> IGTPW_14500_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14500_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14500_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_14500/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14500_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@hangcheck:
- shard-mtlp: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-1/igt@i915_selftest@live@hangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-7/igt@i915_selftest@live@hangcheck.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-mtlp: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-dg2: NOTRUN -> [SKIP][6] +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][8] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
#### Warnings ####
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-mtlp: [SKIP][9] ([i915#15608] / [i915#8825]) -> [SKIP][10] +9 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][11] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][12] +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: [SKIP][13] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][14] +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
- shard-mtlp: [SKIP][15] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][16] +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: [SKIP][17] ([i915#15608] / [i915#8825]) -> [SKIP][18] +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-rkl: [SKIP][19] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][20] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-tglu-1: [SKIP][21] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][23] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][24] +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: [SKIP][25] ([i915#15608] / [i915#8825]) -> [SKIP][26] +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: [SKIP][27] ([i915#15608] / [i915#8825]) -> [SKIP][28] +11 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-dg2: [SKIP][29] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][30] +14 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-dg1: [SKIP][31] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][32] +11 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-dg1: [SKIP][33] ([i915#15608] / [i915#8825]) -> [SKIP][34] +11 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_plane@pixel-format-yf-tiled-modifier.html
Known issues
------------
Here are the changes found in IGTPW_14500_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#8411])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#11078])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-glk: NOTRUN -> [DMESG-WARN][37] ([i915#15095]) +1 other test dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#9323])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#3555] / [i915#9323])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#7697])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#7697])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#6335])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#8555])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][45] ([i915#1099])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#280])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4525])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#6344])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@gem_exec_fence@submit.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#7276])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#2190])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12193])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap@bad-object:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#14809]) +1 other test abort
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][73] ([i915#2658])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-5/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-2/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][77] ([i915#14702] / [i915#2658])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#13398])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [PASS][81] -> [SKIP][82] ([i915#4270])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-snb: NOTRUN -> [SKIP][84] +85 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-snb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#13809])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@gem_softpin@noreloc-s3.html
- shard-rkl: [PASS][88] -> [INCOMPLETE][89] ([i915#13809])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4077]) +12 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4077]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#15657])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_tiled_pread_basic@basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4879])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3282] / [i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [PASS][101] -> [INCOMPLETE][102] ([i915#13356])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][103] +10 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@gen7_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][104] +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#2527])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@most-busy-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#14073]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#15479]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][113] ([i915#15481])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-14/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu-1: NOTRUN -> [ABORT][114] ([i915#15342]) +1 other test abort
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][115] ([i915#15342]) +1 other test abort
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8399]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#8399]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][118] -> [WARN][119] ([i915#13790] / [i915#2681]) +1 other test warn
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#11681] / [i915#6621])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#11681])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6245])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@i915_query@hwconfig_table.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#7707]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-8/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#12454] / [i915#12712])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12454] / [i915#12712])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [PASS][130] -> [INCOMPLETE][131] ([i915#12761])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#9531])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#1769] / [i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][134] ([i915#1769])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#14544] / [i915#3638])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#3828])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3828])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk10: NOTRUN -> [SKIP][147] +129 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#6095]) +249 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][149] +430 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +64 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#12313] / [i915#14544])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#12313]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6095]) +19 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +139 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][156] ([i915#15582]) +1 other test incomplete
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][157] ([i915#15582]) +1 other test incomplete
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#14544] / [i915#6095]) +9 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +24 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#14098] / [i915#6095]) +48 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#6095]) +60 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +71 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#13781]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +7 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-fast.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#14544] / [i915#7828])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#6944])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#6944]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7118])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#7118])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@kms_content_protection@srm.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#6944] / [i915#7116] / [i915#7118])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#6944])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#6944])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][185] ([i915#1339] / [i915#7173])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][186] ([i915#13566]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#13049])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#14544] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][191] -> [FAIL][192] ([i915#13566]) +4 other tests fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#13049])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3555]) +6 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][195] -> [FAIL][196] ([i915#13566]) +3 other tests fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#8814])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9809]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][200] +24 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#4103])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][203] ([i915#15588] / [i915#2346])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9067])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#1257])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#13749])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#13707])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#14544] / [i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3469])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3469])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#4854])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#4854])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#3637] / [i915#9934]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#14544] / [i915#9934])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#9934])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#12745] / [i915#4839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#4839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9934]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8381])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_flip@flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8381])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][233] ([i915#12745] / [i915#4839])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][234] ([i915#12745])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-vga1:
- shard-snb: [PASS][235] -> [DMESG-WARN][236] ([i915#13899]) +1 other test dmesg-warn
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][237] ([i915#12314] / [i915#12745] / [i915#6113])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#14544] / [i915#15643])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#15643]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#15643]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15643]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#15643]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15643]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15643] / [i915#5190]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#1825]) +30 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8708]) +14 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#15104])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15102]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#1825]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][253] +30 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][254] +25 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8708]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#15102]) +11 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#8708]) +14 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15102]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#14544] / [i915#15102]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15104])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15104])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#15102] / [i915#3023]) +14 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#1825]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#5354]) +19 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][265] +55 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#10433] / [i915#15102] / [i915#3458])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#15102] / [i915#3458]) +8 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15102] / [i915#3458]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15102]) +19 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8228]) +2 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8228])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-14/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_hdr@static-toggle.html
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#12713] / [i915#3555] / [i915#8228])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#15459])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15459])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15459])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#15458])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#15459])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#1839] / [i915#4816])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#14712])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#14712])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#15608]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15608]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-rkl: NOTRUN -> [INCOMPLETE][287] ([i915#14412]) +1 other test incomplete
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12177])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][289] ([i915#10647]) +1 other test fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#13958])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#13958])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#14259])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#15329]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15329]) +8 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15329]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#15329] / [i915#3555])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15329] / [i915#3555] / [i915#6953])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15329]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9812])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9812])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3828])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-16/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#9685])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#14544] / [i915#8430])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#8430])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#15073]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][308] -> [SKIP][309] ([i915#15073]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#15073]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#15073]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#15073])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][313] -> [SKIP][314] ([i915#15073]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#6524])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][316] ([i915#11520]) +4 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#11520]) +7 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][318] ([i915#11520]) +10 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#11520]) +6 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#11520]) +6 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520] / [i915#14544])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/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-snb: NOTRUN -> [SKIP][322] ([i915#11520])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#11520]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#11520]) +4 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#9683]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#9688]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-2/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +17 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +13 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +16 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-10/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +17 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9732]) +10 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#9685])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][334] ([i915#15492])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#5289])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#12755] / [i915#5190])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#5289]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#5289])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#3555]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][340] ([i915#13179]) +1 other test abort
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][341] ([i915#15106]) +2 other tests fail
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#8623])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#8623])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#8623])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#8623])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#14544] / [i915#8623])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#12276]) +1 other test incomplete
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-glk6/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@kms_vrr@flip-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8808])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#15243] / [i915#3555])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_vrr@flip-suspend.html
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#15243] / [i915#3555])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#11920])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#9906])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-10/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#8516]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#8516])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#8516])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#8516])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#3708] / [i915#4077])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#3708] / [i915#4077])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708] / [i915#4077])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#3708])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#9917])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#9917]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][367] ([i915#9917])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][368] ([i915#13356]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][370] ([i915#12392] / [i915#13356]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_eio@kms:
- shard-rkl: [ABORT][372] ([i915#13363]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@gem_eio@kms.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@gem_eio@kms.html
* igt@gem_exec_params@larger-than-life-batch:
- shard-dg2: [CRASH][374] -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@gem_exec_params@larger-than-life-batch.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-5/igt@gem_exec_params@larger-than-life-batch.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [ABORT][376] ([i915#15131]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_workarounds@basic-read:
- shard-dg2: [ABORT][378] ([i915#13562]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-3/igt@gem_workarounds@basic-read.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@gem_workarounds@basic-read.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [ABORT][380] ([i915#15060]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][382] ([i915#12061]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled:
- shard-dg1: [DMESG-WARN][384] ([i915#4423]) -> [PASS][385] +2 other tests pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][386] ([i915#5956]) -> [PASS][387] +1 other test pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][388] ([i915#13566]) -> [PASS][389] +3 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][390] ([i915#13566]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][392] ([i915#13707]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][394] ([i915#15389] / [i915#6880]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][396] ([i915#6953] / [i915#9423]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][398] ([i915#15073]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][400] ([i915#15073]) -> [PASS][401] +3 other tests pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [SKIP][402] ([i915#15073]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][404] ([i915#14419]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][406] ([i915#15453]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][408] ([i915#4349]) -> [PASS][409] +3 other tests pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-6/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][410] ([i915#11078]) -> [SKIP][411] ([i915#11078] / [i915#14544])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#6335]) -> [SKIP][413] ([i915#6335])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#4525]) -> [SKIP][415] ([i915#4525])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][416] ([i915#4525]) -> [SKIP][417] ([i915#14544] / [i915#4525])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: [SKIP][418] ([i915#14544] / [i915#3281]) -> [SKIP][419] ([i915#3281]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: [SKIP][420] ([i915#3281]) -> [SKIP][421] ([i915#14544] / [i915#3281]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@gem_exec_reloc@basic-wc-gtt.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][422] ([i915#2190]) -> [SKIP][423] ([i915#14544] / [i915#2190])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: [SKIP][424] ([i915#14544] / [i915#4613]) -> [SKIP][425] ([i915#4613])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_lmem_swapping@basic.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][426] ([i915#4613]) -> [SKIP][427] ([i915#14544] / [i915#4613])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: [SKIP][428] ([i915#14544]) -> [SKIP][429] +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_mmap_gtt@coherency.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][430] ([i915#3282]) -> [SKIP][431] ([i915#14544] / [i915#3282]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@gem_partial_pwrite_pread@write-snoop.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][432] ([i915#8411]) -> [SKIP][433] ([i915#14544] / [i915#8411]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#3297]) -> [SKIP][437] ([i915#3297]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: [SKIP][438] ([i915#2527]) -> [SKIP][439] ([i915#14544] / [i915#2527])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][440] ([i915#11815]) -> [ABORT][441] ([i915#11815] / [i915#15481]) +1 other test abort
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-13/igt@i915_module_load@fault-injection.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-14/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#15479]) -> [SKIP][443] ([i915#15479]) +4 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#6412]) -> [SKIP][445] ([i915#6412])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@i915_module_load@resize-bar.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][446] ([i915#12061] / [i915#15560]) -> [DMESG-FAIL][447] ([i915#15560])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-mtlp-1/igt@i915_selftest@live.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-mtlp-7/igt@i915_selftest@live.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#5286]) -> [SKIP][449] ([i915#5286]) +2 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][450] ([i915#5286]) -> [SKIP][451] ([i915#14544] / [i915#5286]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3828]) -> [SKIP][453] ([i915#3828])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][454] ([i915#3638]) -> [SKIP][455] ([i915#14544] / [i915#3638])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][456] -> [SKIP][457] ([i915#14544]) +9 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][458] ([i915#12313] / [i915#14544]) -> [SKIP][459] ([i915#12313])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#6095]) -> [SKIP][461] ([i915#6095]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][462] ([i915#12313]) -> [SKIP][463] ([i915#12313] / [i915#14544])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][464] ([i915#6095]) -> [SKIP][465] ([i915#14544] / [i915#6095]) +3 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][466] ([i915#12805] / [i915#14544]) -> [SKIP][467] ([i915#12805])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][468] ([i915#14098] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][470] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#6095]) +3 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][472] ([i915#3742]) -> [SKIP][473] ([i915#14544] / [i915#3742])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_cdclk@mode-transition-all-outputs.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][474] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][475] ([i915#11151] / [i915#7828]) +3 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-rkl: [SKIP][476] ([i915#11151] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][478] ([i915#15330]) -> [SKIP][479] ([i915#14544] / [i915#15330])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][481] ([i915#6944] / [i915#7118] / [i915#9424])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_content_protection@legacy.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][482] ([i915#6944] / [i915#9424]) -> [SKIP][483] ([i915#14544] / [i915#6944] / [i915#9424])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_content_protection@mei-interface.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: [FAIL][484] ([i915#7173]) -> [SKIP][485] ([i915#6944]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-11/igt@kms_content_protection@suspend-resume.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][486] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][487] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@kms_content_protection@type1.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][488] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][489] ([i915#1339] / [i915#7173])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-5/igt@kms_content_protection@uevent.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][490] ([i915#13049] / [i915#14544]) -> [SKIP][491] ([i915#13049])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#3555]) -> [SKIP][493] ([i915#3555]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: [SKIP][494] ([i915#13049]) -> [SKIP][495] ([i915#13049] / [i915#14544]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#4103]) -> [SKIP][497] ([i915#4103])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][498] ([i915#3555] / [i915#3840]) -> [SKIP][499] ([i915#14544] / [i915#3555] / [i915#3840])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-8/igt@kms_dsc@dsc-with-bpc.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#1839]) -> [SKIP][501] ([i915#1839])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: [SKIP][502] ([i915#8381]) -> [SKIP][503] ([i915#4423] / [i915#8381])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#9934]) -> [SKIP][505] ([i915#9934]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][506] ([i915#14544] / [i915#15643]) -> [SKIP][507] ([i915#15643]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#1825]) -> [SKIP][509] ([i915#1825]) +14 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15102]) -> [SKIP][511] ([i915#15102]) +1 other test skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#15102] / [i915#3023]) +6 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][514] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][515] ([i915#15102] / [i915#3458]) +2 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][516] ([i915#15102] / [i915#3458]) -> [SKIP][517] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][518] ([i915#1825]) -> [SKIP][519] ([i915#14544] / [i915#1825]) +13 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][520] ([i915#15102] / [i915#3023]) -> [SKIP][521] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#5439]) -> [SKIP][523] ([i915#5439])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][524] ([i915#15102]) -> [SKIP][525] ([i915#14544] / [i915#15102])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][526] ([i915#1187] / [i915#12713]) -> [SKIP][527] ([i915#12713])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][528] ([i915#1187] / [i915#12713]) -> [SKIP][529] ([i915#12713])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#15458]) -> [SKIP][531] ([i915#15458])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#6301]) -> [SKIP][533] ([i915#6301])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][534] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][535] ([i915#14544]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][536] ([i915#15329]) -> [SKIP][537] ([i915#14544] / [i915#15329]) +3 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#5354]) -> [SKIP][539] ([i915#5354])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][540] ([i915#5354]) -> [SKIP][541] ([i915#14544] / [i915#5354])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_pm_backlight@fade.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][542] ([i915#9340]) -> [SKIP][543] ([i915#3828])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][544] ([i915#11520]) -> [SKIP][545] ([i915#11520] / [i915#14544]) +2 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][546] ([i915#11520]) -> [SKIP][547] ([i915#11520] / [i915#4423])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][548] ([i915#11520] / [i915#14544]) -> [SKIP][549] ([i915#11520]) +3 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-rkl: [SKIP][550] ([i915#1072] / [i915#9732]) -> [SKIP][551] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_psr@pr-primary-mmap-gtt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: [SKIP][552] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#9732]) +10 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-7/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-suspend:
- shard-dg1: [SKIP][554] ([i915#1072] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-dg1-13/igt@kms_psr@psr-suspend.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-dg1-12/igt@kms_psr@psr-suspend.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#8623]) -> [SKIP][557] ([i915#8623])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][559] ([i915#15243] / [i915#3555])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_vrr@flipline.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][560] ([i915#11920] / [i915#14544]) -> [SKIP][561] ([i915#11920])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_vrr@lobf.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#9906]) -> [SKIP][563] ([i915#9906])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][564] ([i915#9906]) -> [SKIP][565] ([i915#14544] / [i915#9906])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][566] ([i915#2436]) -> [SKIP][567] ([i915#14544] / [i915#2436])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: [SKIP][568] ([i915#3708]) -> [SKIP][569] ([i915#14544] / [i915#3708])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][570] ([i915#9917]) -> [SKIP][571] ([i915#14544] / [i915#9917])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8738/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
[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#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#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#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#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#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#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15588
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[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#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[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#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#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_8738 -> IGTPW_14500
CI-20190529: 20190529
CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14500: 4797fc5e0fc91233a377c050b87b7b4e8d55e440 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14500/index.html
[-- Attachment #2: Type: text/html, Size: 195199 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_plane: Refine clamping and modifier skips (rev2)
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
` (4 preceding siblings ...)
2026-02-05 22:32 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-02-06 2:15 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-06 2:15 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 52945 bytes --]
== Series Details ==
Series: tests/kms_plane: Refine clamping and modifier skips (rev2)
URL : https://patchwork.freedesktop.org/series/161133/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8738_FULL -> XEIGTPW_14500_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14500_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14500_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_14500_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][4] +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@xe_pmu@gt-frequency:
- shard-lnl: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-8/igt@xe_pmu@gt-frequency.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: [SKIP][7] ([Intel XE#7130]) -> [SKIP][8] +12 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: [SKIP][9] ([Intel XE#7130] / [Intel XE#7131]) -> [SKIP][10] +12 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][11] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) -> [SKIP][12] +10 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-bmg: [SKIP][13] ([Intel XE#7111] / [Intel XE#7130]) -> [SKIP][14] +10 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier.html
Known issues
------------
Here are the changes found in XEIGTPW_14500_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2233])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2327]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7059])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2325])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][32] ([Intel XE#6968]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-c-edp-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2390] / [Intel XE#6974])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1468])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-1/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2341])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2321])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2291]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#323])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4422])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2373])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#703])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2316])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7178]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1397] / [Intel XE#1745])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1397])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7178]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#352])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2311]) +14 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4141]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6312]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2312]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#651])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7061])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2313]) +14 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#656]) +16 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1503])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1503])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#7086])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2501])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#356])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#4596])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#5020])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6886]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#870]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: NOTRUN -> [FAIL][79] ([Intel XE#718])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#718]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2392])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3414] / [Intel XE#3904])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#3414] / [Intel XE#3904])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2413])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#6503]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2426])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][91] -> [FAIL][92] ([Intel XE#4459]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1499]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-1/igt@kms_vrr@flip-suspend.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#4837]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-bind-extended:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4837]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-extended.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable.html
* igt@xe_evict@evict-beng-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#688]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7140])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2322]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1392]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#7136]) +7 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#7136]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#6874]) +9 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6874]) +21 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-file-mlock-nomemset:
- shard-bmg: [PASS][106] -> [ABORT][107] ([Intel XE#7169])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-file-mlock-nomemset.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-file-mlock-nomemset.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#5007]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4943]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +16 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#7138]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#7138]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136]) -> ([PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [SKIP][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161]) ([Intel XE#2457])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-1/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-4/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-2/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-2/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-7/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-1/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-1/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-10/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-4/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-4/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-4/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#6964])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#6964])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-lnl: [PASS][165] -> [ABORT][166] ([Intel XE#7169])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-7/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#4733]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#944])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-3/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#944])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#7174])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][171] ([Intel XE#6569])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#3342])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#5745])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-5/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][174] ([Intel XE#2291]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][176] ([Intel XE#4633]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][178] ([Intel XE#1340]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][180] ([Intel XE#2316]) -> [PASS][181] +2 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][182] ([Intel XE#4227]) -> [PASS][183] +1 other test pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-2/igt@kms_vrr@flip-basic.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][184] ([Intel XE#2142]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][186] ([Intel XE#6321]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-lnl: [ABORT][188] ([Intel XE#7169]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-lnl-4/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-lnl-2/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][190] ([Intel XE#2341]) -> [FAIL][191] ([Intel XE#1178] / [Intel XE#3304])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [FAIL][192] ([Intel XE#3304]) -> [SKIP][193] ([Intel XE#7194])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][194] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][195] ([Intel XE#2341]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-3/igt@kms_content_protection@srm.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][196] ([Intel XE#6707]) -> [SKIP][197] ([Intel XE#7194])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#4141]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][200] ([Intel XE#4141]) -> [SKIP][201] ([Intel XE#2312]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][202] ([Intel XE#2312]) -> [SKIP][203] ([Intel XE#2311]) +8 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][204] ([Intel XE#2311]) -> [SKIP][205] ([Intel XE#2312]) +18 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][206] ([Intel XE#2313]) -> [SKIP][207] ([Intel XE#2312]) +15 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][208] ([Intel XE#2312]) -> [SKIP][209] ([Intel XE#2313]) +10 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][210] ([Intel XE#2509]) -> [SKIP][211] ([Intel XE#2426])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8738/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8738 -> IGTPW_14500
IGTPW_14500: 4797fc5e0fc91233a377c050b87b7b4e8d55e440 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8738: b3fc8fb534a27517f2a49e63ef993e7550b9b959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14500/index.html
[-- Attachment #2: Type: text/html, Size: 60827 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-02-06 2:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-05 4:41 [PATCH i-g-t v2 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala
2026-02-05 4:41 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala
2026-02-05 7:53 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips (rev2) Patchwork
2026-02-05 7:57 ` ✓ i915.CI.BAT: " Patchwork
2026-02-05 22:32 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-06 2:15 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox