* [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
@ 2026-08-03 8:03 Chaitanya Kumar Borah
2026-08-03 19:33 ` ✗ Xe.CI.FULL: failure for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Chaitanya Kumar Borah @ 2026-08-03 8:03 UTC (permalink / raw)
To: igt-dev; +Cc: Chaitanya Kumar Borah, Swati Sharma, Harry Wentland, Alex Hung
Following the pattern in kms_color_pipeline, set
DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
local variable, then propagate it to display->has_plane_color_pipeline
after the final igt_display_require() (which reinitializes the display
state). This avoids calling drmSetClientCap() twice.
Cc: Swati Sharma <swati2.sharma@intel.com>
Cc: Harry Wentland <harry.wentland@amd.com>
Cc: Alex Hung <alex.hung@amd.com>
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
tests/kms_colorop.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index 16db0b8ad..d573d2ceb 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
igt_display_t display;
int i, j, ret;
+ int has_plane_color_pipeline = 0;
igt_fixture() {
display.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
igt_require_f(!ret, "error setting DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
- igt_display_require(&display, display.drm_fd);
if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
- display.has_plane_color_pipeline = 1;
+ has_plane_color_pipeline = 1;
+
+ igt_display_require(&display, display.drm_fd);
kmstest_set_vt_graphics_mode();
igt_display_require(&display, display.drm_fd);
- if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
- display.has_plane_color_pipeline = 1;
+ display.has_plane_color_pipeline = has_plane_color_pipeline;
igt_require(display.is_atomic);
}
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
@ 2026-08-03 19:33 ` Patchwork
2026-08-04 13:42 ` ✓ Xe.CI.BAT: success " Patchwork
` (5 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-08-03 19:33 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1541 bytes --]
== Series Details ==
Series: tests/kms_colorop: Use local variable for color pipeline cap
URL : https://patchwork.freedesktop.org/series/171493/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9036_FULL -> XEIGTPW_15623_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15623_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15623_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 -> 0)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_15623_FULL prevented too many machines from booting.
Missing (2): shard-bmg shard-lnl
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9036 -> IGTPW_15623
* Linux: xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a -> xe-5521-f8d080b47819f01011c1b9c3c875badbb67ec955
IGTPW_15623: 135672cceed01c6721a58b2c64092ce9cfafb0b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9036: 9036
xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a: f9ef9f302ee01854066ec6da30550da6ea6cb03a
xe-5521-f8d080b47819f01011c1b9c3c875badbb67ec955: f8d080b47819f01011c1b9c3c875badbb67ec955
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15623/index.html
[-- Attachment #2: Type: text/html, Size: 2124 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
2026-08-03 19:33 ` ✗ Xe.CI.FULL: failure for " Patchwork
@ 2026-08-04 13:42 ` Patchwork
2026-08-04 14:00 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-08-04 13:42 UTC (permalink / raw)
To: Chaitanya Kumar Borah; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
== Series Details ==
Series: tests/kms_colorop: Use local variable for color pipeline cap
URL : https://patchwork.freedesktop.org/series/171493/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9036_BAT -> XEIGTPW_15623_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9036 -> IGTPW_15623
* Linux: xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a -> xe-5538-8c5c3b3e801512eca826589c6bcded8421486490
IGTPW_15623: 135672cceed01c6721a58b2c64092ce9cfafb0b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9036: 9036
xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a: f9ef9f302ee01854066ec6da30550da6ea6cb03a
xe-5538-8c5c3b3e801512eca826589c6bcded8421486490: 8c5c3b3e801512eca826589c6bcded8421486490
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15623/index.html
[-- Attachment #2: Type: text/html, Size: 1644 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
2026-08-03 19:33 ` ✗ Xe.CI.FULL: failure for " Patchwork
2026-08-04 13:42 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-08-04 14:00 ` Patchwork
2026-08-04 18:18 ` ✓ i915.CI.Full: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-08-04 14:00 UTC (permalink / raw)
To: Chaitanya Kumar Borah; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1686 bytes --]
== Series Details ==
Series: tests/kms_colorop: Use local variable for color pipeline cap
URL : https://patchwork.freedesktop.org/series/171493/
State : success
== Summary ==
CI Bug Log - changes from IGT_9036 -> IGTPW_15623
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15623 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#15673]) +78 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9036/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9036 -> IGTPW_15623
* Linux: CI_DRM_18932 -> CI_DRM_18938
CI-20190529: 20190529
CI_DRM_18932: f9ef9f302ee01854066ec6da30550da6ea6cb03a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18938: f8d080b47819f01011c1b9c3c875badbb67ec955 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15623: 135672cceed01c6721a58b2c64092ce9cfafb0b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9036: 9036
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/index.html
[-- Attachment #2: Type: text/html, Size: 2286 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
` (2 preceding siblings ...)
2026-08-04 14:00 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-08-04 18:18 ` Patchwork
2026-08-04 20:37 ` ✗ Xe.CI.FULL: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-08-04 18:18 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 178988 bytes --]
== Series Details ==
Series: tests/kms_colorop: Use local variable for color pipeline cap
URL : https://patchwork.freedesktop.org/series/171493/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18938_full -> IGTPW_15623_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_18938_full and IGTPW_15623_full:
### New IGT tests (4) ###
* igt@kms_color@degamma@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.03] s
* igt@kms_color@degamma@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.03] s
* igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.13] s
* igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.01] s
Known issues
------------
Here are the changes found in IGTPW_15623_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@fbdev@eof:
- shard-dg2: [PASS][3] -> [SKIP][4] ([i915#2582]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-3/igt@fbdev@eof.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@fbdev@eof.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#7697]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][6] -> [INCOMPLETE][7] ([i915#13356] / [i915#16348])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][13] ([i915#13356] / [i915#16466]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-snb6/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][18] -> [DMESG-WARN][19] ([i915#4391] / [i915#4423])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-12/igt@gem_eio@hibernate.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][20] ([i915#13390])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#13390])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk6/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-3/igt@gem_exec_balancer@hog.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@gem_exec_balancer@hog.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][27] -> [FAIL][28] ([i915#15816])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-tglu-4/igt@gem_exec_big@single.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-8/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-active.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#7276])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][40] -> [INCOMPLETE][41] ([i915#13356]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [PASS][42] -> [INCOMPLETE][43] ([i915#13196] / [i915#13356]) +1 other test incomplete
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk2/igt@gem_exec_suspend@basic-s3.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk5/igt@gem_exec_suspend@basic-s3.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk5/igt@gem_lmem_swapping@heavy-multi.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-6/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap@basic:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@gem_mmap_gtt@zero-extend.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][55] ([i915#2658])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#13717] / [i915#14544])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#13717])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][60] -> [INCOMPLETE][61] ([i915#13809] / [i915#16226])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][63] ([i915#3323])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [PASS][67] -> [INCOMPLETE][68] ([i915#13356])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#14544] / [i915#2527])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#14118])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#14118])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#14118])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@fault-injection:
- shard-dg1: NOTRUN -> [ABORT][77] ([i915#11814] / [i915#15481]) +1 other test abort
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][78] ([i915#15481])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][79] ([i915#13029] / [i915#14545])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][80] -> [DMESG-WARN][81] ([i915#13029] / [i915#14545])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-14/igt@i915_module_load@reload-no-display.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#8399])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][83] -> [WARN][84] ([i915#13790] / [i915#2681]) +1 other test warn
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][85] -> [INCOMPLETE][86] ([i915#13356])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk3/igt@i915_pm_rpm@system-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk2/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#13356] / [i915#15172])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#16109])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@live:
- shard-dg1: NOTRUN -> [ABORT][89] ([i915#16436])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: NOTRUN -> [ABORT][90] ([i915#15433])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [PASS][91] -> [DMESG-WARN][92] ([i915#14545])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@i915_suspend@basic-s3-without-i915.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][93] ([i915#16182] / [i915#4817])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][94] -> [INCOMPLETE][95] ([i915#16182] / [i915#4817])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk3/igt@i915_suspend@sysfs-reader.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk8/igt@i915_suspend@sysfs-reader.html
- shard-rkl: [PASS][96] -> [ABORT][97] ([i915#15140])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@i915_suspend@sysfs-reader.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#7707])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4212])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#16707]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#12761]) +1 other test incomplete
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-dg1: [PASS][104] -> [DMESG-WARN][105] ([i915#4423]) +1 other test dmesg-warn
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-19/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][106] ([i915#1769])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][107] -> [FAIL][108] ([i915#5956]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-glk11: NOTRUN -> [SKIP][111] +92 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#5286]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#15733] / [i915#5138]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-mtlp-6/igt@kms_big_fb@linear-16bpp-rotate-0.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#3828])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3828]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][119] -> [SKIP][120] ([i915#16707]) +44 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][121]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-dg2: NOTRUN -> [SKIP][122]
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-16/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6187])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14544]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_busy@basic:
- shard-dg2: [PASS][127] -> [SKIP][128] ([i915#11190] / [i915#16707]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_busy@basic.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_busy@basic.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +83 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +8 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6095]) +24 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +24 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][135] +501 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +64 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#12805])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#12805])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][139] ([i915#15582]) +1 other test incomplete
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: NOTRUN -> [INCOMPLETE][140] ([i915#14694] / [i915#15582]) +1 other test incomplete
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][142] ([i915#15582]) +1 other test incomplete
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +54 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#6095]) +40 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/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-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#12313])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#6095]) +205 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#3742])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3742])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#13781]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#13781]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3742])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#13783]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#16471])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#16471]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#16471])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#16471]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#16471])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#16464] / [i915#16471])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#9979])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_color@gamma:
- shard-dg2: [PASS][168] -> [SKIP][169] ([i915#12655]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@kms_color@gamma.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_color@gamma.html
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-dg2: [PASS][170] -> [SKIP][171] ([i915#15529]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#15865])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#15865]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_content_protection@srm.html
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#15865]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3555]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][178] ([i915#13566])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#13049])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8814])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][182] ([i915#12358] / [i915#14152] / [i915#7882])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][183] ([i915#12358] / [i915#14152])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9067])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9067])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#9067])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9067])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9067])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#16119] / [i915#4213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#4103]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#9723])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#13749])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#13748])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#13707])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#16361]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#16361]) +4 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#16361])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#16361])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#16361])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#16680])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#16680])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#16680])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#16680])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#16084])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#16081])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#16599])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#16599])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#16599])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#16599])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#16599])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@hdr:
- shard-rkl: [PASS][214] -> [SKIP][215] ([i915#16600])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_feature_discovery@hdr.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_feature_discovery@hdr.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#16600])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_feature_discovery@hdr.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#658]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3637] / [i915#9934]) +9 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3637] / [i915#9934]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#9934]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637] / [i915#9934]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#9934]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_flip@2x-plain-flip-ts-check.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#9934]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@blocking-absolute-wf_vblank:
- shard-dg2: [PASS][224] -> [SKIP][225] ([i915#5354]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_flip@blocking-absolute-wf_vblank.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_flip@blocking-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-dg2: [PASS][226] -> [SKIP][227] ([i915#16724])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [PASS][228] -> [FAIL][229] ([i915#13027]) +1 other test fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check:
- shard-snb: [PASS][230] -> [FAIL][231] ([i915#14600]) +1 other test fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-snb7/igt@kms_flip@plain-flip-ts-check.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-snb7/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15643]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15643]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: [PASS][234] -> [SKIP][235] ([i915#3555] / [i915#8813])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15643])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15643]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8813])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15643] / [i915#5190])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2: [PASS][242] -> [SKIP][243] ([i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_flip_tiling@flip-change-tiling.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#16708]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [PASS][246] -> [SKIP][247] ([i915#16708] / [i915#5354]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15989]) +9 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15991]) +6 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][250] +76 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15990]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15989]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-rkl: [PASS][253] -> [SKIP][254] ([i915#15989]) +6 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15989]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#16708]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#10055])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#15102]) +32 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15991] / [i915#5354]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#15991] / [i915#1825]) +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][262] +40 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#5439])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15102]) +21 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#14544] / [i915#15102]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#15990]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15991]) +7 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][268] +21 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][269] +66 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#15989]) +11 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt:
- shard-glk: [PASS][271] -> [SKIP][272] +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15989]) +15 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#9766])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#15102]) +19 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15104] / [i915#15990])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#15104] / [i915#15990])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15104] / [i915#15990])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#16708] / [i915#5354]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#15102]) +9 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#15102] / [i915#3023]) +17 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#10433] / [i915#15102])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#1825]) +6 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#15990] / [i915#8708]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#15102]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-render.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15989]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15990]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#12713])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_invalid_mode@int-max-clock:
- shard-dg2: [PASS][290] -> [SKIP][291] ([i915#16746] / [i915#3555])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_invalid_mode@int-max-clock.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15458])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15458])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#13688])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#13688])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#13688])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#13688])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#13688])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15458])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#15815])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#6301])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-xtiled:
- shard-glk: NOTRUN -> [DMESG-WARN][302] ([i915#118])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk8/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#14712])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-glk: [PASS][304] -> [DMESG-WARN][305] ([i915#118])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][306] +126 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#8825])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#15709]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#15709]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#15709]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#15709])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-snb: NOTRUN -> [SKIP][312] +79 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-snb7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15709]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15709]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#16386]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#13026]) +1 other test incomplete
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: NOTRUN -> [INCOMPLETE][317] ([i915#14412]) +1 other test incomplete
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg2: [PASS][318] -> [SKIP][319] ([i915#8825]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_plane@plane-panning-top-left.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][320] ([i915#12178])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][321] ([i915#7862]) +1 other test fail
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#14544] / [i915#3555]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#13958])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#13958])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#13958])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#14259])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#14259])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#14259])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#14259])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#15329]) +13 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-dg2: [PASS][331] -> [SKIP][332] ([i915#15329] / [i915#9423])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#15329]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#15329]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#15329] / [i915#3555])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-dg2: [PASS][336] -> [SKIP][337] ([i915#15329]) +19 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg2: [PASS][338] -> [SKIP][339] ([i915#15329] / [i915#6953] / [i915#9423]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg2: [PASS][340] -> [SKIP][341] ([i915#15329] / [i915#3555] / [i915#6953] / [i915#9423])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#12343] / [i915#5354])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#12343])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9685])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#3828])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#15073]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-9/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][347] -> [SKIP][348] ([i915#14544] / [i915#15073])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [PASS][349] -> [SKIP][350] ([i915#15073]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][351] -> [SKIP][352] ([i915#15073])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][353] -> [INCOMPLETE][354] ([i915#14419])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#6524]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][356] ([i915#11520])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#11520]) +5 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#11520]) +4 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][359] ([i915#11520]) +11 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#11520]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520] / [i915#14544])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][362] ([i915#11520])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-snb1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#11520]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#12316]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9808])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][366] ([i915#11520]) +3 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#11520]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#9732]) +9 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-4/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9688]) +4 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@pr-no-drrs:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +14 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#9732]) +5 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@kms_psr@psr2-sprite-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#15949])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk11: NOTRUN -> [INCOMPLETE][375] ([i915#15500] / [i915#16184])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#5289])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#3555]) +5 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#3555]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#3555])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-7/igt@kms_setmode@clone-exclusive-crtc.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#3555])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#3555] / [i915#8809])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][383] ([i915#10959])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#8623])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][385] ([i915#12276])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#15243] / [i915#3555])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#11920])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#11920])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-12/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#11920])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#11920])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#9906])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#14544] / [i915#2436])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][394] -> [FAIL][395] ([i915#4349]) +10 other tests fail
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][396] ([i915#15778])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-rkl: NOTRUN -> [FAIL][397] ([i915#4349]) +1 other test fail
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@rc6-suspend:
- shard-tglu: [PASS][398] -> [ABORT][399] ([i915#15840])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-tglu-5/igt@perf_pmu@rc6-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#8516])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: NOTRUN -> [FAIL][401] ([i915#4349]) +3 other tests fail
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
- shard-mtlp: [PASS][402] -> [FAIL][403] ([i915#4349]) +4 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vcs1.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#14121]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#14121]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#14121]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_mmap_kms@buffer-sharing:
- shard-dg2: [PASS][407] -> [SKIP][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@prime_mmap_kms@buffer-sharing.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@prime_mmap_kms@buffer-sharing.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#3708])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-19/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [SKIP][410] ([i915#16066]) +9 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-3/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#9917]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [SKIP][412] ([i915#16066]) +8 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@fbdev@info:
- shard-dg2: [SKIP][413] ([i915#1849] / [i915#2582]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@fbdev@info.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@fbdev@info.html
* igt@fbdev@read:
- shard-dg2: [SKIP][415] ([i915#2582]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@fbdev@read.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@fbdev@read.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][417] ([i915#13356]) -> [PASS][418] +2 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][419] ([i915#15871]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-mtlp-7/igt@gem_exec_big@single.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-6/igt@gem_exec_big@single.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][421] ([i915#14545]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@i915_module_load@resize-bar.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][423] ([i915#12964]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg1: [DMESG-WARN][425] ([i915#4423]) -> [PASS][426] +2 other tests pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-19/igt@i915_pm_rpm@gem-execbuf-stress.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][427] ([i915#4817]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-rkl: [FAIL][429] ([i915#15662]) -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [FAIL][431] ([i915#15662]) -> [PASS][432] +1 other test pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][433] ([i915#5956]) -> [PASS][434] +1 other test pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4:
- shard-dg2: [SKIP][435] ([i915#15529]) -> [PASS][436] +1 other test pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_color_pipeline@plane-lut1d-ctm3x4.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][437] ([i915#13566]) -> [PASS][438] +4 other tests pass
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [FAIL][439] ([i915#13566]) -> [PASS][440] +3 other tests pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-tglu-2/igt@kms_cursor_crc@cursor-random-64x21.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-tglu-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-dg2: [SKIP][441] ([i915#11190] / [i915#16707]) -> [PASS][442]
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_fb_coherency@memset-crc:
- shard-dg2: [SKIP][443] -> [PASS][444]
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_fb_coherency@memset-crc.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_fb_coherency@memset-crc.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2: [SKIP][445] ([i915#1849]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_fbcon_fbt@fbc.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-snb: [FAIL][447] ([i915#13027]) -> [PASS][448] +1 other test pass
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@plain-flip-ts-check:
- shard-dg1: [FAIL][449] ([i915#14600]) -> [PASS][450] +1 other test pass
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-19/igt@kms_flip@plain-flip-ts-check.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: [SKIP][451] ([i915#5354]) -> [PASS][452] +4 other tests pass
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [SKIP][453] ([i915#3555] / [i915#8813]) -> [PASS][454] +3 other tests pass
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][455] ([i915#10056]) -> [PASS][456]
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [SKIP][457] ([i915#16708] / [i915#5354]) -> [PASS][458] +4 other tests pass
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][459] ([i915#15989]) -> [PASS][460] +10 other tests pass
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff:
- shard-glk: [SKIP][461] -> [PASS][462] +7 other tests pass
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_invalid_mode@bad-hsync-start:
- shard-dg2: [SKIP][463] ([i915#16746] / [i915#3555]) -> [PASS][464] +1 other test pass
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_invalid_mode@bad-hsync-start.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_invalid_mode@bad-hsync-start.html
* igt@kms_plane@pixel-format-linear-modifier:
- shard-dg2: [SKIP][465] ([i915#8825]) -> [PASS][466] +1 other test pass
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane@pixel-format-linear-modifier.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_plane@pixel-format-linear-modifier.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- shard-dg2: [SKIP][467] ([i915#15329]) -> [PASS][468] +15 other tests pass
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [SKIP][469] ([i915#15329] / [i915#3555] / [i915#9423]) -> [PASS][470]
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: [SKIP][471] ([i915#15329] / [i915#9423]) -> [PASS][472] +1 other test pass
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-dg2: [SKIP][473] ([i915#15329] / [i915#3555] / [i915#6953] / [i915#9423]) -> [PASS][474]
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][475] ([i915#15073]) -> [PASS][476]
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][477] ([i915#15073]) -> [PASS][478]
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][479] ([i915#15073]) -> [PASS][480] +3 other tests pass
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2: [SKIP][481] ([i915#16707]) -> [PASS][482] +42 other tests pass
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_vblank@ts-continuation-dpms-suspend.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][483] ([i915#12276]) -> [PASS][484]
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk8/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][485] ([i915#13356] / [i915#16236]) -> [PASS][486]
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-glk3/igt@perf_pmu@rc6-suspend.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-glk4/igt@perf_pmu@rc6-suspend.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#3281]) -> [SKIP][488] ([i915#3281]) +3 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][490] ([i915#3555] / [i915#9323])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][491] ([i915#3555] / [i915#9323]) -> [SKIP][492] ([i915#14544] / [i915#3555] / [i915#9323])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-rkl: [SKIP][493] ([i915#3281]) -> [SKIP][494] ([i915#14544] / [i915#3281]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@gem_exec_reloc@basic-write-cpu.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#4613]) -> [SKIP][496] ([i915#4613])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][497] ([i915#4613]) -> [SKIP][498] ([i915#14544] / [i915#4613])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#3282]) -> [SKIP][500] ([i915#3282]) +1 other test skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][501] ([i915#3282]) -> [SKIP][502] ([i915#14544] / [i915#3282]) +3 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][503] ([i915#8411]) -> [SKIP][504] ([i915#14544] / [i915#8411])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][505] ([i915#3297] / [i915#3323]) -> [SKIP][506] ([i915#14544] / [i915#3297] / [i915#3323])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][507] ([i915#3297]) -> [SKIP][508] ([i915#14544] / [i915#3297])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#2527]) -> [SKIP][510] ([i915#2527]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@gen9_exec_parse@bb-secure.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#8399]) -> [SKIP][512] ([i915#8399])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][513] ([i915#7984]) -> [SKIP][514] ([i915#14544] / [i915#7984])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-1/igt@i915_power@sanity.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@i915_power@sanity.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: [SKIP][515] ([i915#1769] / [i915#3555]) -> [SKIP][516] ([i915#16707])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][517] ([i915#16707]) -> [SKIP][518] +2 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#5286]) -> [SKIP][520] ([i915#5286])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][521] ([i915#5286]) -> [SKIP][522] ([i915#14544] / [i915#5286]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#3638]) -> [SKIP][524] ([i915#3638])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][525] ([i915#3638]) -> [SKIP][526] ([i915#14544] / [i915#3638])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: [SKIP][527] ([i915#16707]) -> [SKIP][528] ([i915#3828])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][529] -> [SKIP][530] ([i915#16707]) +3 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][531] ([i915#4538] / [i915#5190]) -> [SKIP][532] ([i915#16707] / [i915#5190]) +6 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][533] ([i915#16707] / [i915#5190]) -> [SKIP][534] ([i915#4538] / [i915#5190]) +9 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][535] ([i915#5190]) -> [SKIP][536] ([i915#16707] / [i915#5190]) +2 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg1: [SKIP][537] ([i915#4538]) -> [SKIP][538] ([i915#4423] / [i915#4538])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: [SKIP][539] ([i915#16707]) -> [SKIP][540] ([i915#10307] / [i915#6095]) +9 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][541] ([i915#12313]) -> [SKIP][542] ([i915#16707]) +2 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-rkl: [SKIP][543] ([i915#12313]) -> [SKIP][544] ([i915#12313] / [i915#14544])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][545] ([i915#10307] / [i915#6095]) -> [SKIP][546] ([i915#16707]) +6 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][547] ([i915#14544] / [i915#6095]) -> [SKIP][548] ([i915#6095]) +1 other test skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][549] ([i915#12805] / [i915#14544]) -> [SKIP][550] ([i915#12805])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][551] ([i915#6095]) -> [SKIP][552] ([i915#14544] / [i915#6095]) +4 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][553] ([i915#14098] / [i915#6095]) -> [SKIP][554] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][555] ([i915#16707]) -> [SKIP][556] ([i915#12805])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][557] ([i915#6095]) -> [SKIP][558] ([i915#16707]) +1 other test skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2: [SKIP][559] ([i915#16707]) -> [SKIP][560] ([i915#6095]) +1 other test skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][561] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][562] ([i915#14098] / [i915#6095]) +5 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-rkl: [SKIP][563] ([i915#16471]) -> [SKIP][564] ([i915#14544] / [i915#16471])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][565] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][566] ([i915#11151] / [i915#7828]) +3 other tests skip
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-rkl: [SKIP][567] ([i915#11151] / [i915#7828]) -> [SKIP][568] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][569] ([i915#15865]) -> [SKIP][570] ([i915#14544] / [i915#15865]) +2 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [SKIP][571] ([i915#16707]) -> [SKIP][572] ([i915#15865])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_content_protection@content-type-change.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][573] ([i915#14544] / [i915#15330]) -> [SKIP][574] ([i915#15330])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: [SKIP][575] ([i915#15865]) -> [SKIP][576] ([i915#16707]) +3 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-3/igt@kms_content_protection@mei-interface.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][577] ([i915#9433]) -> [SKIP][578] ([i915#15865])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][579] ([i915#16707]) -> [SKIP][580] ([i915#13049])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][581] ([i915#3555]) -> [SKIP][582] ([i915#16707]) +3 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: [SKIP][583] ([i915#11190] / [i915#16707]) -> [SKIP][584] ([i915#4103])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][585] ([i915#4103]) -> [SKIP][586] ([i915#14544] / [i915#4103])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: [SKIP][587] ([i915#4103]) -> [SKIP][588] ([i915#11190] / [i915#16707])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][589] -> [SKIP][590] ([i915#14544]) +40 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][591] ([i915#13046] / [i915#5354]) -> [SKIP][592] ([i915#16707]) +2 other tests skip
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2: [SKIP][593] ([i915#16707]) -> [SKIP][594] ([i915#13046] / [i915#5354]) +2 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][595] ([i915#16707]) -> [SKIP][596] ([i915#4103]) +1 other test skip
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][597] ([i915#9833]) -> [SKIP][598] ([i915#16707]) +1 other test skip
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: [SKIP][599] ([i915#9723]) -> [SKIP][600] ([i915#14544] / [i915#9723])
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][601] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][602] ([i915#3555] / [i915#3804])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][603] ([i915#14544] / [i915#3804]) -> [SKIP][604] ([i915#3804])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: [SKIP][605] ([i915#16707]) -> [SKIP][606] ([i915#13749])
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-mst.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2: [SKIP][607] ([i915#16707]) -> [SKIP][608] ([i915#13748])
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_dp_link_training@uhbr-sst.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-rkl: [SKIP][609] ([i915#14544] / [i915#16361]) -> [SKIP][610] ([i915#16361]) +1 other test skip
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-dg2: [SKIP][611] ([i915#16361]) -> [SKIP][612] ([i915#16707]) +3 other tests skip
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][613] ([i915#16707]) -> [SKIP][614] ([i915#16361]) +1 other test skip
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-rkl: [SKIP][615] ([i915#16361]) -> [SKIP][616] ([i915#14544] / [i915#16361]) +2 other tests skip
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_feature_discovery@vrr:
- shard-rkl: [SKIP][617] ([i915#16600]) -> [SKIP][618] ([i915#14544] / [i915#16600])
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-7/igt@kms_feature_discovery@vrr.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][619] ([i915#9934]) -> [SKIP][620] ([i915#14544] / [i915#9934])
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-rkl: [SKIP][621] ([i915#14544] / [i915#9934]) -> [SKIP][622] ([i915#9934]) +1 other test skip
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][623] ([i915#15643]) -> [SKIP][624] ([i915#14544] / [i915#15643])
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][625] ([i915#14544] / [i915#15643]) -> [SKIP][626] ([i915#15643]) +1 other test skip
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][627] ([i915#15990] / [i915#8708]) -> [SKIP][628] ([i915#16708] / [i915#5354]) +12 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][629] ([i915#15991] / [i915#5354]) -> [SKIP][630] ([i915#16708] / [i915#5354]) +23 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][631] ([i915#14544] / [i915#1825]) -> [SKIP][632] ([i915#1825]) +1 other test skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-dg2: [SKIP][633] ([i915#16708]) -> [SKIP][634] ([i915#15989]) +11 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][635] ([i915#14544]) -> [SKIP][636] +39 other tests skip
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: [SKIP][637] ([i915#14544] / [i915#5439]) -> [SKIP][638] ([i915#5439])
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][639] ([i915#14544] / [i915#15102]) -> [SKIP][640] ([i915#15102]) +5 other tests skip
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][641] ([i915#16708]) -> [SKIP][642] ([i915#15102]) +17 other tests skip
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][643] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][644] ([i915#15102] / [i915#3023]) +5 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][645] ([i915#16708] / [i915#5354]) -> [SKIP][646] ([i915#15990] / [i915#8708]) +5 other tests skip
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][647] ([i915#15102]) -> [SKIP][648] ([i915#15102] / [i915#4423])
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: [SKIP][649] ([i915#16708] / [i915#5354]) -> [SKIP][650] ([i915#15991] / [i915#5354]) +17 other tests skip
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][651] ([i915#16708] / [i915#5354]) -> [SKIP][652] ([i915#10433] / [i915#15102]) +1 other test skip
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: [SKIP][653] -> [SKIP][654] ([i915#4423])
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][655] ([i915#15990]) -> [SKIP][656] ([i915#16708]) +20 other tests skip
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][657] ([i915#16708]) -> [SKIP][658] ([i915#15990]) +11 other tests skip
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
- shard-dg2: [SKIP][659] ([i915#15102]) -> [SKIP][660] ([i915#16708]) +13 other tests skip
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-rkl: [SKIP][661] ([i915#15102]) -> [SKIP][662] ([i915#14544] / [i915#15102]) +9 other tests skip
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][663] ([i915#15989]) -> [SKIP][664] ([i915#16708]) +9 other tests skip
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][665] ([i915#15104] / [i915#15990]) -> [SKIP][666] ([i915#16708])
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][667] ([i915#16708] / [i915#5354]) -> [SKIP][668] ([i915#15102]) +12 other tests skip
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][669] ([i915#15102] / [i915#3023]) -> [SKIP][670] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][671] ([i915#1825]) -> [SKIP][672] ([i915#14544] / [i915#1825]) +2 other tests skip
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][673] ([i915#15102]) -> [SKIP][674] ([i915#16708] / [i915#5354]) +7 other tests skip
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][675] ([i915#15990]) -> [SKIP][676] ([i915#15990] / [i915#4423])
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][677] ([i915#15991]) -> [SKIP][678] ([i915#16708]) +25 other tests skip
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2: [SKIP][679] ([i915#16708]) -> [SKIP][680] ([i915#15991]) +25 other tests skip
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][681] ([i915#16707]) -> [SKIP][682] ([i915#16518] / [i915#3555] / [i915#8228])
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][683] ([i915#14544] / [i915#15460]) -> [SKIP][684] ([i915#15460])
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: [SKIP][685] ([i915#15459]) -> [SKIP][686] ([i915#14544] / [i915#15459])
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: [SKIP][687] ([i915#6301]) -> [SKIP][688] ([i915#16707])
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_panel_fitting@legacy.html
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][689] ([i915#14544] / [i915#14712]) -> [SKIP][690] ([i915#14712])
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][691] ([i915#14544] / [i915#15709]) -> [SKIP][692] ([i915#15709]) +1 other test skip
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][693] ([i915#15709]) -> [SKIP][694] ([i915#14544] / [i915#15709]) +1 other test skip
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: [SKIP][695] ([i915#8821]) -> [SKIP][696] ([i915#16707])
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][697] ([i915#14544] / [i915#3555]) -> [SKIP][698] ([i915#3555]) +2 other tests skip
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: [SKIP][699] ([i915#16707]) -> [SKIP][700] ([i915#13958]) +1 other test skip
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-4.html
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][701] ([i915#13958]) -> [SKIP][702] ([i915#13958] / [i915#14544])
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-yf.html
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: [SKIP][703] ([i915#16707]) -> [SKIP][704] ([i915#14259])
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: [SKIP][705] ([i915#13046] / [i915#5354] / [i915#9423]) -> [SKIP][706] ([i915#5354] / [i915#9423])
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][707] ([i915#14544] / [i915#15329]) -> [SKIP][708] ([i915#15329]) +7 other tests skip
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][709] ([i915#12343] / [i915#5354]) -> [SKIP][710] ([i915#12343] / [i915#14544] / [i915#5354])
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_pm_backlight@fade.html
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][711] ([i915#3828]) -> [SKIP][712] ([i915#9340])
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][713] ([i915#11520]) -> [SKIP][714] ([i915#11520] / [i915#14544])
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][715] ([i915#11520] / [i915#14544]) -> [SKIP][716] ([i915#11520]) +1 other test skip
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][717] ([i915#9683]) -> [SKIP][718] ([i915#14544] / [i915#9683])
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][719] ([i915#1072] / [i915#9732]) -> [SKIP][720] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][721] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][722] ([i915#1072] / [i915#9732]) +3 other tests skip
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-6/igt@kms_psr@psr-suspend.html
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-5/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][723] ([i915#5289]) -> [SKIP][724] ([i915#14544] / [i915#5289])
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: [SKIP][725] ([i915#16707]) -> [SKIP][726] ([i915#12755] / [i915#15867]) +1 other test skip
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-270.html
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-rkl: [SKIP][727] ([i915#3555]) -> [SKIP][728] ([i915#14544] / [i915#3555]) +1 other test skip
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-full.html
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: [SKIP][729] ([i915#15243] / [i915#3555]) -> [SKIP][730] ([i915#16707])
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-7/igt@kms_vrr@flip-dpms.html
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-dg2: [SKIP][731] ([i915#16707]) -> [SKIP][732] ([i915#9906])
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-10/igt@kms_vrr@max-min.html
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: [SKIP][733] ([i915#9906]) -> [SKIP][734] ([i915#16707])
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-virtual.html
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][735] ([i915#15778]) -> [ABORT][736] ([i915#13029] / [i915#15778])
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-dg1-17/igt@perf_pmu@module-unload.html
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-dg1-18/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][737] ([i915#3291] / [i915#3708]) -> [SKIP][738] ([i915#14544] / [i915#3291] / [i915#3708])
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18938/shard-rkl-7/igt@prime_vgem@basic-read.html
[738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/shard-rkl-6/igt@prime_vgem@basic-read.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[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#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#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#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[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#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#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#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15529]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15529
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[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#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16436
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16707
[i915#16708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16708
[i915#16724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16724
[i915#16746]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16746
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9036 -> IGTPW_15623
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18938: f8d080b47819f01011c1b9c3c875badbb67ec955 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15623: 135672cceed01c6721a58b2c64092ce9cfafb0b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9036: 9036
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15623/index.html
[-- Attachment #2: Type: text/html, Size: 239104 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
` (3 preceding siblings ...)
2026-08-04 18:18 ` ✓ i915.CI.Full: " Patchwork
@ 2026-08-04 20:37 ` Patchwork
2026-08-27 5:31 ` [i-g-t] " Sharma, Swati2
2026-08-27 15:36 ` Kamil Konieczny
6 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-08-04 20:37 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1541 bytes --]
== Series Details ==
Series: tests/kms_colorop: Use local variable for color pipeline cap
URL : https://patchwork.freedesktop.org/series/171493/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9036_FULL -> XEIGTPW_15623_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15623_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15623_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 -> 0)
------------------------------
ERROR: It appears as if the changes made in XEIGTPW_15623_FULL prevented too many machines from booting.
Missing (2): shard-bmg shard-lnl
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9036 -> IGTPW_15623
* Linux: xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a -> xe-5521-f8d080b47819f01011c1b9c3c875badbb67ec955
IGTPW_15623: 135672cceed01c6721a58b2c64092ce9cfafb0b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9036: 9036
xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a: f9ef9f302ee01854066ec6da30550da6ea6cb03a
xe-5521-f8d080b47819f01011c1b9c3c875badbb67ec955: f8d080b47819f01011c1b9c3c875badbb67ec955
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15623/index.html
[-- Attachment #2: Type: text/html, Size: 2124 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
` (4 preceding siblings ...)
2026-08-04 20:37 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-08-27 5:31 ` Sharma, Swati2
2026-08-28 0:15 ` Alex Hung
2026-08-27 15:36 ` Kamil Konieczny
6 siblings, 1 reply; 12+ messages in thread
From: Sharma, Swati2 @ 2026-08-27 5:31 UTC (permalink / raw)
To: Chaitanya Kumar Borah, igt-dev; +Cc: Harry Wentland, Alex Hung
Hi Chaitanya
Patch LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
Also, it seems we have duplicate igt_display_require(&display,
display.drm_fd);
It is required once. Anyways, its a separate patch.
Alex,
Can you please test on AMD driver with above change?
On 03-08-2026 01:33 pm, Chaitanya Kumar Borah wrote:
> Following the pattern in kms_color_pipeline, set
> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
> local variable, then propagate it to display->has_plane_color_pipeline
> after the final igt_display_require() (which reinitializes the display
> state). This avoids calling drmSetClientCap() twice.
>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Cc: Harry Wentland <harry.wentland@amd.com>
> Cc: Alex Hung <alex.hung@amd.com>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> tests/kms_colorop.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index 16db0b8ad..d573d2ceb 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> igt_display_t display;
> int i, j, ret;
> + int has_plane_color_pipeline = 0;
>
> igt_fixture() {
> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> igt_require_f(!ret, "error setting DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>
> - igt_display_require(&display, display.drm_fd);
> if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
> - display.has_plane_color_pipeline = 1;
> + has_plane_color_pipeline = 1;
> +
> + igt_display_require(&display, display.drm_fd);
>
> kmstest_set_vt_graphics_mode();
>
> igt_display_require(&display, display.drm_fd);
> - if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
> - display.has_plane_color_pipeline = 1;
> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>
> igt_require(display.is_atomic);
> }
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
` (5 preceding siblings ...)
2026-08-27 5:31 ` [i-g-t] " Sharma, Swati2
@ 2026-08-27 15:36 ` Kamil Konieczny
2026-08-28 10:05 ` Borah, Chaitanya Kumar
6 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2026-08-27 15:36 UTC (permalink / raw)
To: Chaitanya Kumar Borah; +Cc: igt-dev, Swati Sharma, Harry Wentland, Alex Hung
Hi Chaitanya,
On 2026-08-03 at 13:33:40 +0530, Chaitanya Kumar Borah wrote:
small nit about subject, please do not use "C code to english",
rather describe what you try to achive, here better:
[i-g-t] tests/kms_colorop: Get cap color pipeline only once
Regards,
Kamil
> Following the pattern in kms_color_pipeline, set
> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
> local variable, then propagate it to display->has_plane_color_pipeline
> after the final igt_display_require() (which reinitializes the display
> state). This avoids calling drmSetClientCap() twice.
>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Cc: Harry Wentland <harry.wentland@amd.com>
> Cc: Alex Hung <alex.hung@amd.com>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> ---
> tests/kms_colorop.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index 16db0b8ad..d573d2ceb 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> igt_display_t display;
> int i, j, ret;
> + int has_plane_color_pipeline = 0;
>
> igt_fixture() {
> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> igt_require_f(!ret, "error setting DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>
> - igt_display_require(&display, display.drm_fd);
> if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
> - display.has_plane_color_pipeline = 1;
> + has_plane_color_pipeline = 1;
> +
> + igt_display_require(&display, display.drm_fd);
>
> kmstest_set_vt_graphics_mode();
>
> igt_display_require(&display, display.drm_fd);
> - if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
> - display.has_plane_color_pipeline = 1;
> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>
> igt_require(display.is_atomic);
> }
> --
> 2.50.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-27 5:31 ` [i-g-t] " Sharma, Swati2
@ 2026-08-28 0:15 ` Alex Hung
2026-08-28 10:04 ` Borah, Chaitanya Kumar
0 siblings, 1 reply; 12+ messages in thread
From: Alex Hung @ 2026-08-28 0:15 UTC (permalink / raw)
To: Sharma, Swati2, Chaitanya Kumar Borah, igt-dev; +Cc: Harry Wentland
On 8/26/26 23:31, Sharma, Swati2 wrote:
> Hi Chaitanya
>
> Patch LGTM
>
> Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>
> Also, it seems we have duplicate igt_display_require(&display,
> display.drm_fd);
>
> It is required once. Anyways, its a separate patch.
>
> Alex,
>
> Can you please test on AMD driver with above change?
yes it ran fine. Some inline comments below.
>
> On 03-08-2026 01:33 pm, Chaitanya Kumar Borah wrote:
>> Following the pattern in kms_color_pipeline, set
>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
>> local variable, then propagate it to display->has_plane_color_pipeline
>> after the final igt_display_require() (which reinitializes the display
>> state). This avoids calling drmSetClientCap() twice.
>>
>> Cc: Swati Sharma <swati2.sharma@intel.com>
>> Cc: Harry Wentland <harry.wentland@amd.com>
>> Cc: Alex Hung <alex.hung@amd.com>
>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>> ---
>> tests/kms_colorop.c | 9 +++++----
>> 1 file changed, 5 insertions(+), 4 deletions(-)
>>
>> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
>> index 16db0b8ad..d573d2ceb 100644
>> --- a/tests/kms_colorop.c
>> +++ b/tests/kms_colorop.c
>> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str,
>> opt_handler, NULL)
>> igt_display_t display;
>> int i, j, ret;
>> + int has_plane_color_pipeline = 0;
can this be bool?
>> igt_fixture() {
>> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
>> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str,
>> opt_handler, NULL)
>> igt_require_f(!ret, "error setting
>> DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>> - igt_display_require(&display, display.drm_fd);
>> if (drmSetClientCap(display.drm_fd,
>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>> - display.has_plane_color_pipeline = 1;
>> + has_plane_color_pipeline = 1;
>> +
>> + igt_display_require(&display, display.drm_fd);
is this igt_display_require() necessary?
>> kmstest_set_vt_graphics_mode();
>> igt_display_require(&display, display.drm_fd);
>> - if (drmSetClientCap(display.drm_fd,
>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>> - display.has_plane_color_pipeline = 1;
>> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>> igt_require(display.is_atomic);
>> }
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-28 0:15 ` Alex Hung
@ 2026-08-28 10:04 ` Borah, Chaitanya Kumar
2026-08-28 15:32 ` Alex Hung
0 siblings, 1 reply; 12+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-28 10:04 UTC (permalink / raw)
To: Alex Hung, Sharma, Swati2, igt-dev; +Cc: Harry Wentland
On 8/28/2026 5:45 AM, Alex Hung wrote:
>
>
> On 8/26/26 23:31, Sharma, Swati2 wrote:
>> Hi Chaitanya
>>
>> Patch LGTM
>>
>> Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>>
>> Also, it seems we have duplicate igt_display_require(&display,
>> display.drm_fd);
>>
>> It is required once. Anyways, its a separate patch.
>>
>> Alex,
>>
>> Can you please test on AMD driver with above change?
>
> yes it ran fine. Some inline comments below.
>
>>
>> On 03-08-2026 01:33 pm, Chaitanya Kumar Borah wrote:
>>> Following the pattern in kms_color_pipeline, set
>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
>>> local variable, then propagate it to display->has_plane_color_pipeline
>>> after the final igt_display_require() (which reinitializes the display
>>> state). This avoids calling drmSetClientCap() twice.
>>>
>>> Cc: Swati Sharma <swati2.sharma@intel.com>
>>> Cc: Harry Wentland <harry.wentland@amd.com>
>>> Cc: Alex Hung <alex.hung@amd.com>
>>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>>> ---
>>> tests/kms_colorop.c | 9 +++++----
>>> 1 file changed, 5 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
>>> index 16db0b8ad..d573d2ceb 100644
>>> --- a/tests/kms_colorop.c
>>> +++ b/tests/kms_colorop.c
>>> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str,
>>> opt_handler, NULL)
>>> igt_display_t display;
>>> int i, j, ret;
>>> + int has_plane_color_pipeline = 0;
> can this be bool?
>
>>> igt_fixture() {
>>> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
>>> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str,
>>> opt_handler, NULL)
>>> igt_require_f(!ret, "error setting
>>> DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>>> - igt_display_require(&display, display.drm_fd);
>>> if (drmSetClientCap(display.drm_fd,
>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>>> - display.has_plane_color_pipeline = 1;
>>> + has_plane_color_pipeline = 1;
>>> +
>>> + igt_display_require(&display, display.drm_fd);
> is this igt_display_require() necessary?
>
Swati flagged this too and this is probably unnecessary. However, I
thought of handling it in a separate patch. What do you think?
>>> kmstest_set_vt_graphics_mode();
>>> igt_display_require(&display, display.drm_fd);
>>> - if (drmSetClientCap(display.drm_fd,
>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>>> - display.has_plane_color_pipeline = 1;
>>> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>>> igt_require(display.is_atomic);
>>> }
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-27 15:36 ` Kamil Konieczny
@ 2026-08-28 10:05 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 12+ messages in thread
From: Borah, Chaitanya Kumar @ 2026-08-28 10:05 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Swati Sharma, Harry Wentland, Alex Hung
Hi Kamil,
On 8/27/2026 9:06 PM, Kamil Konieczny wrote:
> Hi Chaitanya,
> On 2026-08-03 at 13:33:40 +0530, Chaitanya Kumar Borah wrote:
>
> small nit about subject, please do not use "C code to english",
> rather describe what you try to achive, here better:
>
> [i-g-t] tests/kms_colorop: Get cap color pipeline only once
>
Noted.
Swati, we can perhaps change this while merging if there are no further
changes needed.
==
Chaitanya
> Regards,
> Kamil
>
>> Following the pattern in kms_color_pipeline, set
>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
>> local variable, then propagate it to display->has_plane_color_pipeline
>> after the final igt_display_require() (which reinitializes the display
>> state). This avoids calling drmSetClientCap() twice.
>>
>> Cc: Swati Sharma <swati2.sharma@intel.com>
>> Cc: Harry Wentland <harry.wentland@amd.com>
>> Cc: Alex Hung <alex.hung@amd.com>
>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>> ---
>> tests/kms_colorop.c | 9 +++++----
>> 1 file changed, 5 insertions(+), 4 deletions(-)
>>
>> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
>> index 16db0b8ad..d573d2ceb 100644
>> --- a/tests/kms_colorop.c
>> +++ b/tests/kms_colorop.c
>> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>>
>> igt_display_t display;
>> int i, j, ret;
>> + int has_plane_color_pipeline = 0;
>>
>> igt_fixture() {
>> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
>> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>>
>> igt_require_f(!ret, "error setting DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>>
>> - igt_display_require(&display, display.drm_fd);
>> if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>> - display.has_plane_color_pipeline = 1;
>> + has_plane_color_pipeline = 1;
>> +
>> + igt_display_require(&display, display.drm_fd);
>>
>> kmstest_set_vt_graphics_mode();
>>
>> igt_display_require(&display, display.drm_fd);
>> - if (drmSetClientCap(display.drm_fd, DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>> - display.has_plane_color_pipeline = 1;
>> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>>
>> igt_require(display.is_atomic);
>> }
>> --
>> 2.50.1
>>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap
2026-08-28 10:04 ` Borah, Chaitanya Kumar
@ 2026-08-28 15:32 ` Alex Hung
0 siblings, 0 replies; 12+ messages in thread
From: Alex Hung @ 2026-08-28 15:32 UTC (permalink / raw)
To: Borah, Chaitanya Kumar, Sharma, Swati2, igt-dev; +Cc: Harry Wentland
On 8/28/26 04:04, Borah, Chaitanya Kumar wrote:
>
>
> On 8/28/2026 5:45 AM, Alex Hung wrote:
>>
>>
>> On 8/26/26 23:31, Sharma, Swati2 wrote:
>>> Hi Chaitanya
>>>
>>> Patch LGTM
>>>
>>> Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
>>>
>>> Also, it seems we have duplicate igt_display_require(&display,
>>> display.drm_fd);
>>>
>>> It is required once. Anyways, its a separate patch.
>>>
>>> Alex,
>>>
>>> Can you please test on AMD driver with above change?
>>
>> yes it ran fine. Some inline comments below.
>>
>>>
>>> On 03-08-2026 01:33 pm, Chaitanya Kumar Borah wrote:
>>>> Following the pattern in kms_color_pipeline, set
>>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE once and stash the result in a
>>>> local variable, then propagate it to display->has_plane_color_pipeline
>>>> after the final igt_display_require() (which reinitializes the display
>>>> state). This avoids calling drmSetClientCap() twice.
>>>>
>>>> Cc: Swati Sharma <swati2.sharma@intel.com>
>>>> Cc: Harry Wentland <harry.wentland@amd.com>
>>>> Cc: Alex Hung <alex.hung@amd.com>
>>>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>>>> ---
>>>> tests/kms_colorop.c | 9 +++++----
>>>> 1 file changed, 5 insertions(+), 4 deletions(-)
>>>>
>>>> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
>>>> index 16db0b8ad..d573d2ceb 100644
>>>> --- a/tests/kms_colorop.c
>>>> +++ b/tests/kms_colorop.c
>>>> @@ -406,6 +406,7 @@ int igt_main_args("d", long_options, help_str,
>>>> opt_handler, NULL)
>>>> igt_display_t display;
>>>> int i, j, ret;
>>>> + int has_plane_color_pipeline = 0;
>> can this be bool?
>>
>>>> igt_fixture() {
>>>> display.drm_fd = drm_open_driver_master(DRIVER_ANY);
>>>> @@ -417,15 +418,15 @@ int igt_main_args("d", long_options, help_str,
>>>> opt_handler, NULL)
>>>> igt_require_f(!ret, "error setting
>>>> DRM_CLIENT_CAP_WRITEBACK_CONNECTORS\n");
>>>> - igt_display_require(&display, display.drm_fd);
>>>> if (drmSetClientCap(display.drm_fd,
>>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>>>> - display.has_plane_color_pipeline = 1;
>>>> + has_plane_color_pipeline = 1;
>>>> +
>>>> + igt_display_require(&display, display.drm_fd);
>> is this igt_display_require() necessary?
>>
>
> Swati flagged this too and this is probably unnecessary. However, I
> thought of handling it in a separate patch. What do you think?
Sure. This is not a blocker
Reviewed-by: Alex Hung <alex.hung@amd.com>
>
>>>> kmstest_set_vt_graphics_mode();
>>>> igt_display_require(&display, display.drm_fd);
>>>> - if (drmSetClientCap(display.drm_fd,
>>>> DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE, 1) == 0)
>>>> - display.has_plane_color_pipeline = 1;
>>>> + display.has_plane_color_pipeline = has_plane_color_pipeline;
>>>> igt_require(display.is_atomic);
>>>> }
>>
>
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-08-28 15:33 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-03 8:03 [i-g-t] tests/kms_colorop: Use local variable for color pipeline cap Chaitanya Kumar Borah
2026-08-03 19:33 ` ✗ Xe.CI.FULL: failure for " Patchwork
2026-08-04 13:42 ` ✓ Xe.CI.BAT: success " Patchwork
2026-08-04 14:00 ` ✓ i915.CI.BAT: " Patchwork
2026-08-04 18:18 ` ✓ i915.CI.Full: " Patchwork
2026-08-04 20:37 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-27 5:31 ` [i-g-t] " Sharma, Swati2
2026-08-28 0:15 ` Alex Hung
2026-08-28 10:04 ` Borah, Chaitanya Kumar
2026-08-28 15:32 ` Alex Hung
2026-08-27 15:36 ` Kamil Konieczny
2026-08-28 10:05 ` Borah, Chaitanya Kumar
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.