* [PATCH i-g-t 0/2] Group all force_hdcp14 tests together
@ 2026-05-11 3:41 Suraj Kandpal
2026-05-11 3:41 ` [PATCH i-g-t 1/2] tests/kms_content_protection: " Suraj Kandpal
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Suraj Kandpal @ 2026-05-11 3:41 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Suraj Kandpal
Group all force_hdcp14 tests together. This is to make it easier to
run all force_hdcp14 tests together and also to make the test
suite more organized.
Moreover, MST Dock ends up in a bad state after running the force_hdcp14 tests,
so grouping them together will help in avoiding running other tests after
the force_hdcp14 tests.
Only expeptions are the DPMS and suspend resume tests as they help
get the MST Dock out of the bad state.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (2):
tests/kms_content_protection: Group all force_hdcp14 tests together
tests/kms_content_protection: Group all MST force_hdcp14 tests
together
tests/kms_content_protection.c | 96 +++++++++++++++++-----------------
1 file changed, 48 insertions(+), 48 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 1/2] tests/kms_content_protection: Group all force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
@ 2026-05-11 3:41 ` Suraj Kandpal
2026-05-12 4:43 ` Reddy Guddati, Santhosh
2026-05-11 3:41 ` [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST " Suraj Kandpal
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Suraj Kandpal @ 2026-05-11 3:41 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Suraj Kandpal
Change ordering of tests so that all force_hdcp14 test are run together,
that too after all the regular tests have been run.
Currently we are seeing these tests are putting MST DOCK in a bad state from
time to time where it can only report HDCP 1.4 after running these
tests.
The only exception here is the DPMS and suspend resume test which are
run last since the help MST DOCK to return back to good state.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/kms_content_protection.c | 64 +++++++++++++++++-----------------
1 file changed, 32 insertions(+), 32 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index a42f699e9..3baf225cd 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -1025,42 +1025,17 @@ static const struct {
bool content_type;
bool is_force_hdcp14;
} subtests[] = {
- { .desc = "Test content protection with atomic modesetting with HDCP1.4.",
- .name = "atomic-hdcp14",
- .cp_tests = 0,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
{ .desc = "Test content protection with atomic modesetting",
.name = "atomic",
.cp_tests = 0,
.content_type = HDCP_CONTENT_TYPE_0,
.is_force_hdcp14 = false,
},
- { .desc = "Test content protection with DPMS ON/OFF during "
- "atomic modesetting with HDCP1.4.",
- .name = "atomic-dpms-hdcp14",
- .cp_tests = CP_DPMS,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
- { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting.",
- .name = "atomic-dpms",
- .cp_tests = CP_DPMS,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = false,
- },
{ .desc = "Test for the integrity of link with type 0 content.",
.name = "lic-type-0",
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_0,
},
- { .desc = "Test for the integrity of link with type 0 content.",
- .name = "lic-type-0-hdcp14",
- .cp_tests = CP_LIC,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
{ .desc = "Test for the integrity of link with type 1 content",
.name = "lic-type-1",
.cp_tests = CP_LIC,
@@ -1093,13 +1068,6 @@ static const struct {
.content_type = HDCP_CONTENT_TYPE_0,
.is_force_hdcp14 = false,
},
- { .desc = "Test to detect the HDCP status change when we are reading the uevent "
- "sent with the corresponding connector id and property id.",
- .name = "uevent-hdcp14",
- .cp_tests = CP_UEVENT,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
/*
* Testing the revocation check through SRM needs a HDCP sink with
* programmable Ksvs or we need a uAPI from kernel to read the
@@ -1115,6 +1083,38 @@ static const struct {
.content_type = HDCP_CONTENT_TYPE_0,
.is_force_hdcp14 = false,
},
+ { .desc = "Test content protection with atomic modesetting with HDCP1.4.",
+ .name = "atomic-hdcp14",
+ .cp_tests = 0,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test for the integrity of link with type 0 content.",
+ .name = "lic-type-0-hdcp14",
+ .cp_tests = CP_LIC,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test to detect the HDCP status change when we are reading the uevent "
+ "sent with the corresponding connector id and property id.",
+ .name = "uevent-hdcp14",
+ .cp_tests = CP_UEVENT,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test content protection with DPMS ON/OFF during "
+ "atomic modesetting with HDCP1.4.",
+ .name = "atomic-dpms-hdcp14",
+ .cp_tests = CP_DPMS,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting.",
+ .name = "atomic-dpms",
+ .cp_tests = CP_DPMS,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
+ },
{.desc = "Test to verify the behaviour of HDCP after suspend resume cycles.",
.name = "suspend-resume",
.cp_tests = SUSPEND_RESUME,
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
2026-05-11 3:41 ` [PATCH i-g-t 1/2] tests/kms_content_protection: " Suraj Kandpal
@ 2026-05-11 3:41 ` Suraj Kandpal
2026-05-12 4:45 ` Reddy Guddati, Santhosh
2026-05-11 21:23 ` ✓ i915.CI.BAT: success for Group all " Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Suraj Kandpal @ 2026-05-11 3:41 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, santhosh.reddy.guddati, Suraj Kandpal
Change ordering of tests so that all force_hdcp14 test are run together,
that too after all the regular tests have been run.
Currently we are seeing these tests are putting MST DOCK in a bad state from
time to time where it can only report HDCP 1.4 after running these
tests or not reporting any HDCP capability causing test skips.
The only exception here is the DPMS and suspend resume test which are
run last since the help MST DOCK to return back to good state.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/kms_content_protection.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 3baf225cd..c59441f11 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -1135,28 +1135,16 @@ static const struct {
.content_type = HDCP_CONTENT_TYPE_0,
.is_force_hdcp14 = false,
},
- { .desc = "Test Content protection(Type 0) over DP MST with HDCP1.4.",
- .name = "dp-mst-type-0-hdcp14",
+ { .desc = "Test Content protection(Type 1) over DP MST.",
+ .name = "dp-mst-type-1",
.cp_tests = 0,
- .content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
- { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
- .name = "dp-mst-lic-type-0",
- .cp_tests = CP_LIC,
- .content_type = HDCP_CONTENT_TYPE_0,
+ .content_type = HDCP_CONTENT_TYPE_1,
.is_force_hdcp14 = false,
},
{ .desc = "Test Content protection(Type 0) over DP MST with LIC.",
- .name = "dp-mst-lic-type-0-hdcp14",
+ .name = "dp-mst-lic-type-0",
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_0,
- .is_force_hdcp14 = true,
- },
- { .desc = "Test Content protection(Type 1) over DP MST.",
- .name = "dp-mst-type-1",
- .cp_tests = 0,
- .content_type = HDCP_CONTENT_TYPE_1,
.is_force_hdcp14 = false,
},
{ .desc = "Test Content protection(Type 1) over DP MST with LIC.",
@@ -1165,6 +1153,18 @@ static const struct {
.content_type = HDCP_CONTENT_TYPE_1,
.is_force_hdcp14 = false,
},
+ { .desc = "Test Content protection(Type 0) over DP MST with HDCP1.4.",
+ .name = "dp-mst-type-0-hdcp14",
+ .cp_tests = 0,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
+ .name = "dp-mst-lic-type-0-hdcp14",
+ .cp_tests = CP_LIC,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
{ .desc = "Test Content protection(Type 0) over DP MST with suspend resume.",
.name = "dp-mst-type-0-suspend-resume",
.cp_tests = SUSPEND_RESUME,
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for Group all force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
2026-05-11 3:41 ` [PATCH i-g-t 1/2] tests/kms_content_protection: " Suraj Kandpal
2026-05-11 3:41 ` [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST " Suraj Kandpal
@ 2026-05-11 21:23 ` Patchwork
2026-05-11 21:55 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-11 21:23 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]
== Series Details ==
Series: Group all force_hdcp14 tests together
URL : https://patchwork.freedesktop.org/series/166284/
State : success
== Summary ==
CI Bug Log - changes from IGT_8903 -> IGTPW_15142
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15142
CI-20190529: 20190529
CI_DRM_18467: f8ee23694aa6be213355905a78f79bb1b0861565 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15142: d3c95c0919e06ba6e8f86e27ca5a6eb453b89fcf @ 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_15142/index.html
[-- Attachment #2: Type: text/html, Size: 1646 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Group all force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
` (2 preceding siblings ...)
2026-05-11 21:23 ` ✓ i915.CI.BAT: success for Group all " Patchwork
@ 2026-05-11 21:55 ` Patchwork
2026-05-11 23:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-12 5:02 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-11 21:55 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 948 bytes --]
== Series Details ==
Series: Group all force_hdcp14 tests together
URL : https://patchwork.freedesktop.org/series/166284/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_BAT -> XEIGTPW_15142_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_15142
IGTPW_15142: d3c95c0919e06ba6e8f86e27ca5a6eb453b89fcf @ 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
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/index.html
[-- Attachment #2: Type: text/html, Size: 1493 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for Group all force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
` (3 preceding siblings ...)
2026-05-11 21:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-11 23:52 ` Patchwork
2026-05-12 5:02 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-11 23:52 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 54834 bytes --]
== Series Details ==
Series: Group all force_hdcp14 tests together
URL : https://patchwork.freedesktop.org/series/166284/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8903_FULL -> XEIGTPW_15142_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15142_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15142_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15142_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@xe_exec_fault_mode@twice-basic-prefetch:
- shard-lnl: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-4/igt@xe_exec_fault_mode@twice-basic-prefetch.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-4/igt@xe_exec_fault_mode@twice-basic-prefetch.html
Known issues
------------
Here are the changes found in XEIGTPW_15142_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/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][12] ([Intel XE#2887])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#373])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#6703] / [Intel XE#7935])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4354] / [Intel XE#5882])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2244])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4422] / [Intel XE#7442])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6126] / [Intel XE#776])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#6703]) +113 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-bmg: [PASS][25] -> [FAIL][26] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@kms_flip@plain-flip-fb-recreate.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/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][28] ([Intel XE#6312]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-5/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][29] ([Intel XE#2311]) +17 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/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][30] ([Intel XE#656] / [Intel XE#7905])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-8/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][31] ([Intel XE#4141]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7905]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-7/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][34] ([Intel XE#2313]) +14 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#7915]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6901])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/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][38] ([Intel XE#7283])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7283])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-d-dp-2:
- shard-bmg: [PASS][40] -> [ABORT][41] ([Intel XE#7814])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-d-dp-2.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-d-dp-2.html
* igt@kms_plane_multiple@2x-tiling-4@pipe-d-dp-2-pipe-c-hdmi-a-3:
- shard-bmg: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#7814]) +5 other tests dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4@pipe-d-dp-2-pipe-c-hdmi-a-3.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4@pipe-d-dp-2-pipe-c-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#5021] / [Intel XE#7377])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/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][45] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/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][46] ([Intel XE#3309] / [Intel XE#7368])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#2029] / [Intel XE#7395])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/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][50] ([Intel XE#1489])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/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][51] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2234])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2330] / [Intel XE#5813])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6503])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vblank@ts-continuation-idle-hang:
- shard-bmg: [PASS][55] -> [DMESG-FAIL][56] ([Intel XE#5545]) +1 other test dmesg-fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_vblank@ts-continuation-idle-hang.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_vblank@ts-continuation-idle-hang.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1499]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7636]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#6321])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#6540] / [Intel XE#688])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-3/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7136]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/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][64] ([Intel XE#6874]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_system_allocator@many-stride-mmap-prefetch:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#6557] / [Intel XE#6703])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-mmap-prefetch.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-mmap-prefetch.html
* igt@xe_exec_system_allocator@once-large-mmap-file-mlock-nomemset:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6703]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_system_allocator@once-large-mmap-file-mlock-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7138])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6964])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2245] / [Intel XE#7590])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5694] / [Intel XE#7370])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2284] / [Intel XE#7370])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4733] / [Intel XE#7417])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#5937])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-down.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-down.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][76] ([Intel XE#7914])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][77] ([Intel XE#7445]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@intel_hwmon@hwmon-write.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][79] ([Intel XE#5545]) -> [PASS][80] +1 other test pass
[79]: 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
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/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][81] ([Intel XE#301]) -> [PASS][82] +1 other test pass
[81]: 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
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: [FAIL][83] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][84] +1 other test pass
[83]: 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
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][85] ([Intel XE#1503]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][87] ([Intel XE#7922]) -> [PASS][88] +1 other test pass
[87]: 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
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][89] ([Intel XE#7340]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][91] ([Intel XE#2142]) -> [PASS][92] +1 other test pass
[91]: 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
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-lnl: [ABORT][93] -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@xe_copy_basic@mem-page-copy-17.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-lnl-4/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_sriov_admin@sched-priority-vf-write-denied:
- shard-bmg: [SKIP][95] ([Intel XE#6703]) -> [PASS][96] +125 other tests pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][97] ([Intel XE#5937]) -> [PASS][98] +1 other test pass
[97]: 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
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: [SKIP][99] ([Intel XE#2370]) -> [SKIP][100] ([Intel XE#6703])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [SKIP][102] ([Intel XE#7059] / [Intel XE#7085])
[101]: 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
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/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][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#1124]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][105] ([Intel XE#1124]) -> [SKIP][106] ([Intel XE#6703]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: [SKIP][107] ([Intel XE#7679]) -> [SKIP][108] ([Intel XE#6703])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#367])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2887])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][113] ([Intel XE#2887]) -> [SKIP][114] ([Intel XE#6703]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][115] ([Intel XE#3432]) -> [SKIP][116] ([Intel XE#6703])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][117] ([Intel XE#6703]) -> [SKIP][118] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#2252])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-single.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-6/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: [SKIP][121] ([Intel XE#2252]) -> [SKIP][122] ([Intel XE#6703]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][123] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][124] ([Intel XE#6703])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_content_protection@atomic-dpms.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [FAIL][126] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#2320])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][129] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][130] ([Intel XE#6703])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#4210] / [Intel XE#7467])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: [SKIP][133] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][134] ([Intel XE#6703])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: [SKIP][135] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][136] ([Intel XE#6703])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#4141]) +1 other test skip
[137]: 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
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][139] ([Intel XE#4141]) -> [SKIP][140] ([Intel XE#6703]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#7061] / [Intel XE#7356])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#6703]) +14 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#2311]) +10 other tests skip
[145]: 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
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#7061]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#2313]) +9 other tests skip
[149]: 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
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][151] ([Intel XE#2313]) -> [SKIP][152] ([Intel XE#6703]) +12 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][153] ([Intel XE#7591]) -> [SKIP][154] ([Intel XE#6703])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][155] ([Intel XE#7283]) -> [SKIP][156] ([Intel XE#6703])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#7283])
[157]: 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
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][159] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][160] ([Intel XE#6703])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#1489])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][163] ([Intel XE#1489]) -> [SKIP][164] ([Intel XE#6703])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr@psr-basic.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: [SKIP][167] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][168] ([Intel XE#6703]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: [SKIP][169] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][170] ([Intel XE#6703])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: [SKIP][171] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][172] ([Intel XE#6703])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][173] ([Intel XE#2413]) -> [SKIP][174] ([Intel XE#6703])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: [SKIP][175] ([Intel XE#6503]) -> [SKIP][176] ([Intel XE#6703])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_sharpness_filter@filter-rotations.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#6503])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][179] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][180] ([Intel XE#2426] / [Intel XE#5848])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-bmg: [SKIP][181] ([Intel XE#7636]) -> [SKIP][182] ([Intel XE#6703]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@xe_eudebug@discovery-empty-clients.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#7636]) +3 other tests skip
[183]: 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
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-small-multi-queue-priority:
- shard-bmg: [SKIP][185] ([Intel XE#7140]) -> [SKIP][186] ([Intel XE#6703]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-bmg: [SKIP][187] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][188] ([Intel XE#6703])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: [SKIP][189] ([Intel XE#6703]) -> [SKIP][190] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[189]: 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
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][191] ([Intel XE#7136]) -> [SKIP][192] ([Intel XE#6703]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#7136])
[193]: 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
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-10/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][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#6874]) +6 other tests skip
[195]: 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
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-7/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_multi_queue@many-execs-close-fd-smem:
- shard-bmg: [SKIP][197] ([Intel XE#6874]) -> [SKIP][198] ([Intel XE#6703]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][199] ([Intel XE#6703]) -> [SKIP][200] ([Intel XE#7138]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-bmg: [SKIP][201] ([Intel XE#7138]) -> [SKIP][202] ([Intel XE#6703])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
* igt@xe_page_reclaim@binds-1g-partial:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#7793])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_page_reclaim@binds-1g-partial.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-9/igt@xe_page_reclaim@binds-1g-partial.html
* igt@xe_pat@pat-sw-hw-suspend:
- shard-bmg: [SKIP][205] ([Intel XE#7590]) -> [SKIP][206] ([Intel XE#6703])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@xe_pat@pat-sw-hw-suspend.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-2/igt@xe_pat@pat-sw-hw-suspend.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#2284] / [Intel XE#7370])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/shard-bmg-3/igt@xe_pm@d3cold-mmap-vram.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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#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#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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[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#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#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[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#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[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#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#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#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[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#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15142
IGTPW_15142: d3c95c0919e06ba6e8f86e27ca5a6eb453b89fcf @ 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
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15142/index.html
[-- Attachment #2: Type: text/html, Size: 66789 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_content_protection: Group all force_hdcp14 tests together
2026-05-11 3:41 ` [PATCH i-g-t 1/2] tests/kms_content_protection: " Suraj Kandpal
@ 2026-05-12 4:43 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 9+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-05-12 4:43 UTC (permalink / raw)
To: Suraj Kandpal, igt-dev; +Cc: swati2.sharma
On 11-05-2026 09:11, Suraj Kandpal wrote:
> Change ordering of tests so that all force_hdcp14 test are run together,
> that too after all the regular tests have been run.
> Currently we are seeing these tests are putting MST DOCK in a bad state from
> time to time where it can only report HDCP 1.4 after running these
> tests.
> The only exception here is the DPMS and suspend resume test which are
> run last since the help MST DOCK to return back to good state.
nit >> the help >> they help
LGTM
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> tests/kms_content_protection.c | 64 +++++++++++++++++-----------------
> 1 file changed, 32 insertions(+), 32 deletions(-)
>
> diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
> index a42f699e9..3baf225cd 100644
> --- a/tests/kms_content_protection.c
> +++ b/tests/kms_content_protection.c
> @@ -1025,42 +1025,17 @@ static const struct {
> bool content_type;
> bool is_force_hdcp14;
> } subtests[] = {
> - { .desc = "Test content protection with atomic modesetting with HDCP1.4.",
> - .name = "atomic-hdcp14",
> - .cp_tests = 0,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> { .desc = "Test content protection with atomic modesetting",
> .name = "atomic",
> .cp_tests = 0,
> .content_type = HDCP_CONTENT_TYPE_0,
> .is_force_hdcp14 = false,
> },
> - { .desc = "Test content protection with DPMS ON/OFF during "
> - "atomic modesetting with HDCP1.4.",
> - .name = "atomic-dpms-hdcp14",
> - .cp_tests = CP_DPMS,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> - { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting.",
> - .name = "atomic-dpms",
> - .cp_tests = CP_DPMS,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = false,
> - },
> { .desc = "Test for the integrity of link with type 0 content.",
> .name = "lic-type-0",
> .cp_tests = CP_LIC,
> .content_type = HDCP_CONTENT_TYPE_0,
> },
> - { .desc = "Test for the integrity of link with type 0 content.",
> - .name = "lic-type-0-hdcp14",
> - .cp_tests = CP_LIC,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> { .desc = "Test for the integrity of link with type 1 content",
> .name = "lic-type-1",
> .cp_tests = CP_LIC,
> @@ -1093,13 +1068,6 @@ static const struct {
> .content_type = HDCP_CONTENT_TYPE_0,
> .is_force_hdcp14 = false,
> },
> - { .desc = "Test to detect the HDCP status change when we are reading the uevent "
> - "sent with the corresponding connector id and property id.",
> - .name = "uevent-hdcp14",
> - .cp_tests = CP_UEVENT,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> /*
> * Testing the revocation check through SRM needs a HDCP sink with
> * programmable Ksvs or we need a uAPI from kernel to read the
> @@ -1115,6 +1083,38 @@ static const struct {
> .content_type = HDCP_CONTENT_TYPE_0,
> .is_force_hdcp14 = false,
> },
> + { .desc = "Test content protection with atomic modesetting with HDCP1.4.",
> + .name = "atomic-hdcp14",
> + .cp_tests = 0,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> + { .desc = "Test for the integrity of link with type 0 content.",
> + .name = "lic-type-0-hdcp14",
> + .cp_tests = CP_LIC,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> + { .desc = "Test to detect the HDCP status change when we are reading the uevent "
> + "sent with the corresponding connector id and property id.",
> + .name = "uevent-hdcp14",
> + .cp_tests = CP_UEVENT,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> + { .desc = "Test content protection with DPMS ON/OFF during "
> + "atomic modesetting with HDCP1.4.",
> + .name = "atomic-dpms-hdcp14",
> + .cp_tests = CP_DPMS,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> + { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting.",
> + .name = "atomic-dpms",
> + .cp_tests = CP_DPMS,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = false,
> + },
> {.desc = "Test to verify the behaviour of HDCP after suspend resume cycles.",
> .name = "suspend-resume",
> .cp_tests = SUSPEND_RESUME,
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST force_hdcp14 tests together
2026-05-11 3:41 ` [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST " Suraj Kandpal
@ 2026-05-12 4:45 ` Reddy Guddati, Santhosh
0 siblings, 0 replies; 9+ messages in thread
From: Reddy Guddati, Santhosh @ 2026-05-12 4:45 UTC (permalink / raw)
To: Suraj Kandpal, igt-dev; +Cc: swati2.sharma
On 11-05-2026 09:11, Suraj Kandpal wrote:
> Change ordering of tests so that all force_hdcp14 test are run together,
> that too after all the regular tests have been run.
> Currently we are seeing these tests are putting MST DOCK in a bad state from
> time to time where it can only report HDCP 1.4 after running these
> tests or not reporting any HDCP capability causing test skips.
> The only exception here is the DPMS and suspend resume test which are
> run last since the help MST DOCK to return back to good state.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
LGTM,
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tests/kms_content_protection.c | 32 ++++++++++++++++----------------
> 1 file changed, 16 insertions(+), 16 deletions(-)
>
> diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
> index 3baf225cd..c59441f11 100644
> --- a/tests/kms_content_protection.c
> +++ b/tests/kms_content_protection.c
> @@ -1135,28 +1135,16 @@ static const struct {
> .content_type = HDCP_CONTENT_TYPE_0,
> .is_force_hdcp14 = false,
> },
> - { .desc = "Test Content protection(Type 0) over DP MST with HDCP1.4.",
> - .name = "dp-mst-type-0-hdcp14",
> + { .desc = "Test Content protection(Type 1) over DP MST.",
> + .name = "dp-mst-type-1",
> .cp_tests = 0,
> - .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> - { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
> - .name = "dp-mst-lic-type-0",
> - .cp_tests = CP_LIC,
> - .content_type = HDCP_CONTENT_TYPE_0,
> + .content_type = HDCP_CONTENT_TYPE_1,
> .is_force_hdcp14 = false,
> },
> { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
> - .name = "dp-mst-lic-type-0-hdcp14",
> + .name = "dp-mst-lic-type-0",
> .cp_tests = CP_LIC,
> .content_type = HDCP_CONTENT_TYPE_0,
> - .is_force_hdcp14 = true,
> - },
> - { .desc = "Test Content protection(Type 1) over DP MST.",
> - .name = "dp-mst-type-1",
> - .cp_tests = 0,
> - .content_type = HDCP_CONTENT_TYPE_1,
> .is_force_hdcp14 = false,
> },
> { .desc = "Test Content protection(Type 1) over DP MST with LIC.",
> @@ -1165,6 +1153,18 @@ static const struct {
> .content_type = HDCP_CONTENT_TYPE_1,
> .is_force_hdcp14 = false,
> },
> + { .desc = "Test Content protection(Type 0) over DP MST with HDCP1.4.",
> + .name = "dp-mst-type-0-hdcp14",
> + .cp_tests = 0,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> + { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
> + .name = "dp-mst-lic-type-0-hdcp14",
> + .cp_tests = CP_LIC,
> + .content_type = HDCP_CONTENT_TYPE_0,
> + .is_force_hdcp14 = true,
> + },
> { .desc = "Test Content protection(Type 0) over DP MST with suspend resume.",
> .name = "dp-mst-type-0-suspend-resume",
> .cp_tests = SUSPEND_RESUME,
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for Group all force_hdcp14 tests together
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
` (4 preceding siblings ...)
2026-05-11 23:52 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-12 5:02 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 5:02 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 123567 bytes --]
== Series Details ==
Series: Group all force_hdcp14 tests together
URL : https://patchwork.freedesktop.org/series/166284/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8903_full -> IGTPW_15142_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15142_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15142_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_15142/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_15142_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_params@larger-than-life-batch:
- shard-dg2: [PASS][1] -> [CRASH][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-1/igt@gem_exec_params@larger-than-life-batch.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@gem_exec_params@larger-than-life-batch.html
Known issues
------------
Here are the changes found in IGTPW_15142_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#3936])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][7] ([i915#12392] / [i915#13356])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][8] ([i915#13356]) +1 other test incomplete
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][9] ([i915#1099])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-snb6/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#5882]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#5882]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#4812])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#4812]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4812])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#4036])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#4036])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4036])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#4525])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][20] -> [FAIL][21] ([i915#15944])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-tglu-8/igt@gem_exec_big@single.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-2/igt@gem_exec_big@single.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3281]) +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3281]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3281]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281]) +12 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4537] / [i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4537] / [i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#2190])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][29] ([i915#2190])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][30] ([i915#4613]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4613]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4613])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#4613]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@coherency:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4077]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4077]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4083]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@gem_mmap_wc@copy.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4083]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@gem_mmap_wc@copy.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4083])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3282]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3282]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#3282])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3282]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3282]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][44] ([i915#14702] / [i915#2658])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4270]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4270]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8428]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#5190] / [i915#8428]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4079])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4079])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4079])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][54] ([i915#3323])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3297])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#3297])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3297] / [i915#4880])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][58] ([i915#13356] / [i915#14586])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk8/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#2527]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#2527] / [i915#2856])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][61] +142 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-snb7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#2527])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#2527]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#11527]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#8399])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][69] -> [INCOMPLETE][70] ([i915#13356] / [i915#13820]) +1 other test incomplete
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk11: NOTRUN -> [INCOMPLETE][71] ([i915#13356] / [i915#15172])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#11681] / [i915#6621])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][73] -> [SKIP][74] ([i915#7984])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-5/igt@i915_power@sanity.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@i915_power@sanity.html
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#7984])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#6245])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#6245])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-6/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][78] ([i915#4817])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][79] -> [ABORT][80] ([i915#15140])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@i915_suspend@forcewake.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][81] -> [INCOMPLETE][82] ([i915#4817])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk1/igt@i915_suspend@sysfs-reader.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk8/igt@i915_suspend@sysfs-reader.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2: [PASS][83] -> [ABORT][84] ([i915#15132])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-8/igt@kms_async_flips@async-flip-suspend-resume.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-10/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-3:
- shard-dg2: NOTRUN -> [ABORT][85] ([i915#15132])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-10/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-3.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#9531])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#9531])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5286]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#5286]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#5286]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#5286]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][92] +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3638]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3638]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][95] +9 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/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][97] ([i915#4538]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/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-dg2: NOTRUN -> [SKIP][98] ([i915#10307] / [i915#6095]) +86 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#12313]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][100] +419 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#12313]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#12313])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#12313])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#6095]) +64 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/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][105] ([i915#6095]) +24 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#6095]) +190 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#12805])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6095]) +8 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#15582]) +1 other test incomplete
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#12313]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#14098] / [i915#6095]) +51 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#6095]) +29 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#6095]) +73 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#3742])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#13781]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3742])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#15865])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#15865])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#15330])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#15330] / [i915#3116] / [i915#3299])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#15330])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#15330])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#13049])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#13049])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#13049])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#13049])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3555])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8814])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][135] ([i915#13566]) +1 other test fail
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#13049]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#13049]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3555]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3555]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8814])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][142] -> [FAIL][143] ([i915#13566]) +5 other tests fail
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][144] -> [INCOMPLETE][145] ([i915#12358] / [i915#14152]) +1 other test incomplete
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#13046] / [i915#5354]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/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][147] ([i915#4103] / [i915#4213])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#4103])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#4213])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#4103]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#9809]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][153] ([i915#15804])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9067])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#9067])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#9067])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#9067])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#9067])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#13691])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#13691])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#13749])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#13749])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#13749])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#13749])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#13749])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][170] ([i915#9878])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-rkl: [PASS][171] -> [INCOMPLETE][172] ([i915#9878])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#1839])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#9337])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#658])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9934]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3637] / [i915#9934]) +7 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][178] -> [FAIL][179] ([i915#13027]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][180] -> [FAIL][181] ([i915#13027]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#9934]) +7 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3637] / [i915#9934]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9934]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637] / [i915#9934]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#15643]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#15643]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/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][188] ([i915#15643]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#15643]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#15643]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#15643] / [i915#5190])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#15991] / [i915#1825]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#15989]) +9 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#15989]) +17 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#15989]) +16 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#15989]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/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][197] ([i915#15990]) +16 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#15989]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][199] +37 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][200] +97 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#15990]) +8 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-shrfb-scaledprimary:
- shard-dg2: [PASS][202] -> [SKIP][203] ([i915#15989]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-shrfb-scaledprimary.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#15990] / [i915#8708]) +13 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#15104] / [i915#15990])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#15102] / [i915#3458]) +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#15991] / [i915#5354]) +9 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1825]) +36 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#15990] / [i915#8708]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#15990] / [i915#8708]) +8 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#5439])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#15102]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#15102]) +7 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/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][214] ([i915#15102]) +38 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/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][215] ([i915#15989]) +13 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-glk10: NOTRUN -> [SKIP][217] +84 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render:
- shard-glk11: NOTRUN -> [SKIP][218] +79 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#5439])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#5439])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#15990]) +20 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [PASS][223] -> [SKIP][224] ([i915#15989]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-glk: [PASS][225] -> [SKIP][226] +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15991]) +17 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#15102]) +20 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15104] / [i915#15990]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#15102] / [i915#3023]) +20 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3458]) +8 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#15102]) +41 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#15991]) +19 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-rte:
- shard-tglu-1: NOTRUN -> [SKIP][234] +50 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][235] +76 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#16012]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#16012] / [i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#16012]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/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][239] ([i915#16012]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-17/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#16012]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#16011]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#16011]) +5 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#16011]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#16011] / [i915#3555] / [i915#8228])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-15/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#16011] / [i915#3555] / [i915#8228])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][246] -> [SKIP][247] ([i915#16011] / [i915#3555] / [i915#8228])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#16011]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15459])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#15459])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#15458])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15638] / [i915#15722])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15709]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#15709]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#15608]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15709])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#15709]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][258] ([i915#13026]) +1 other test incomplete
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][259] ([i915#12178])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][260] ([i915#7862]) +1 other test fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][261] ([i915#10647] / [i915#12169])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][262] ([i915#10647]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#3555])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#13958])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#13958])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#13958])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#14259])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/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][269] ([i915#15329]) +9 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/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-c:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15329]) +4 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#15329]) +7 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#15329]) +9 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#5354])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#12343])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#9812])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#5354])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15948])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15751])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#3361])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][280] ([i915#15752])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#8430])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#8430])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#8430])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#8430])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8430])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][286] -> [SKIP][287] ([i915#14544] / [i915#15073])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15073])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][289] -> [DMESG-WARN][290] ([i915#4423])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg1-15/igt@kms_pm_rpm@i2c.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][291] -> [SKIP][292] ([i915#15073])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-rkl: [PASS][293] -> [SKIP][294] ([i915#15073]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [INCOMPLETE][295] ([i915#10553])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#11520]) +5 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-4/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][297] ([i915#11520]) +11 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/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][298] ([i915#9808])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#12316]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][300] ([i915#11520]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][301] ([i915#11520])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][302] ([i915#11520]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#11520]) +4 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#11520]) +9 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#11520]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][306] ([i915#11520]) +11 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#9683])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#9683])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#9732]) +19 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-5/igt@kms_psr@fbc-pr-cursor-blt.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9688]) +11 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +12 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-10/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9732]) +9 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#14544] / [i915#9732])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +10 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +26 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk10: NOTRUN -> [INCOMPLETE][316] ([i915#15492])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#5289])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#5289])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#12755] / [i915#15867])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12755] / [i915#15867])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#8623])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#8623])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#8623])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#8623])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#8623])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][326] ([i915#12276]) +3 other tests incomplete
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#15243] / [i915#3555])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#9906])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#9906])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_vrr@negative-basic.html
- shard-mtlp: [PASS][330] -> [FAIL][331] ([i915#15420]) +1 other test fail
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-7/igt@kms_vrr@negative-basic.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#9906])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#9906])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#9906])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9906])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#8808] / [i915#9906])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#2436])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#2433])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#2433])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][340] -> [FAIL][341] ([i915#15997]) +1 other test fail
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [PASS][342] -> [FAIL][343] ([i915#15997]) +1 other test fail
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [PASS][344] -> [FAIL][345] ([i915#15997]) +1 other test fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#8516])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#9917])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#9917]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#9917])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-19/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][350] ([i915#12910]) +9 other tests fail
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
- shard-mtlp: NOTRUN -> [FAIL][351] ([i915#12910]) +9 other tests fail
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][352] ([i915#13356]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][354] ([i915#9561]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-7/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][356] ([i915#13356]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][358] ([i915#12964]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][360] ([i915#4817]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
- shard-glk: [INCOMPLETE][362] ([i915#4817]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk8/igt@i915_suspend@fence-restore-untiled.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk6/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][364] ([i915#15726]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-1/igt@kms_3d@basic.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-8/igt@kms_3d@basic.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][366] ([i915#5956]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][368] ([i915#13566]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-9/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][370] ([i915#10056]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][372] ([i915#15989]) -> [PASS][373] +8 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/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][374] ([i915#15989]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-render:
- shard-glk: [SKIP][376] -> [PASS][377] +3 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-render.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-rkl: [INCOMPLETE][378] ([i915#14412]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][380] ([i915#15073]) -> [PASS][381] +3 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][382] ([i915#15073]) -> [PASS][383] +2 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][384] ([i915#15106]) -> [PASS][385] +2 other tests pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][386] ([i915#4349]) -> [PASS][387] +4 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@enable-race:
- shard-glk: [DMESG-WARN][388] ([i915#118]) -> [PASS][389] +1 other test pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-glk9/igt@perf_pmu@enable-race.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-glk3/igt@perf_pmu@enable-race.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][390] ([i915#11078] / [i915#14544]) -> [SKIP][391] ([i915#11078])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][392] ([i915#14544] / [i915#9323]) -> [SKIP][393] ([i915#9323])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: [SKIP][394] ([i915#280]) -> [SKIP][395] ([i915#14544] / [i915#280])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@gem_ctx_sseu@engines.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][396] ([i915#14544] / [i915#3281]) -> [SKIP][397] ([i915#3281]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][398] ([i915#4613]) -> [SKIP][399] ([i915#14544] / [i915#4613]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#4613]) -> [SKIP][401] ([i915#4613])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][402] ([i915#13717] / [i915#14544]) -> [SKIP][403] ([i915#13717])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][404] ([i915#8411]) -> [SKIP][405] ([i915#14544] / [i915#8411])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][406] ([i915#3282]) -> [SKIP][407] ([i915#14544] / [i915#3282]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@reads.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#3282]) -> [SKIP][409] ([i915#3282])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][410] ([i915#14544] / [i915#2527]) -> [SKIP][411] ([i915#2527])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][412] ([i915#14498]) -> [SKIP][413] ([i915#14498] / [i915#14544])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-idle.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][414] ([i915#5286]) -> [SKIP][415] ([i915#14544] / [i915#5286]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][416] ([i915#3638]) -> [SKIP][417] ([i915#14544] / [i915#3638])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-rkl: [SKIP][418] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][419] ([i915#14098] / [i915#6095]) +2 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][420] ([i915#6095]) -> [SKIP][421] ([i915#14544] / [i915#6095]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][422] ([i915#14098] / [i915#6095]) -> [SKIP][423] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][424] ([i915#11151] / [i915#7828]) -> [SKIP][425] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-4/igt@kms_chamelium_edid@dp-mode-timings.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][426] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][427] ([i915#11151] / [i915#7828]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-7/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#15330]) -> [SKIP][429] ([i915#15330])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][430] ([i915#15865]) -> [SKIP][431] ([i915#14544] / [i915#15865])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-3/igt@kms_content_protection@legacy.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][432] ([i915#3555]) -> [SKIP][433] ([i915#14544] / [i915#3555])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][434] ([i915#14544]) -> [SKIP][435] +15 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][436] ([i915#13707]) -> [SKIP][437] ([i915#13707] / [i915#14544])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][438] ([i915#9934]) -> [SKIP][439] ([i915#14544] / [i915#9934])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-1/igt@kms_flip@2x-blocking-wf_vblank.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#9934]) -> [SKIP][441] ([i915#9934])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][442] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][443] ([i915#15102] / [i915#3458]) +2 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#1825]) -> [SKIP][445] ([i915#1825]) +7 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#15102]) -> [SKIP][447] ([i915#15102]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: [SKIP][448] ([i915#15102]) -> [SKIP][449] ([i915#14544] / [i915#15102]) +6 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: [SKIP][450] -> [SKIP][451] ([i915#4423])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-pwrite.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][452] ([i915#15102] / [i915#3458]) -> [SKIP][453] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][454] ([i915#1825]) -> [SKIP][455] ([i915#14544] / [i915#1825]) +7 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: [SKIP][456] ([i915#15102] / [i915#3023]) -> [SKIP][457] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][459] ([i915#15102] / [i915#3023]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +11 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][462] ([i915#16011]) -> [SKIP][463] ([i915#14544])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#15458]) -> [SKIP][465] ([i915#15458])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-rkl: [SKIP][466] ([i915#15709]) -> [SKIP][467] ([i915#14544] / [i915#15709])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-modifier.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][468] ([i915#5354]) -> [SKIP][469] ([i915#14544] / [i915#5354])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][470] ([i915#15739]) -> [SKIP][471] ([i915#15128])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][472] ([i915#3828]) -> [SKIP][473] ([i915#14544] / [i915#9340])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [ABORT][474] ([i915#15132]) -> [INCOMPLETE][475] ([i915#14419])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-rkl: [SKIP][476] ([i915#11520] / [i915#14544]) -> [SKIP][477] ([i915#11520]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][478] ([i915#11520]) -> [SKIP][479] ([i915#11520] / [i915#14544]) +2 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-rkl: [SKIP][480] ([i915#1072] / [i915#9732]) -> [SKIP][481] ([i915#1072] / [i915#14544] / [i915#9732])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-7/igt@kms_psr@psr-primary-mmap-cpu.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#15949]) -> [SKIP][483] ([i915#15949])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][485] ([i915#15243] / [i915#3555])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@kms_vrr@flip-basic.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-4/igt@kms_vrr@flip-basic.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][487] ([i915#3291] / [i915#3708])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-6/igt@prime_vgem@basic-write.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][488] ([i915#3708]) -> [SKIP][489] ([i915#14544] / [i915#3708])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15142/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[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#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[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#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[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#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[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#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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[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#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#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#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[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#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15142
CI-20190529: 20190529
CI_DRM_18467: f8ee23694aa6be213355905a78f79bb1b0861565 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15142: d3c95c0919e06ba6e8f86e27ca5a6eb453b89fcf @ 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_15142/index.html
[-- Attachment #2: Type: text/html, Size: 161354 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-12 5:03 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 3:41 [PATCH i-g-t 0/2] Group all force_hdcp14 tests together Suraj Kandpal
2026-05-11 3:41 ` [PATCH i-g-t 1/2] tests/kms_content_protection: " Suraj Kandpal
2026-05-12 4:43 ` Reddy Guddati, Santhosh
2026-05-11 3:41 ` [PATCH i-g-t 2/2] tests/kms_content_protection: Group all MST " Suraj Kandpal
2026-05-12 4:45 ` Reddy Guddati, Santhosh
2026-05-11 21:23 ` ✓ i915.CI.BAT: success for Group all " Patchwork
2026-05-11 21:55 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-11 23:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-12 5:02 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox