* [PATCH v3 0/2] lib/igt_core: add timestamps to error logs
@ 2026-05-11 12:55 Andrzej Hajda
2026-05-11 12:55 ` [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime Andrzej Hajda
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Andrzej Hajda @ 2026-05-11 12:55 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Ryszard Knop, Stuart Summers, Jari Tahvanainen,
Mateusz Grabski, Andrzej Hajda
This patchset adds timestamps to error logs in IGT.
One of side effects of adding timestamps is detection by CI of previously
hidden errors in errno handling. Patch preventing such situation has been added.
Since correcting errno handling requires multiple, sometimes subtle, fixes,
this task will be done in separate patchset.
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
Changes in v3:
- added patch avoid errno resetting in igt_gettime
- dropped errno fixes - they will be handled with separate patchset
- Link to v2: https://patch.msgid.link/20260507-add_timestamps_to_logs-v2-0-9591e90e0a6a@intel.com
Changes in v2:
- added fixes to errno handling
- adjusted format string to be the same as in dmesg
- Link to v1: https://patch.msgid.link/20260505-add_timestamps_to_logs-v1-1-2d95f499fdfb@intel.com
---
Andrzej Hajda (2):
lib/igt_core: do not reset errno in igt_gettime
lib/igt_core: add timestamps to error logs
lib/igt_core.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
---
base-commit: c186075d9363a80e4a7469aeb64f08714c8dc1e9
change-id: 20260430-add_timestamps_to_logs-d84fdfd7ef4c
Best regards,
--
Andrzej Hajda <andrzej.hajda@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
@ 2026-05-11 12:55 ` Andrzej Hajda
2026-05-11 15:05 ` Knop, Ryszard
2026-05-11 12:55 ` [PATCH v3 2/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Andrzej Hajda @ 2026-05-11 12:55 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Ryszard Knop, Stuart Summers, Jari Tahvanainen,
Mateusz Grabski, Andrzej Hajda
Resetting errno before calls makes sense only if we are not able
to distinguish if following call will fail. This is not the case
of clock_gettime - it's return value is straightforward, -1 means function
failed with errno set.
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
lib/igt_core.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 4f79c02948ab..5a0ab4361eaa 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -719,7 +719,6 @@ double igt_time_elapsed(struct timespec *then,
int igt_gettime(struct timespec *ts)
{
memset(ts, 0, sizeof(*ts));
- errno = 0;
/* Stay on the same clock for consistency. */
if (igt_clock != (clockid_t)-1) {
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 2/2] lib/igt_core: add timestamps to error logs
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
2026-05-11 12:55 ` [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime Andrzej Hajda
@ 2026-05-11 12:55 ` Andrzej Hajda
2026-05-11 14:35 ` Knop, Ryszard
2026-05-12 3:59 ` ✓ i915.CI.BAT: success for lib/igt_core: add timestamps to error logs (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Andrzej Hajda @ 2026-05-11 12:55 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Ryszard Knop, Stuart Summers, Jari Tahvanainen,
Mateusz Grabski, Andrzej Hajda
IGT tests run often time consuming tasks. Timestamps should simplify
time analysis and matching with kernel logs.
Since IGT is closely connected with the kernel let's use the same format.
v2: adjusted string format and commit subject
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
lib/igt_core.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 5a0ab4361eaa..72b7d3449888 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -3226,10 +3226,15 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
formatted_line = strdup(line);
if (!formatted_line)
goto out;
- } else if (asprintf(&formatted_line, "(%s:%d) %s%s%s%s: %s", program_name,
- getpid(), thread_id, (domain) ? domain : "", (domain) ? "-" : "",
- igt_log_level_str[level], line) == -1) {
- goto out;
+ } else {
+ struct timespec ts;
+
+ igt_gettime(&ts);
+ if (asprintf(&formatted_line, "[%ld.%06ld] (%s:%d) %s%s%s%s: %s", (long)ts.tv_sec,
+ ts.tv_nsec / 1000, program_name, getpid(), thread_id,
+ (domain) ? domain : "", (domain) ? "-" : "", igt_log_level_str[level],
+ line) == -1)
+ goto out;
}
if (line[strlen(line) - 1] == '\n')
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v3 2/2] lib/igt_core: add timestamps to error logs
2026-05-11 12:55 ` [PATCH v3 2/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
@ 2026-05-11 14:35 ` Knop, Ryszard
0 siblings, 0 replies; 10+ messages in thread
From: Knop, Ryszard @ 2026-05-11 14:35 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Hajda, Andrzej
Cc: Summers, Stuart, Tahvanainen, Jari, Grabski, Mateusz,
kamil.konieczny@linux.intel.com
LGTM, so:
Reviewed-by: Ryszard Knop <ryszard.knop@intel.com>
On Mon, 2026-05-11 at 14:55 +0200, Andrzej Hajda wrote:
> IGT tests run often time consuming tasks. Timestamps should simplify
> time analysis and matching with kernel logs.
> Since IGT is closely connected with the kernel let's use the same format.
>
> v2: adjusted string format and commit subject
>
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
> ---
> lib/igt_core.c | 13 +++++++++----
> 1 file changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 5a0ab4361eaa..72b7d3449888 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -3226,10 +3226,15 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> formatted_line = strdup(line);
> if (!formatted_line)
> goto out;
> - } else if (asprintf(&formatted_line, "(%s:%d) %s%s%s%s: %s", program_name,
> - getpid(), thread_id, (domain) ? domain : "", (domain) ? "-" : "",
> - igt_log_level_str[level], line) == -1) {
> - goto out;
> + } else {
> + struct timespec ts;
> +
> + igt_gettime(&ts);
> + if (asprintf(&formatted_line, "[%ld.%06ld] (%s:%d) %s%s%s%s: %s", (long)ts.tv_sec,
> + ts.tv_nsec / 1000, program_name, getpid(), thread_id,
> + (domain) ? domain : "", (domain) ? "-" : "", igt_log_level_str[level],
> + line) == -1)
> + goto out;
> }
>
> if (line[strlen(line) - 1] == '\n')
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime
2026-05-11 12:55 ` [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime Andrzej Hajda
@ 2026-05-11 15:05 ` Knop, Ryszard
0 siblings, 0 replies; 10+ messages in thread
From: Knop, Ryszard @ 2026-05-11 15:05 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Hajda, Andrzej
Cc: Summers, Stuart, Tahvanainen, Jari, Grabski, Mateusz,
kamil.konieczny@linux.intel.com
This function is used quite a lot in tests which also happen to check
for errno later. A quick grep suggests nothing should go wrong though.
Reviewed-by: Ryszard Knop <ryszard.knop@intel.com>
On Mon, 2026-05-11 at 14:55 +0200, Andrzej Hajda wrote:
> Resetting errno before calls makes sense only if we are not able
> to distinguish if following call will fail. This is not the case
> of clock_gettime - it's return value is straightforward, -1 means function
> failed with errno set.
>
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
> ---
> lib/igt_core.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 4f79c02948ab..5a0ab4361eaa 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -719,7 +719,6 @@ double igt_time_elapsed(struct timespec *then,
> int igt_gettime(struct timespec *ts)
> {
> memset(ts, 0, sizeof(*ts));
> - errno = 0;
>
> /* Stay on the same clock for consistency. */
> if (igt_clock != (clockid_t)-1) {
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for lib/igt_core: add timestamps to error logs (rev2)
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
2026-05-11 12:55 ` [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime Andrzej Hajda
2026-05-11 12:55 ` [PATCH v3 2/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
@ 2026-05-12 3:59 ` Patchwork
2026-05-12 5:43 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 3:59 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3889 bytes --]
== Series Details ==
Series: lib/igt_core: add timestamps to error logs (rev2)
URL : https://patchwork.freedesktop.org/series/166137/
State : success
== Summary ==
CI Bug Log - changes from IGT_8903 -> IGTPW_15152
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_15152 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_8903/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-mtlp-8/igt@i915_selftest@live.html
#### Warnings ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: [SKIP][3] ([i915#4103] / [i915#4213]) -> [SKIP][4] ([i915#4103]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: [SKIP][5] ([i915#4103] / [i915#4213]) -> [SKIP][6] ([i915#4103]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg1-7: [SKIP][7] ([i915#4103] / [i915#4213]) -> [SKIP][8] ([i915#4103]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-rplp-1: [SKIP][9] ([i915#4103] / [i915#4213]) -> [SKIP][10] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-9: [SKIP][11] ([i915#4103] / [i915#4213]) -> [SKIP][12] ([i915#4103]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15152
* Linux: CI_DRM_18467 -> CI_DRM_18470
CI-20190529: 20190529
CI_DRM_18467: f8ee23694aa6be213355905a78f79bb1b0861565 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18470: 767b83aa80c6d7eaa1204a866b287b56a1a33122 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15152: 6df33ec949bd2c0558121bf907eed3c6ba74037c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/index.html
[-- Attachment #2: Type: text/html, Size: 5487 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for lib/igt_core: add timestamps to error logs (rev2)
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
` (2 preceding siblings ...)
2026-05-12 3:59 ` ✓ i915.CI.BAT: success for lib/igt_core: add timestamps to error logs (rev2) Patchwork
@ 2026-05-12 5:43 ` Patchwork
2026-05-12 11:20 ` ✓ Xe.CI.FULL: " Patchwork
2026-05-12 17:20 ` ✗ i915.CI.Full: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 5:43 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1165 bytes --]
== Series Details ==
Series: lib/igt_core: add timestamps to error logs (rev2)
URL : https://patchwork.freedesktop.org/series/166137/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_BAT -> XEIGTPW_15152_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15152
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122
IGTPW_15152: 6df33ec949bd2c0558121bf907eed3c6ba74037c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122: 767b83aa80c6d7eaa1204a866b287b56a1a33122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/index.html
[-- Attachment #2: Type: text/html, Size: 1724 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for lib/igt_core: add timestamps to error logs (rev2)
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
` (3 preceding siblings ...)
2026-05-12 5:43 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-12 11:20 ` Patchwork
2026-05-12 17:20 ` ✗ i915.CI.Full: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 11:20 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 39646 bytes --]
== Series Details ==
Series: lib/igt_core: add timestamps to error logs (rev2)
URL : https://patchwork.freedesktop.org/series/166137/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_FULL -> XEIGTPW_15152_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15152_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#367])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2887]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#3432])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-7/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2252]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#373])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][9] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7642])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#4354] / [Intel XE#5882])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2244])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#4422] / [Intel XE#7442])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#6126] / [Intel XE#776])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][16] ([Intel XE#301])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7351])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#6312]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2311]) +17 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#656] / [Intel XE#7905])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4141]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7061])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7905]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2313]) +15 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6901])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#7283])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_cursor@primary:
- shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#7769]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_plane_cursor@primary.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#5021] / [Intel XE#7377])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#3309] / [Intel XE#7368])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2029] / [Intel XE#7395])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1489]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2234])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2330] / [Intel XE#5813])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6503])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1499]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7636]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#6321])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#6540] / [Intel XE#688])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-4/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7136]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6874]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_system_allocator@fault-benchmark:
- shard-bmg: [PASS][50] -> [ABORT][51] ([Intel XE#7893])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@xe_exec_system_allocator@fault-benchmark.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@xe_exec_system_allocator@fault-benchmark.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7138])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2245] / [Intel XE#7590])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#5694] / [Intel XE#7370])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2284] / [Intel XE#7370])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#4733] / [Intel XE#7417])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#6569]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][59] ([Intel XE#7914])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][60] ([Intel XE#5545]) -> [PASS][61] +1 other test pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][62] ([Intel XE#301]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: [FAIL][64] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][66] ([Intel XE#7308]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][68] ([Intel XE#1503]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][70] ([Intel XE#7922]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][72] ([Intel XE#7915]) -> [PASS][73] +3 other tests pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][74] ([Intel XE#7340]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][76] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][78] ([Intel XE#2142]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-lnl: [ABORT][80] -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@xe_copy_basic@mem-page-copy-17.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-lnl-2/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_sriov_admin@sched-priority-vf-write-denied:
- shard-bmg: [SKIP][82] ([Intel XE#6703]) -> [PASS][83] +126 other tests pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-9/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][84] ([Intel XE#5937]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][86] ([Intel XE#6703]) -> [SKIP][87] ([Intel XE#7059] / [Intel XE#7085])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][88] ([Intel XE#6703]) -> [SKIP][89] ([Intel XE#1124]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][90] ([Intel XE#6703]) -> [SKIP][91] ([Intel XE#367])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-bmg: [SKIP][92] ([Intel XE#6703]) -> [SKIP][93] ([Intel XE#2887])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][94] ([Intel XE#6703]) -> [SKIP][95] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [SKIP][97] ([Intel XE#2252])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-single.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [SKIP][98] ([Intel XE#6703]) -> [FAIL][99] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: [SKIP][100] ([Intel XE#6703]) -> [SKIP][101] ([Intel XE#2320])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][102] ([Intel XE#6703]) -> [SKIP][103] ([Intel XE#4210] / [Intel XE#7467])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [SKIP][105] ([Intel XE#4141]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: [SKIP][106] ([Intel XE#6703]) -> [SKIP][107] ([Intel XE#7061] / [Intel XE#7356])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#2311]) +11 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#7061]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2313]) +11 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#7283])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#1489]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][118] ([Intel XE#6703]) -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr@psr-basic.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-9/igt@kms_psr@psr-basic.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [SKIP][121] ([Intel XE#6503])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-10/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][122] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][123] ([Intel XE#2426] / [Intel XE#5848])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#7636]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#7136])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#6874]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr:
- shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#7138]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html
* igt@xe_page_reclaim@binds-1g-partial:
- shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#7793])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_page_reclaim@binds-1g-partial.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@xe_page_reclaim@binds-1g-partial.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#2284] / [Intel XE#7370])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-6/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#944])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_query@multigpu-query-topology.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/shard-bmg-4/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[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#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[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#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[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#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[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#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7769]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7769
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15152
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122
IGTPW_15152: 6df33ec949bd2c0558121bf907eed3c6ba74037c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122: 767b83aa80c6d7eaa1204a866b287b56a1a33122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15152/index.html
[-- Attachment #2: Type: text/html, Size: 46220 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for lib/igt_core: add timestamps to error logs (rev2)
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
` (4 preceding siblings ...)
2026-05-12 11:20 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-05-12 17:20 ` Patchwork
2026-05-12 18:58 ` Hajda, Andrzej
5 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2026-05-12 17:20 UTC (permalink / raw)
To: Andrzej Hajda; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 152093 bytes --]
== Series Details ==
Series: lib/igt_core: add timestamps to error logs (rev2)
URL : https://patchwork.freedesktop.org/series/166137/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18470_full -> IGTPW_15152_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15152_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15152_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_15152/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_15152_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@live:
- shard-dg1: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@i915_selftest@live.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_feature_discovery@display-3x.html
- shard-tglu-1: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
#### Warnings ####
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: [SKIP][7] ([i915#4854]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_feature_discovery@chamelium.html
- shard-dg2: [SKIP][9] ([i915#4854]) -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@kms_feature_discovery@chamelium.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_feature_discovery@chamelium.html
- shard-rkl: [SKIP][11] ([i915#4854]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: [SKIP][13] ([i915#1839]) -> [SKIP][14] +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-5/igt@kms_feature_discovery@display-2x.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_feature_discovery@display-2x.html
- shard-tglu: [SKIP][15] ([i915#1839]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-2/igt@kms_feature_discovery@display-2x.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][17] ([i915#1839]) -> [SKIP][18] +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_feature_discovery@display-3x.html
- shard-dg1: [SKIP][19] ([i915#1839]) -> [SKIP][20] +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_feature_discovery@display-3x.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: [SKIP][21] ([i915#1839]) -> [SKIP][22] +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_feature_discovery@display-3x.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_feature_discovery@display-3x.html
Known issues
------------
Here are the changes found in IGTPW_15152_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#15931])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@dmabuf@all-tests.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][25] -> [INCOMPLETE][26] ([i915#13356]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#6335])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][31] ([i915#13356]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][32] ([i915#1099])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb7/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#5882]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#5882]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4036])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4036])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4036])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_big@single:
- shard-rkl: [PASS][44] -> [FAIL][45] ([i915#16040])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@gem_exec_big@single.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][48] ([i915#11965]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#14544] / [i915#3281]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +9 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- shard-dg2: [PASS][57] -> [INCOMPLETE][58] ([i915#13196] / [i915#13356]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@gem_exec_suspend@basic-s3@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#2190])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@coherency:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@gem_mmap_wc@copy.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_mmap_wc@copy.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#3282])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][76] ([i915#2658])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@gem_pread@exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4885])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +8 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_wb:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4077]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@gem_tiled_wb.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][94] +149 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#14123])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#14118]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#14118])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#8399])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][104] ([i915#13356])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#13356] / [i915#15172])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html
- shard-rkl: NOTRUN -> [INCOMPLETE][106] ([i915#13356])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#6245])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: [PASS][108] -> [ABORT][109] ([i915#15433])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@i915_selftest@live@gem_contexts.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][110] -> [DMESG-FAIL][111] ([i915#12061]) +1 other test dmesg-fail
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@i915_selftest@live@workarounds.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#4817])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk4/igt@i915_suspend@sysfs-reader.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#9531])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][116] -> [FAIL][117] ([i915#5956]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][118] -> [FAIL][119] ([i915#15662]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#15733] / [i915#5138])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3828]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][129] +10 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#3638]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#3638])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][132] +10 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +11 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#14098] / [i915#6095]) +35 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][138] +145 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#6095]) +19 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#12313]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#6095]) +84 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +24 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#15582]) +3 other tests incomplete
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +9 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: NOTRUN -> [ABORT][147] ([i915#15132]) +1 other test abort
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#6095]) +98 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#6095]) +10 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +219 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#6095]) +58 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3742]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_cdclk@mode-transition.html
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3742])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +8 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#14544] / [i915#15865])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3116] / [i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3299])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#15330]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15330] / [i915#3116] / [i915#3299])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#15330])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#15865])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#15865]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][171] -> [FAIL][172] ([i915#13566]) +5 other tests fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][173] ([i915#13566]) +1 other test fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#13049]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#13049]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#13049])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#13049])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#13049])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#14544] / [i915#3555])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#13049] / [i915#14544])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][186] -> [FAIL][187] ([i915#13566]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][188] ([i915#12358] / [i915#14152] / [i915#7882])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#12358] / [i915#14152])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#13046] / [i915#5354]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#9809]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#4103])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#4103])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4213])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#13691])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3804])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13749])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#13749])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#13749])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#13749])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-12/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#13749])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#13748])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2065])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9337])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#658])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#9934])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#3637] / [i915#9934]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9934]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9934]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8381])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][224] -> [INCOMPLETE][225] ([i915#6113]) +1 other test incomplete
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk11: NOTRUN -> [INCOMPLETE][226] ([i915#12745] / [i915#4839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12745] / [i915#4839])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2: [PASS][228] -> [ABORT][229] ([i915#15132])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp3:
- shard-dg2: NOTRUN -> [ABORT][230] ([i915#15132])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible@a-dp3.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][232] ([i915#12745])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#15643])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#15643])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15643])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15643]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15643]) +5 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15643]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#15643]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15643] / [i915#5190]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [PASS][241] -> [SKIP][242] ([i915#15672])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-7/igt@kms_force_connector_basic@force-connector-state.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#15991] / [i915#1825]) +8 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#10056])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15989]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15989]) +9 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15989]) +18 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#15989]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#15990]) +18 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][250] +34 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][251] +126 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15990]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15104] / [i915#15990]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#15104] / [i915#15990])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15990] / [i915#8708]) +17 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#15990] / [i915#8708]) +4 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#15991] / [i915#5354]) +25 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#15990] / [i915#8708]) +10 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#5439])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#10055])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#15102]) +20 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15102]) +24 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15989]) +12 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-glk10: NOTRUN -> [SKIP][266] +190 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15990]) +29 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][268] +84 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#14544] / [i915#15102]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#5439])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#5439])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#5439])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15989]) +26 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-glk: [PASS][274] -> [SKIP][275] +6 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][276] -> [SKIP][277] ([i915#15989]) +6 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15991]) +14 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9766])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#15102]) +33 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15102]) +48 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#15102] / [i915#3023]) +13 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#15102]) +17 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][284] +37 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544]) +14 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#15991]) +33 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#16012] / [i915#3555] / [i915#8228])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#16012]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#16012] / [i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#16012]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#16012]) +5 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#16011]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-swap:
- shard-rkl: [PASS][293] -> [SKIP][294] ([i915#16011] / [i915#3555] / [i915#8228])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_hdr@static-swap.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#16011]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#16011] / [i915#3555] / [i915#8228])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#16011] / [i915#3555] / [i915#8228])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#16011]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#16011]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15459])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#14544] / [i915#15459])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15458])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#15458])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#15458])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#14712])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#15709]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#15709]) +2 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/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-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#15709]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#14544] / [i915#15709])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15709]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#15608]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#13026]) +1 other test incomplete
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][313] ([i915#10647] / [i915#12177])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/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][314] ([i915#10647]) +1 other test fail
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#13958])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#13958])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#13958])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#13958]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#13958])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#14259])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#14259])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#15329]) +9 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#15329]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/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][324] ([i915#15329]) +8 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/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][325] ([i915#15329]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/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][326] ([i915#15329] / [i915#3555])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#15329]) +9 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#5354])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#12343])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#5354])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#9812])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9812])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][333] ([i915#15752])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#3361])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][335] ([i915#15752])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#14544] / [i915#15739])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#8430])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#8430])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#8430])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#8430])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#8430])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#15073])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#15073]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][344] -> [SKIP][345] ([i915#15073]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [PASS][346] -> [SKIP][347] ([i915#15073])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#15403])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#6524]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#6524])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#11520]) +8 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) +4 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][353] ([i915#11520]) +3 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][354] ([i915#11520]) +11 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#11520]) +11 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9808])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11520]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#11520]) +12 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][359] ([i915#11520]) +4 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#11520]) +5 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520] / [i915#14544]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][362] ([i915#11520]) +2 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#9683])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#9683])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#9732]) +10 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][367] +498 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk1/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#9688]) +10 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#9732]) +27 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +19 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +12 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +18 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#15949])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#12755] / [i915#15867] / [i915#5190]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#5289])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#12755] / [i915#15867])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#15867]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#8623])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#8623])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#8623])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#8623])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#8623])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][383] ([i915#12276]) +1 other test incomplete
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#15243] / [i915#3555])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#11920])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#3555] / [i915#9906])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][387] ([i915#3555] / [i915#9906])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#9906])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#9906])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][392] ([i915#8808] / [i915#9906])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][393] ([i915#9906])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#2436])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][395] ([i915#9100]) +1 other test fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][396] ([i915#2433])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [ABORT][397] ([i915#13029] / [i915#15778])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@perf_pmu@module-unload.html
- shard-glk11: NOTRUN -> [ABORT][398] ([i915#15778])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#3708] / [i915#4077])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#9917])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#9917])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][403] ([i915#9917])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][404] ([i915#12910]) +9 other tests fail
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
- shard-mtlp: NOTRUN -> [FAIL][405] ([i915#12910]) +9 other tests fail
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
#### Possible fixes ####
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][406] ([i915#13356]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: [ABORT][408] ([i915#15131]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][410] ([i915#4817]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html
- shard-glk: [INCOMPLETE][412] ([i915#4817]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@i915_suspend@fence-restore-untiled.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][414] ([i915#15733] / [i915#5138]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][416] ([i915#13566]) -> [PASS][417] +2 other tests pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][418] ([i915#13566]) -> [PASS][419] +3 other tests pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg1: [FAIL][420] ([i915#13027]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [SKIP][422] ([i915#15672]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-glk: [SKIP][424] -> [PASS][425] +2 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk5/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][426] ([i915#15989]) -> [PASS][427] +11 other tests pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][428] ([i915#15989]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][430] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_hdr@static-toggle.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@static-toggle.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][432] ([i915#12756] / [i915#13476]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][434] ([i915#15073]) -> [PASS][435] +2 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][436] ([i915#15073]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][438] ([i915#14419]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][440] ([i915#15106]) -> [PASS][441] +2 other tests pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-16/igt@kms_setmode@basic.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_setmode@basic.html
#### Warnings ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][442] ([i915#11078]) -> [SKIP][443] ([i915#11078] / [i915#14544])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@device_reset@cold-reset-bound.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@dmabuf@all-tests:
- shard-rkl: [SKIP][444] ([i915#15931]) -> [SKIP][445] ([i915#14544] / [i915#15931])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@dmabuf@all-tests.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@dmabuf@all-tests.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#7697]) -> [SKIP][447] ([i915#7697])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][448] ([i915#6335]) -> [SKIP][449] ([i915#14544] / [i915#6335])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][450] ([i915#280]) -> [SKIP][451] ([i915#14544] / [i915#280])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#280]) -> [SKIP][453] ([i915#280])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][454] ([i915#4525]) -> [SKIP][455] ([i915#14544] / [i915#4525]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: [SKIP][456] ([i915#3281]) -> [SKIP][457] ([i915#14544] / [i915#3281]) +3 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-active.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][458] ([i915#7276]) -> [SKIP][459] ([i915#14544] / [i915#7276])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][460] ([i915#4613]) -> [SKIP][461] ([i915#14544] / [i915#4613]) +2 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#3282]) -> [SKIP][463] ([i915#3282]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: [SKIP][464] ([i915#3282]) -> [SKIP][465] ([i915#14544] / [i915#3282]) +3 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@gem_readwrite@beyond-eob.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][466] ([i915#8411]) -> [SKIP][467] ([i915#14544] / [i915#8411])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][468] ([i915#3297] / [i915#3323]) -> [SKIP][469] ([i915#14544] / [i915#3297] / [i915#3323])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#2527]) -> [SKIP][471] ([i915#2527]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][472] ([i915#2527]) -> [SKIP][473] ([i915#14544] / [i915#2527]) +2 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#6412]) -> [SKIP][475] ([i915#6412])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_module_load@resize-bar.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#4387]) -> [SKIP][477] ([i915#4387])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][478] ([i915#7707]) -> [SKIP][479] ([i915#14544] / [i915#7707])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][480] ([i915#5286]) -> [SKIP][481] ([i915#14544] / [i915#5286]) +3 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#3638]) -> [SKIP][483] ([i915#3638])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][484] ([i915#3638]) -> [SKIP][485] ([i915#14544] / [i915#3638]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][486] -> [SKIP][487] ([i915#14544]) +38 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg1: [SKIP][488] ([i915#4423] / [i915#6095]) -> [SKIP][489] ([i915#6095])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][490] ([i915#12313] / [i915#14544]) -> [SKIP][491] ([i915#12313])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][492] ([i915#6095]) -> [SKIP][493] ([i915#14544] / [i915#6095]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][494] ([i915#14098] / [i915#6095]) -> [SKIP][495] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][496] ([i915#12313]) -> [SKIP][497] ([i915#12313] / [i915#14544]) +2 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#6095]) -> [SKIP][499] ([i915#6095]) +3 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][500] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][501] ([i915#14098] / [i915#6095]) +6 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][502] ([i915#12805]) -> [SKIP][503] ([i915#12805] / [i915#14544])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_chamelium_edid@dp-mode-timings.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-rkl: [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#7828])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15865]) -> [SKIP][509] ([i915#15865])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_content_protection@legacy.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][510] ([i915#15865]) -> [SKIP][511] ([i915#14544] / [i915#15865]) +1 other test skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_content_protection@srm.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][512] ([i915#13049] / [i915#14544]) -> [SKIP][513] ([i915#13049])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] +18 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: [SKIP][516] ([i915#4103] / [i915#4213]) -> [SKIP][517] ([i915#4103]) +4 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: [SKIP][518] ([i915#4103] / [i915#4213]) -> [SKIP][519] ([i915#4103]) +2 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][520] ([i915#9723]) -> [SKIP][521] ([i915#14544] / [i915#9723])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][523] ([i915#3555] / [i915#3804])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][524] ([i915#3555] / [i915#3840]) -> [SKIP][525] ([i915#14544] / [i915#3555] / [i915#3840])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][526] ([i915#3955]) -> [SKIP][527] ([i915#14544] / [i915#3955])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][528] ([i915#9337]) -> [SKIP][529] ([i915#14544] / [i915#9337])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#9934]) -> [SKIP][531] ([i915#9934]) +2 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][532] ([i915#9934]) -> [SKIP][533] ([i915#14544] / [i915#9934]) +4 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][534] ([i915#15643]) -> [SKIP][535] ([i915#14544] / [i915#15643]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][536] ([i915#15672]) -> [SKIP][537]
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#1825]) -> [SKIP][539] +7 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][540] ([i915#1825]) -> [SKIP][541] ([i915#14544] / [i915#1825]) +6 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][542] ([i915#15102] / [i915#3023]) -> [SKIP][543] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#1825]) -> [SKIP][545] ([i915#1825]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][546] ([i915#14544] / [i915#1825]) -> [SKIP][547] ([i915#14544]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][548] ([i915#1825]) -> [SKIP][549] +87 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: [SKIP][550] ([i915#15102] / [i915#3458]) -> [SKIP][551] ([i915#15102]) +71 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][552] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][553] ([i915#15102])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#15102]) -> [SKIP][555] ([i915#15102]) +4 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render:
- shard-dg1: [SKIP][556] ([i915#4423]) -> [SKIP][557]
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][558] ([i915#15104] / [i915#15990] / [i915#4423]) -> [SKIP][559] ([i915#15104] / [i915#15990])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][560] ([i915#15102] / [i915#3458]) -> [SKIP][561] ([i915#10433] / [i915#15102]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][562] ([i915#15102] / [i915#3458]) -> [SKIP][563] ([i915#15102]) +58 other tests skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][564] ([i915#1825]) -> [SKIP][565] ([i915#14544]) +16 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][566] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][567] ([i915#15102] / [i915#3023]) +5 other tests skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][568] ([i915#15102]) -> [SKIP][569] ([i915#14544] / [i915#15102]) +12 other tests skip
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render:
- shard-dg1: [SKIP][570] ([i915#15102] / [i915#4423]) -> [SKIP][571] ([i915#15102])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][572] ([i915#14543] / [i915#16011]) -> [SKIP][573] ([i915#16011])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][574] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][575] ([i915#14544] / [i915#3555] / [i915#8228])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [SKIP][576] ([i915#16012]) -> [SKIP][577] ([i915#14544] / [i915#16025]) +1 other test skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][578] ([i915#14544] / [i915#15458]) -> [SKIP][579] ([i915#15458])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][580] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][581] ([i915#15638] / [i915#15722])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][582] ([i915#6301]) -> [SKIP][583] ([i915#14544] / [i915#6301])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][584] ([i915#3555]) -> [SKIP][585] ([i915#14544] / [i915#3555]) +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][586] ([i915#13958] / [i915#14544]) -> [SKIP][587] ([i915#13958])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][588] ([i915#14259]) -> [SKIP][589] ([i915#14259] / [i915#14544])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][590] ([i915#15329]) -> [SKIP][591] ([i915#14544] / [i915#15329]) +7 other tests skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][592] ([i915#11520]) -> [SKIP][593] ([i915#11520] / [i915#14544]) +4 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][594] ([i915#11520] / [i915#14544]) -> [SKIP][595] ([i915#11520])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-rkl: [SKIP][596] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][597] ([i915#1072] / [i915#9732]) +5 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][598] ([i915#1072] / [i915#9732]) -> [SKIP][599] ([i915#1072] / [i915#14544] / [i915#9732]) +10 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg1: [SKIP][600] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][601] ([i915#1072] / [i915#9732])
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_psr@psr-sprite-plane-onoff.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][602] ([i915#15243] / [i915#3555]) -> [SKIP][603] ([i915#14544] / [i915#15243] / [i915#3555])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_vrr@flip-suspend.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_vrr@flip-suspend.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][604] ([i915#14544] / [i915#2434]) -> [SKIP][605] ([i915#2434])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@perf@mi-rpc.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][606] ([i915#13029] / [i915#15778]) -> [ABORT][607] ([i915#15778])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-12/igt@perf_pmu@module-unload.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][608] ([i915#3291] / [i915#3708]) -> [SKIP][609] ([i915#14544] / [i915#3291] / [i915#3708])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#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#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025
[i915#16040]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16040
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#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#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#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[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#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[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#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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[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_8903 -> IGTPW_15152
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18470: 767b83aa80c6d7eaa1204a866b287b56a1a33122 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15152: 6df33ec949bd2c0558121bf907eed3c6ba74037c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/index.html
[-- Attachment #2: Type: text/html, Size: 204807 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ i915.CI.Full: failure for lib/igt_core: add timestamps to error logs (rev2)
2026-05-12 17:20 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-05-12 18:58 ` Hajda, Andrzej
0 siblings, 0 replies; 10+ messages in thread
From: Hajda, Andrzej @ 2026-05-12 18:58 UTC (permalink / raw)
To: igt-dev
W dniu 12.05.2026 o 19:20, Patchwork pisze:
> Project List - Patchwork *Patch Details*
> *Series:* lib/igt_core: add timestamps to error logs (rev2)
> *URL:* https://patchwork.freedesktop.org/series/166137/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/index.html
>
>
> CI Bug Log - changes from CI_DRM_18470_full -> IGTPW_15152_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_15152_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_15152_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_15152/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_15152_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@i915_query@query-topology-unsupported:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@i915_query@query-topology-unsupported.html>
> *
>
> igt@i915_selftest@live:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@i915_selftest@live.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@i915_selftest@live.html>
> *
>
> igt@kms_feature_discovery@display-3x:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_feature_discovery@display-3x.html>
> +1 other test skip
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_feature_discovery@display-3x.html>
> +1 other test skip
> *
>
> igt@kms_feature_discovery@display-4x:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_feature_discovery@display-4x.html>
>
Not related.
Regards
Andrzej
> *
>
>
> Warnings
>
> *
>
> igt@kms_feature_discovery@chamelium:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_feature_discovery@chamelium.html>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_feature_discovery@chamelium.html>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_feature_discovery@chamelium.html>
> *
>
> igt@kms_feature_discovery@display-2x:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-5/igt@kms_feature_discovery@display-2x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_feature_discovery@display-2x.html>
> +1 other test skip
> o shard-tglu: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-2/igt@kms_feature_discovery@display-2x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_feature_discovery@display-2x.html>
> *
>
> igt@kms_feature_discovery@display-3x:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_feature_discovery@display-3x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_feature_discovery@display-3x.html>
> +2 other tests skip
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_feature_discovery@display-3x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_feature_discovery@display-3x.html>
> +2 other tests skip
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_feature_discovery@display-3x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_feature_discovery@display-3x.html>
> +2 other tests skip
>
>
> Known issues
>
> Here are the changes found in IGTPW_15152_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@dmabuf@all-tests:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@dmabuf@all-tests.html>
> (i915#15931
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931>)
> *
>
> igt@gem_basic@multigpu-create-close:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_basic@multigpu-create-close.html>
> (i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> *
>
> igt@gem_ccs@suspend-resume:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-8/igt@gem_ccs@suspend-resume.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@gem_ccs@suspend-resume.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> +1 other test incomplete
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@gem_ccs@suspend-resume.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@gem_ccs@suspend-resume.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_close_race@multigpu-basic-process:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html>
> (i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> *
>
> igt@gem_create@create-ext-cpu-access-sanity-check:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html>
> (i915#6335
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>)
> *
>
> igt@gem_ctx_isolation@preservation-s3@rcs0:
>
> o shard-glk11: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> +1 other test incomplete
> *
>
> igt@gem_ctx_persistence@processes:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb7/igt@gem_ctx_persistence@processes.html>
> (i915#1099
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>)
> *
>
> igt@gem_ctx_persistence@saturated-hostile-nopreempt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html>
> (i915#5882
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882>)
> +7 other tests skip
> *
>
> igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html>
> (i915#5882
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882>)
> +6 other tests skip
> *
>
> igt@gem_ctx_sseu@engines:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@gem_ctx_sseu@engines.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_exec_balancer@bonded-pair:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html>
> (i915#4771
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>)
> *
>
> igt@gem_exec_balancer@bonded-true-hang:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +2 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@gem_exec_balancer@bonded-true-hang.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_balancer@invalid-bonds:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html>
> (i915#4036
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@gem_exec_balancer@invalid-bonds.html>
> (i915#4036
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@gem_exec_balancer@invalid-bonds.html>
> (i915#4036
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>)
> *
>
> igt@gem_exec_balancer@parallel-contexts:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> +1 other test skip
> *
>
> igt@gem_exec_big@single:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@gem_exec_big@single.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_exec_big@single.html>
> (i915#16040
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16040>)
> *
>
> igt@gem_exec_capture@capture-invisible@smem0:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html>
> (i915#6334
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_exec_capture@capture-invisible@smem0.html>
> (i915#6334
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>)
> +1 other test skip
> *
>
> igt@gem_exec_capture@capture@vecs0-lmem0:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html>
> (i915#11965
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965>)
> +4 other tests fail
> *
>
> igt@gem_exec_flush@basic-wb-rw-before-default:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> +1 other test skip
> *
>
> igt@gem_exec_reloc@basic-gtt-read:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-read.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +10 other tests skip
> *
>
> igt@gem_exec_reloc@basic-range:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +5 other tests skip
> *
>
> igt@gem_exec_reloc@basic-wc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +1 other test skip
> *
>
> igt@gem_exec_reloc@basic-write-cpu-active:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +6 other tests skip
> *
>
> igt@gem_exec_reloc@basic-write-read-noreloc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +9 other tests skip
> *
>
> igt@gem_exec_schedule@preempt-queue-contexts-chain:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_suspend@basic-s3@lmem0:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@gem_exec_suspend@basic-s3@lmem0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_exec_suspend@basic-s3@lmem0.html>
> (i915#13196
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196>
> / i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> +1 other test incomplete
> *
>
> igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> +1 other test skip
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)
> *
>
> igt@gem_lmem_swapping@heavy-verify-random:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> *
>
> igt@gem_lmem_swapping@parallel-multi:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> *
>
> igt@gem_lmem_swapping@random-engines:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk2/igt@gem_lmem_swapping@random-engines.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +4 other tests skip
> *
>
> igt@gem_lmem_swapping@smem-oom:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +4 other tests skip
> *
>
> igt@gem_lmem_swapping@verify-random-ccs:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +1 other test skip
> *
>
> igt@gem_madvise@dontneed-before-pwrite:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +2 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@gem_madvise@dontneed-before-pwrite.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> *
>
> igt@gem_mmap_gtt@coherency:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@gem_mmap_gtt@coherency.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +2 other tests skip
> *
>
> igt@gem_mmap_wc@copy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@gem_mmap_wc@copy.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +2 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_mmap_wc@copy.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@gem_mmap_wc@copy.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> *
>
> igt@gem_partial_pwrite_pread@reads-display:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> *
>
> igt@gem_partial_pwrite_pread@reads-uncached:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +4 other tests skip
> *
>
> igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> *
>
> igt@gem_pread@exhaustion:
>
> o shard-glk: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@gem_pread@exhaustion.html>
> (i915#2658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>)
> *
>
> igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +5 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +2 other tests skip
> *
>
> igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>
> / i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +8 other tests skip
> *
>
> igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html>
> (i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +4 other tests skip
> *
>
> igt@gem_set_tiling_vs_gtt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@gem_set_tiling_vs_gtt.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> *
>
> igt@gem_softpin@evict-snoop-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gem_softpin@evict-snoop-interruptible.html>
> (i915#4885
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>)
> *
>
> igt@gem_tiled_blits@basic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_tiled_blits@basic.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +8 other tests skip
> *
>
> igt@gem_tiled_wb:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@gem_tiled_wb.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +4 other tests skip
> *
>
> igt@gem_userptr_blits@coherency-sync:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@gem_userptr_blits@coherency-sync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> +2 other tests skip
> *
>
> igt@gem_userptr_blits@create-destroy-unsync:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@invalid-mmap-offset-unsync:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4880
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4880
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>)
> *
>
> igt@gem_userptr_blits@unsync-unmap:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gen9_exec_parse@basic-rejected-ctx-param:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html>
> +149 other tests skip
> *
>
> igt@gen9_exec_parse@batch-invalid-length:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +6 other tests skip
> *
>
> igt@gen9_exec_parse@shadow-peek:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +6 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +4 other tests skip
> *
>
> igt@gen9_exec_parse@unaligned-jump:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +4 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +4 other tests skip
> *
>
> igt@i915_drm_fdinfo@all-busy-check-all:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@i915_drm_fdinfo@all-busy-check-all.html>
> (i915#14123
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123>)
> *
>
> igt@i915_drm_fdinfo@virtual-busy-idle-all:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-idle-all.html>
> (i915#14118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-idle-all.html>
> (i915#14118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118>)
> *
>
> igt@i915_pm_freq_api@freq-suspend:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@i915_pm_freq_api@freq-suspend.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_rpm@system-suspend:
>
> o shard-glk10: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@i915_pm_rpm@system-suspend.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> *
>
> igt@i915_pm_rpm@system-suspend-execbuf:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>
> / i915#15172
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172>)
> o shard-rkl: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> *
>
> igt@i915_query@hwconfig_table:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@i915_query@hwconfig_table.html>
> (i915#6245
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> *
>
> igt@i915_selftest@live@gem_contexts:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@i915_selftest@live@gem_contexts.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html>
> (i915#15433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433>)
> *
>
> igt@i915_selftest@live@workarounds:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@i915_selftest@live@workarounds.html>
> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@i915_selftest@live@workarounds.html>
> (i915#12061
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>)
> +1 other test dmesg-fail
> *
>
> igt@i915_suspend@sysfs-reader:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk4/igt@i915_suspend@sysfs-reader.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@i915_suspend@sysfs-reader.html>
> (i915#4817
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> *
>
> igt@intel_hwmon@hwmon-write:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@intel_hwmon@hwmon-write.html>
> (i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> *
>
> igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9531
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
> (i915#5956
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>)
> +1 other test fail
> *
>
> igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html>
> (i915#15662
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662>)
> +1 other test fail
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +2 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-64bpp-rotate-180:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-0:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +1 other test skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +5 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html>
> (i915#15733
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733>
> / i915#5138
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> *
>
> igt@kms_big_fb@linear-32bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> +1 other test skip
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html>
> +10 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +1 other test skip
> *
>
> igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_big_fb@y-tiled-16bpp-rotate-180:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html>
> +10 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-64bpp-rotate-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +11 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>)
> +2 other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +9 other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +35 other tests skip
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> *
>
> igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
>
> o shard-glk11: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html>
> +145 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +19 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +84 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +24 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html>
> (i915#15582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>)
> +3 other tests incomplete
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +9 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
>
> o shard-rkl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html>
> (i915#15132
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>)
> +1 other test abort
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +98 other tests skip
> *
>
> igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#10434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +3 other tests skip
> *
>
> igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +10 other tests skip
> *
>
> igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +219 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +58 other tests skip
> *
>
> igt@kms_cdclk@mode-transition:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_cdclk@mode-transition.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> +1 other test skip
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cdclk@mode-transition.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> *
>
> igt@kms_chamelium_edid@hdmi-mode-timings:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_chamelium_edid@hdmi-mode-timings.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +8 other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-fast:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +1 other test skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-fast:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +3 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +8 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +2 other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +2 other tests skip
> *
>
> igt@kms_content_protection@atomic-dpms-hdcp14:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-0:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>
> / i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> *
>
> igt@kms_content_protection@dp-mst-type-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> *
>
> igt@kms_content_protection@dp-mst-type-0-hdcp14:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
> +1 other test skip
> *
>
> igt@kms_content_protection@dp-mst-type-1:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>
> / i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>
> / i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> *
>
> igt@kms_content_protection@dp-mst-type-1-suspend-resume:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html>
> (i915#15330
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_content_protection@srm.html>
> (i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> *
>
> igt@kms_content_protection@uevent-hdcp14:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_content_protection@uevent-hdcp14.html>
> (i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-256x85:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +5 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +1 other test fail
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> +3 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-max-size:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-max-size.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8814
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-128x42:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html>
> (i915#8814
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x10:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +3 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x32:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +8 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-512x512:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +1 other test fail
> *
>
> igt@kms_cursor_crc@cursor-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html>
> (i915#12358
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358>
> / i915#14152
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152>
> / i915#7882
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882>)
> *
>
> igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html>
> (i915#12358
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358>
> / i915#14152
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152>)
> *
>
> igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html>
> (i915#13046
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +4 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html>
> (i915#9809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>)
> +1 other test skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> +1 other test skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> *
>
> igt@kms_display_modes@extended-mode-basic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html>
> (i915#13691
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html>
> (i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +3 other tests skip
> *
>
> igt@kms_dp_link_training@non-uhbr-sst:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-12/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> *
>
> igt@kms_dp_link_training@uhbr-sst:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html>
> (i915#13748
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> *
>
> igt@kms_dsc@dsc-fractional-bpp:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_dsc@dsc-with-formats:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_dsc@dsc-with-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_dsc@dsc-with-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_feature_discovery@chamelium:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_feature_discovery@chamelium.html>
> (i915#2065
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065>)
> *
>
> igt@kms_feature_discovery@dp-mst:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_feature_discovery@dp-mst.html>
> (i915#9337
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>)
> *
>
> igt@kms_feature_discovery@psr2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_feature_discovery@psr2.html>
> (i915#658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
> *
>
> igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> *
>
> igt@kms_flip@2x-blocking-absolute-wf_vblank:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> *
>
> igt@kms_flip@2x-flip-vs-panning-vs-hang:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +5 other tests skip
> *
>
> igt@kms_flip@2x-modeset-vs-vblank-race:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_flip@2x-modeset-vs-vblank-race.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +11 other tests skip
> *
>
> igt@kms_flip@2x-wf_vblank-ts-check:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +3 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_flip@2x-wf_vblank-ts-check.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> *
>
> igt@kms_flip@flip-vs-fences-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html>
> (i915#8381
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
> *
>
> igt@kms_flip@flip-vs-suspend:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html>
> (i915#6113
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>)
> +1 other test incomplete
> o shard-glk11: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_flip@flip-vs-suspend.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>
> / i915#4839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>
> / i915#4839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_flip@flip-vs-suspend-interruptible.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible.html>
> (i915#15132
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@a-dp3:
>
> o shard-dg2: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible@a-dp3.html>
> (i915#15132
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>)
> *
>
> igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
>
> o shard-glk11: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> +5 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> +3 other tests skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> +5 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +1 other test skip
> *
>
> igt@kms_force_connector_basic@force-connector-state:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-7/igt@kms_force_connector_basic@force-connector-state.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html>
> (i915#15672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html>
> (i915#15991
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> (i915#10056
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056>)
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +7 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +18 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +5 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> +18 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html>
> +34 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html>
> +126 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> +7 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>
> / i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>
> / i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>
> / i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +17 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +5 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>
> / i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html>
> (i915#15991
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +25 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>
> / i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html>
> (i915#10055
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +20 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +24 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-glk10: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html>
> +190 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> +29 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html>
> +84 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +3 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> *
>
> igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +26 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html>
> +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html>
> (i915#15991
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991>)
> +14 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html>
> (i915#9766
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +33 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +48 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +13 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +17 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html>
> +37 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +14 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html>
> (i915#15991
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991>)
> +33 other tests skip
> *
>
> igt@kms_hdr@bpc-switch-dpms:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>)
> +1 other test skip
> *
>
> igt@kms_hdr@bpc-switch-suspend:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>)
> +1 other test skip
> *
>
> igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>)
> +5 other tests skip
> *
>
> igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> +2 other tests skip
> *
>
> igt@kms_hdr@static-swap:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_hdr@static-swap.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_hdr@static-swap.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> +1 other test skip
> *
>
> igt@kms_hdr@static-toggle:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@static-toggle.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_hdr@static-toggle.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> +1 other test skip
> *
>
> igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> +1 other test skip
> *
>
> igt@kms_joiner@basic-force-big-joiner:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html>
> (i915#15459
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15459
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_joiner@basic-ultra-joiner:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_joiner@invalid-modeset-ultra-joiner:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_pipe_stress@stress-xrgb8888-yftiled:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html>
> (i915#14712
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>)
> *
>
> igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html>
> (i915#15709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
> +1 other test skip
> *
>
> igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html>
> (i915#15709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
> +2 other tests skip
> *
>
> igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html>
> (i915#15709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
> +1 other test skip
> *
>
> igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html>
> (i915#15709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>)
> +1 other test skip
> *
>
> igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html>
> (i915#15608
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>)
> +1 other test skip
> *
>
> igt@kms_plane@plane-panning-bottom-right-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html>
> (i915#13026
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026>)
> +1 other test incomplete
> *
>
> igt@kms_plane_alpha_blend@alpha-transparent-fb:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>
> / i915#12177
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177>)
> *
>
> igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>)
> +1 other test fail
> *
>
> igt@kms_plane_multiple@2x-tiling-none:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_plane_multiple@2x-tiling-none.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> *
>
> igt@kms_plane_multiple@tiling-yf:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_plane_multiple@tiling-yf.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>)
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +9 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +3 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +8 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +4 other tests skip
> *
>
> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +9 other tests skip
> *
>
> igt@kms_pm_backlight@basic-brightness:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_pm_backlight@basic-brightness.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> *
>
> igt@kms_pm_backlight@brightness-with-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html>
> (i915#12343
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>)
> *
>
> igt@kms_pm_backlight@fade-with-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html>
> (i915#9812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>)
> *
>
> igt@kms_pm_backlight@fade-with-suspend:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html>
> (i915#9812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>)
> *
>
> igt@kms_pm_dc@dc6-dpms:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html>
> (i915#15752
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html>
> (i915#3361
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361>)
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html>
> (i915#15752
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752>)
> *
>
> igt@kms_pm_dc@dc9-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15739
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739>)
> *
>
> igt@kms_pm_lpsp@screens-disabled:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-5/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> *
>
> igt@kms_pm_rpm@dpms-lpsp:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> *
>
> igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> +1 other test skip
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> +1 other test skip
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> *
>
> igt@kms_pm_rpm@package-g7:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_pm_rpm@package-g7.html>
> (i915#15403
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
> *
>
> igt@kms_prime@basic-crc-hybrid:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> +1 other test skip
> *
>
> igt@kms_prime@basic-modeset-hybrid:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +8 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#12316
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>)
> +4 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
>
> o shard-glk10: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +3 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +11 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +11 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html>
> (i915#9808
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>)
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +1 other test skip
> *
>
> igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +12 other tests skip
> *
>
> igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +4 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +5 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +1 other test skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
>
> o shard-glk11: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +2 other tests skip
> *
>
> igt@kms_psr2_su@frontbuffer-xrgb8888:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> *
>
> igt@kms_psr2_su@page_flip-p010:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> *
>
> igt@kms_psr@fbc-psr-cursor-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +4 other tests skip
> *
>
> igt@kms_psr@fbc-psr-primary-blt:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr@fbc-psr-primary-blt.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +10 other tests skip
> *
>
> igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk1/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html>
> +498 other tests skip
> *
>
> igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html>
> (i915#9688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
> +10 other tests skip
> *
>
> igt@kms_psr@pr-dpms:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@kms_psr@pr-dpms.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +27 other tests skip
> *
>
> igt@kms_psr@psr-cursor-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +19 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_psr@psr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +12 other tests skip
> *
>
> igt@kms_psr@psr-cursor-render:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_psr@psr-cursor-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +18 other tests skip
> *
>
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html>
> (i915#15949
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949>)
> *
>
> igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>
> / i915#15867
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +1 other test skip
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-270:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-270.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>
> / i915#15867
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-270.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>
> / i915#15867
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>)
> +1 other test skip
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> *
>
> igt@kms_vblank@ts-continuation-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_vblank@ts-continuation-suspend.html>
> (i915#12276
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>)
> +1 other test incomplete
> *
>
> igt@kms_vrr@flipline:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_vrr@flipline.html>
> (i915#15243
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_vrr@lobf:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-3/igt@kms_vrr@lobf.html>
> (i915#11920
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>)
> *
>
> igt@kms_vrr@negative-basic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_vrr@negative-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-9/igt@kms_vrr@negative-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@kms_vrr@seamless-rr-switch-drrs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html>
> (i915#8808
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>
> / i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@kms_vrr@seamless-rr-switch-virtual:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-virtual.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@perf@gen8-unprivileged-single-ctx-counters:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html>
> (i915#2436
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>)
> *
>
> igt@perf@non-zero-reason@0-rcs0:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html>
> (i915#9100
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100>)
> +1 other test fail
> *
>
> igt@perf@unprivileged-single-ctx-counters:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html>
> (i915#2433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>)
> *
>
> igt@perf_pmu@module-unload:
>
> o shard-tglu-1: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-1/igt@perf_pmu@module-unload.html>
> (i915#13029
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029>
> / i915#15778
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>)
> o shard-glk11: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk11/igt@perf_pmu@module-unload.html>
> (i915#15778
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>)
> *
>
> igt@prime_vgem@basic-fence-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> *
>
> igt@prime_vgem@coherency-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@prime_vgem@coherency-gtt.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>
> / i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> *
>
> igt@sriov_basic@enable-vfs-autoprobe-off:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> *
>
> igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html>
> (i915#12910
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>)
> +9 other tests fail
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html>
> (i915#12910
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>)
> +9 other tests fail
>
>
> Possible fixes
>
> *
>
> igt@gem_workarounds@suspend-resume-context:
>
> o shard-glk: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@gem_workarounds@suspend-resume-context.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk5/igt@gem_workarounds@suspend-resume-context.html>
> *
>
> igt@i915_suspend@basic-s2idle-without-i915:
>
> o shard-rkl: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html>
> (i915#15131
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@i915_suspend@basic-s2idle-without-i915.html>
> *
>
> igt@i915_suspend@fence-restore-untiled:
>
> o shard-rkl: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html>
> (i915#4817
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html>
> o shard-glk: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@i915_suspend@fence-restore-untiled.html>
> (i915#4817
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk3/igt@i915_suspend@fence-restore-untiled.html>
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> (i915#15733
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733>
> / i915#5138
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> *
>
> igt@kms_cursor_crc@cursor-random-128x42:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html>
> +2 other tests pass
> *
>
> igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html>
> +3 other tests pass
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html>
> (i915#13027
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible.html>
> *
>
> igt@kms_force_connector_basic@prune-stale-modes:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html>
> (i915#15672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html>
> *
>
> igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-glk: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk5/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> +2 other tests pass
> *
>
> igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html>
> +11 other tests pass
> *
>
> igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html>
> (i915#15989
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html>
> *
>
> igt@kms_hdr@static-toggle:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_hdr@static-toggle.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@static-toggle.html>
> *
>
> igt@kms_pipe_crc_basic@suspend-read-crc:
>
> o shard-rkl: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> (i915#12756
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756>
> / i915#13476
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> +2 other tests pass
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (i915#15073
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> +1 other test pass
> *
>
> igt@kms_pm_rpm@system-suspend-idle:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html>
> (i915#14419
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html>
> *
>
> igt@kms_setmode@basic:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-16/igt@kms_setmode@basic.html>
> (i915#15106
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_setmode@basic.html>
> +2 other tests pass
>
>
> Warnings
>
> *
>
> igt@device_reset@cold-reset-bound:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@device_reset@cold-reset-bound.html>
> (i915#11078
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@device_reset@cold-reset-bound.html>
> (i915#11078
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@dmabuf@all-tests:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@dmabuf@all-tests.html>
> (i915#15931
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@dmabuf@all-tests.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15931
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931>)
> *
>
> igt@gem_close_race@multigpu-basic-threads:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html>
> (i915#7697
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
> *
>
> igt@gem_create@create-ext-cpu-access-sanity-check:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html>
> (i915#6335
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6335
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>)
> *
>
> igt@gem_ctx_sseu@invalid-args:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_ctx_sseu@invalid-sseu:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_exec_balancer@parallel-balancer:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> +2 other tests skip
> *
>
> igt@gem_exec_reloc@basic-gtt-wc-active:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +3 other tests skip
> *
>
> igt@gem_exec_schedule@semaphore-power:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html>
> (i915#7276
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7276
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>)
> *
>
> igt@gem_lmem_swapping@parallel-random-verify-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +2 other tests skip
> *
>
> igt@gem_partial_pwrite_pread@reads:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +1 other test skip
> *
>
> igt@gem_readwrite@beyond-eob:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@gem_readwrite@beyond-eob.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_readwrite@beyond-eob.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> *
>
> igt@gem_set_tiling_vs_blt@tiled-to-untiled:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@gem_userptr_blits@dmabuf-sync:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#3323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#3323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
> *
>
> igt@gen9_exec_parse@secure-batches:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@shadow-peek:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +2 other tests skip
> *
>
> igt@i915_module_load@resize-bar:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_module_load@resize-bar.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@i915_module_load@resize-bar.html>
> (i915#6412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>)
> *
>
> igt@i915_pm_sseu@full-enable:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_pm_sseu@full-enable.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#4387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@i915_pm_sseu@full-enable.html>
> (i915#4387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>)
> *
>
> igt@intel_hwmon@hwmon-read:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@intel_hwmon@hwmon-read.html>
> (i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@intel_hwmon@hwmon-read.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> *
>
> igt@kms_big_fb@4-tiled-16bpp-rotate-90:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +1 other test skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +38 other tests skip
> *
>
> igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +3 other tests skip
> *
>
> igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +5 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +2 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +3 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html>
> (i915#14098
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +6 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html>
> (i915#12805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html>
> (i915#12805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@kms_chamelium_edid@dp-mode-timings:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_chamelium_edid@dp-mode-timings.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> *
>
> igt@kms_content_protection@legacy:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_content_protection@legacy.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_content_protection@legacy.html>
> (i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_content_protection@srm.html>
> (i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_content_protection@srm.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15865
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-512x512:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> +18 other tests skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>
> / i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> +4 other tests skip
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>
> / i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> +2 other tests skip
> *
>
> igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dsc@dsc-with-output-formats:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#3955
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3955
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> *
>
> igt@kms_feature_discovery@dp-mst:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html>
> (i915#9337
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9337
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>)
> *
>
> igt@kms_flip@2x-flip-vs-dpms:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +2 other tests skip
> *
>
> igt@kms_flip@2x-plain-flip-interruptible:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +4 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html>
> (i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15643
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>)
> +1 other test skip
> *
>
> igt@kms_force_connector_basic@force-load-detect:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html>
> (i915#15672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_force_connector_basic@force-load-detect.html>
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html>
> +7 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html>
> +87 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +71 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html>
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>
> / i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html>
> (i915#15104
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>
> / i915#15990
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +58 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +16 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-suspend:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-suspend.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +5 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html>
> (i915#15102
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>)
> *
>
> igt@kms_hdr@brightness-with-hdr:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html>
> (i915#14543
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543>
> / i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html>
> (i915#16011
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011>)
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_hdr@invalid-hdr.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@invalid-hdr.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html>
> (i915#16012
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#16025
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025>)
> +1 other test skip
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html>
> (i915#15458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> *
>
> igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638>
> / i915#15722
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html>
> (i915#15638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638>
> / i915#15722
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722>)
> *
>
> igt@kms_panel_fitting@atomic-fastset:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> *
>
> igt@kms_plane_lowres@tiling-yf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +1 other test skip
> *
>
> igt@kms_plane_multiple@2x-tiling-4:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html>
> (i915#13958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> *
>
> igt@kms_plane_multiple@tiling-yf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html>
> (i915#14259
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> *
>
> igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html>
> (i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15329
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>)
> +7 other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> +4 other tests skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> *
>
> igt@kms_psr@pr-cursor-mmap-cpu:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@kms_psr@pr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +5 other tests skip
> *
>
> igt@kms_psr@psr-cursor-plane-move:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +10 other tests skip
> *
>
> igt@kms_psr@psr-sprite-plane-onoff:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_psr@psr-sprite-plane-onoff.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-17/igt@kms_psr@psr-sprite-plane-onoff.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> *
>
> igt@kms_vrr@flip-suspend:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_vrr@flip-suspend.html>
> (i915#15243
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@kms_vrr@flip-suspend.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#15243
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@perf@mi-rpc:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@perf@mi-rpc.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#2434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-2/igt@perf@mi-rpc.html>
> (i915#2434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>)
> *
>
> igt@perf_pmu@module-unload:
>
> o shard-dg1: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-12/igt@perf_pmu@module-unload.html>
> (i915#13029
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029>
> / i915#15778
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>)
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-dg1-18/igt@perf_pmu@module-unload.html>
> (i915#15778
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>)
> *
>
> igt@prime_vgem@basic-fence-read:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@prime_vgem@basic-fence-read.html>
> (i915#3291
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291>
> / i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15152/shard-rkl-6/igt@prime_vgem@basic-fence-read.html>
> (i915#14544
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>
> / i915#3291
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291>
> / i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8903 -> IGTPW_15152
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_18470: 767b83aa80c6d7eaa1204a866b287b56a1a33122 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_15152: 6df33ec949bd2c0558121bf907eed3c6ba74037c @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-05-12 18:58 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 12:55 [PATCH v3 0/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
2026-05-11 12:55 ` [PATCH v3 1/2] lib/igt_core: do not reset errno in igt_gettime Andrzej Hajda
2026-05-11 15:05 ` Knop, Ryszard
2026-05-11 12:55 ` [PATCH v3 2/2] lib/igt_core: add timestamps to error logs Andrzej Hajda
2026-05-11 14:35 ` Knop, Ryszard
2026-05-12 3:59 ` ✓ i915.CI.BAT: success for lib/igt_core: add timestamps to error logs (rev2) Patchwork
2026-05-12 5:43 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-12 11:20 ` ✓ Xe.CI.FULL: " Patchwork
2026-05-12 17:20 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-12 18:58 ` Hajda, Andrzej
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox