* [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
@ 2026-06-08 2:27 Jason-JH Lin
2026-06-08 5:08 ` ✓ Xe.CI.BAT: success for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jason-JH Lin @ 2026-06-08 2:27 UTC (permalink / raw)
To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Ville Syrjala, Fei Shao
Cc: Jani, Jason-JH Lin, Paul-PL Chen, Lancelot Wu, Manasi Navare,
Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group
The capture_crc() function validates that the CRC frame sequence
returned by igt_pipe_crc_get_for_frame() matches the expected value.
The current check uses exact equality (!=), however the library
function igt_pipe_crc_get_for_frame() uses >= comparison internally:
do {
read_one_crc(pipe_crc, crc);
...
} while (igt_vblank_before(crc->frame, vblank));
The function loops while crc->frame < vblank, returning the first
CRC where crc->frame >= expected, not necessarily an exact match.
This strict validation can cause test failures on drivers that
report CRC entries with frame sequences larger than expected. This
happens when drivers use internal queuing mechanisms to ensure CRC
values are correctly correlated with their corresponding frames.
Example without internal queue (continuous CRC reporting):
- Driver generates CRC entries continuously every frame
- Frame sequence increments sequentially
- Test finds exact matches for all expected frames → PASS
Example with internal queue (per-commit CRC reporting):
- Driver queues CRC and reports with current frame sequence
- Due to queue processing delay, reported sequence > expected
- For the last CRC, test adds +1 to expected (per IGT logic)
- Library's >= comparison returns valid CRC
- capture_crc's != check fails on last frame → FAIL
Relax the validation to use < comparison instead of !=, which:
1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
2. Accepts CRC entries with frame >= expected (valid cases)
3. Still catches real errors where frame < expected, indicating
CRC buffer overflow or stale data
Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
tests/kms_plane.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index f21006784bfc..548506290c9b 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned int vblank, igt_crc_t *crc)
{
igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc, vblank, crc);
+ /*
+ * igt_pipe_crc_get_for_frame uses >= comparison, so we check the same.
+ * Getting a frame < expected indicates CRC buffer overflow or timing issue.
+ */
igt_fail_on_f(!igt_skip_crc_compare && !igt_run_in_simulation() &&
- crc->has_valid_frame && crc->frame != vblank,
- "Got CRC for the wrong frame (got %u, expected %u). CRC buffer overflow?\n",
+ crc->has_valid_frame && crc->frame < vblank,
+ "Got CRC for the wrong frame (got %u, expected >= %u). CRC buffer overflow?\n",
crc->frame, vblank);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
@ 2026-06-08 5:08 ` Patchwork
2026-06-08 5:16 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-08 5:08 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 873 bytes --]
== Series Details ==
Series: tests/kms_plane: Relax CRC frame sequence validation
URL : https://patchwork.freedesktop.org/series/168037/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8952_BAT -> XEIGTPW_15316_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8952 -> IGTPW_15316
IGTPW_15316: 15316
IGT_8952: 475b1c61f2f23f573e17e4f8d10c46d635ad4346 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5218-0375ba98c1fdf69bc3a05ffa80591f9ffe910330: 0375ba98c1fdf69bc3a05ffa80591f9ffe910330
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/index.html
[-- Attachment #2: Type: text/html, Size: 1418 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
2026-06-08 5:08 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-06-08 5:16 ` Patchwork
2026-06-08 10:33 ` ✗ i915.CI.Full: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-08 5:16 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4832 bytes --]
== Series Details ==
Series: tests/kms_plane: Relax CRC frame sequence validation
URL : https://patchwork.freedesktop.org/series/168037/
State : success
== Summary ==
CI Bug Log - changes from IGT_8952 -> IGTPW_15316
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-rplp-1
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15316 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-rplp-1: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-rplp-1: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-rplp-1: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-rplp-1: NOTRUN -> [SKIP][4] ([i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@i915_pm_rps@basic-api.html
* igt@intel_hwmon@hwmon-read:
- bat-rplp-1: NOTRUN -> [SKIP][5] ([i915#7707]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rplp-1: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rplp-1: NOTRUN -> [SKIP][7] ([i915#16361])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-rplp-1: NOTRUN -> [SKIP][8] ([i915#4093]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- bat-rplp-1: NOTRUN -> [SKIP][9] ([i915#4369])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_psr@psr-primary-page-flip:
- bat-rplp-1: NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9732]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#3555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- bat-rplp-1: NOTRUN -> [SKIP][12] ([i915#3708]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/bat-rplp-1/igt@prime_vgem@basic-read.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4093
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4369]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4369
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8952 -> IGTPW_15316
CI-20190529: 20190529
CI_DRM_18641: 0375ba98c1fdf69bc3a05ffa80591f9ffe910330 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15316: 15316
IGT_8952: 475b1c61f2f23f573e17e4f8d10c46d635ad4346 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/index.html
[-- Attachment #2: Type: text/html, Size: 5729 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
2026-06-08 5:08 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-06-08 5:16 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-08 10:33 ` Patchwork
2026-06-08 12:48 ` ✓ Xe.CI.FULL: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-08 10:33 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 144100 bytes --]
== Series Details ==
Series: tests/kms_plane: Relax CRC frame sequence validation
URL : https://patchwork.freedesktop.org/series/168037/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8952_full -> IGTPW_15316_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15316_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15316_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15316_full:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@read:
- shard-dg2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-3/igt@fbdev@read.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@fbdev@read.html
- shard-dg1: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@fbdev@read.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@fbdev@read.html
Known issues
------------
Here are the changes found in IGTPW_15316_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@api_intel_bb@crc32.html
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@device_reset@unbind-cold-reset-rebind.html
* igt@dmabuf@all-tests:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#15931])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@dmabuf@all-tests.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#15678])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#13356] / [i915#16348])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-glk10: NOTRUN -> [INCOMPLETE][22] ([i915#13356]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-snb6/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-2/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk10: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#6344])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-18/igt@gem_exec_fence@submit67.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +8 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-active.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#14544] / [i915#3281])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613] / [i915#7582])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#12193])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4565])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-17/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3282]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_pread@display.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-17/igt@gem_pread@display.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [PASS][64] -> [SKIP][65] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [PASS][68] -> [ABORT][69] ([i915#15131])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][72] +406 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4885])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][77] -> [INCOMPLETE][78] ([i915#13809] / [i915#16226])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#15656])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: NOTRUN -> [INCOMPLETE][82] ([i915#13356])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_workarounds@suspend-resume.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][83] +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@gen9_exec_parse@batch-invalid-length.html
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#14544] / [i915#2527])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [ABORT][91] ([i915#15342]) +1 other test abort
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#6412])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#16080] / [i915#16166])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][94] -> [FAIL][95] ([i915#12964]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][96] -> [INCOMPLETE][97] ([i915#13356])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-glk9/igt@i915_pm_rpm@system-suspend.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk2/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#16182] / [i915#4817]) +2 other tests incomplete
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk5/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#14544] / [i915#7707])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#7707])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][106] ([i915#1769])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/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][108] -> [FAIL][109] ([i915#5956]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#5286]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][116] +14 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6095]) +183 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#12313]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#12313]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#6095]) +19 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +77 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#12313]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +34 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][127] +193 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#6095]) +84 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544] / [i915#6095]) +11 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +117 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#12805])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +16 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][135] -> [INCOMPLETE][136] ([i915#15582])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][137] ([i915#15582])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#15582]) +1 other test incomplete
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14098] / [i915#6095]) +55 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#13783]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#14544] / [i915#7828])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#15330] / [i915#3116])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#15330]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#15865])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#15865]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#15865])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#15865]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#15865]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#13049]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#13049])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][160] ([i915#13566]) +1 other test fail
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3555]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][162] -> [FAIL][163] ([i915#13566]) +3 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][164] -> [FAIL][165] ([i915#13566]) +3 other tests fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#13046] / [i915#5354])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg1: [PASS][169] -> [DMESG-WARN][170] ([i915#4423]) +2 other tests dmesg-warn
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-19/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#9833])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#9723]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#1769] / [i915#3555] / [i915#3804])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3804])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#13748])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#13707])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#16361])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#16361]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#16361]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#16361]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#16361]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#14544] / [i915#16361])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#16361]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3469])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#2065])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#16081])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#16081])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9337])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544] / [i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#14544] / [i915#9934]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#9934])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +6 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12745] / [i915#4839])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12745])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9934]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#9934]) +8 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2: [PASS][200] -> [FAIL][201] ([i915#13027])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][202] ([i915#13027]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12745] / [i915#4839] / [i915#6113])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][204] ([i915#12745] / [i915#6113])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#15643])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#15643]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#15643]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#15643]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643] / [i915#5190]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#14544] / [i915#15643])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#15990] / [i915#8708]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#1825]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#15991] / [i915#1825]) +22 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#15990] / [i915#8708]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#15989]) +11 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#15990]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#15989]) +22 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][219] +104 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][220] +110 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#15989]) +20 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-dg2: [PASS][222] -> [SKIP][223] ([i915#15989]) +9 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#15989]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15989]) +10 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: [PASS][226] -> [SKIP][227] ([i915#15989]) +14 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#15102]) +21 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][229] +164 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3023]) +16 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#15990] / [i915#8708]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#10433] / [i915#15102])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#5439])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#10055])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#10055])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#15102]) +42 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15990]) +9 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15990]) +15 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102]) +8 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][243] +39 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#15991]) +30 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render:
- shard-glk11: NOTRUN -> [SKIP][245] +158 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15102]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff:
- shard-glk: [PASS][247] -> [SKIP][248] +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15991]) +28 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15989]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15104] / [i915#15990])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15102]) +15 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15102]) +16 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15991] / [i915#5354]) +18 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-rte:
- shard-dg1: NOTRUN -> [SKIP][255] +36 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][256] -> [SKIP][257] ([i915#15725]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-8/igt@kms_hdmi_inject@inject-4k.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#16012] / [i915#3555] / [i915#8228])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#16012] / [i915#3555] / [i915#8228])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@kms_hdr@bpc-switch-dpms.html
- shard-snb: NOTRUN -> [FAIL][260] ([i915#16018])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-snb1/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#16012] / [i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#16012] / [i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#16012]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-snb: NOTRUN -> [FAIL][264] ([i915#16013]) +1 other test fail
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-snb1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#16012]) +5 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#16012]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#16011]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#16076]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#16012] / [i915#3555] / [i915#8228])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#16012]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#16012]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-17/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#16011]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#16011] / [i915#3555] / [i915#8228])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_hdr@static-swap.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#16011] / [i915#3555] / [i915#8228])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-17/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#16011] / [i915#3555] / [i915#8228])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#16011]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-1/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#16011]) +5 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#16011]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#16011]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15458])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#15459])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#15459]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#15459])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15459])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15459])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#15458])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][289] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#15709])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15709]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15709]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#15709]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15608]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15709]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#15709]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][297] ([i915#13026]) +1 other test incomplete
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#11614] / [i915#3582]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8821])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#3555]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#3555]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8821])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#13958])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#13958]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#13958])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#15329]) +6 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15329] / [i915#3555])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15329]) +8 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15329] / [i915#6953])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#12343] / [i915#5354])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15948]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#9340])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#3828])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#8430])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#8430])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#15073])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][319] -> [SKIP][320] ([i915#15073]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#15073]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#15403])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#15403])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][325] -> [INCOMPLETE][326] ([i915#14419])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#6524] / [i915#6805])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#11520]) +6 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#11520]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][330] ([i915#11520]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-snb7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][331] ([i915#11520]) +9 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][332] ([i915#11520]) +5 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12316]) +2 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#11520]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#11520] / [i915#14544])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#11520])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-17/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520]) +7 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][338] ([i915#11520]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk11/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#9683])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +16 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#9732]) +22 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9732]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +14 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-3/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +20 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +10 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#15949])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#5289])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#12755] / [i915#15867])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#15867])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][352] ([i915#13179]) +1 other test abort
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#3555]) +2 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8809] / [i915#8823])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk10: NOTRUN -> [FAIL][355] ([i915#10959])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#15243] / [i915#3555]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_vrr@flip-basic.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#2435])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#2433])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][359] -> [FAIL][360] ([i915#15453])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html
- shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#15453])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [ABORT][363] ([i915#13029] / [i915#15778])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#8516])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][365] ([i915#13356] / [i915#16236])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk3/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#8516])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#3708])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#3708])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#3708]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#16066]) +9 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [INCOMPLETE][372] ([i915#13390]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@suspend:
- shard-dg1: [DMESG-WARN][374] ([i915#4391] / [i915#4423]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-15/igt@gem_eio@suspend.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@gem_eio@suspend.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: [DMESG-WARN][376] ([i915#4423]) -> [PASS][377] +5 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@gem_exec_suspend@basic-s3-devices.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: [SKIP][378] ([i915#4270]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][380] ([i915#4817]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][382] ([i915#15733] / [i915#5138]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-rkl: [INCOMPLETE][384] ([i915#12358] / [i915#14152]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-rkl: [SKIP][386] ([i915#15989]) -> [PASS][387] +15 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc:
- shard-glk: [SKIP][388] -> [PASS][389] +11 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-glk6/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][390] ([i915#15073]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][392] ([i915#14544] / [i915#15073]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][394] ([i915#15073]) -> [PASS][395] +3 other tests pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [SKIP][396] ([i915#15073]) -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][398] ([i915#4349]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][400] ([i915#8411]) -> [SKIP][401] ([i915#14544] / [i915#8411])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][402] ([i915#14544] / [i915#8411]) -> [SKIP][403] ([i915#8411])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][404] ([i915#11078]) -> [SKIP][405] ([i915#11078] / [i915#14544])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@device_reset@cold-reset-bound.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][406] ([i915#280]) -> [SKIP][407] ([i915#14544] / [i915#280])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_reloc@basic-range-active:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#3281]) -> [SKIP][409] ([i915#3281]) +2 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][410] ([i915#3281]) -> [SKIP][411] ([i915#14544] / [i915#3281]) +6 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#4613]) -> [SKIP][413] ([i915#4613])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#284]) -> [SKIP][415] ([i915#284])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_media_vme.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: [SKIP][416] ([i915#3282]) -> [SKIP][417] ([i915#14544] / [i915#3282]) +2 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][418] ([i915#13717]) -> [SKIP][419] ([i915#13717] / [i915#14544])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#3282]) -> [SKIP][421] ([i915#3282]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][422] ([i915#14544] / [i915#3297]) -> [SKIP][423] ([i915#3297])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][424] ([i915#2527]) -> [SKIP][425] ([i915#14544] / [i915#2527])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][426] ([i915#6412]) -> [SKIP][427] ([i915#14544] / [i915#6412])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-1/igt@i915_module_load@resize-bar.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][428] ([i915#8399]) -> [SKIP][429] ([i915#14544] / [i915#8399])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#6590]) -> [SKIP][431] ([i915#6590]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#7707]) -> [SKIP][433] ([i915#7707])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][434] ([i915#5286]) -> [SKIP][435] ([i915#14544] / [i915#5286]) +2 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#5286]) -> [SKIP][437] ([i915#5286])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][438] ([i915#3828]) -> [SKIP][439] ([i915#14544] / [i915#3828])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#3638]) -> [SKIP][441] ([i915#3638])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][442] ([i915#3638]) -> [SKIP][443] ([i915#14544] / [i915#3638])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][444] ([i915#6095]) -> [SKIP][445] ([i915#14544] / [i915#6095]) +3 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-rkl: [SKIP][446] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][447] ([i915#14098] / [i915#6095]) +4 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][448] ([i915#14098] / [i915#6095]) -> [SKIP][449] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#6095]) -> [SKIP][451] ([i915#6095]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][452] ([i915#11151] / [i915#7828]) -> [SKIP][453] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-read.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-rkl: [SKIP][454] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][455] ([i915#11151] / [i915#7828]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][456] ([i915#15865]) -> [SKIP][457] ([i915#9433])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][458] ([i915#15865]) -> [SKIP][459] ([i915#14544] / [i915#15865])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_content_protection@srm.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][460] ([i915#3555]) -> [SKIP][461] ([i915#14544] / [i915#3555]) +3 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][462] ([i915#13049] / [i915#3359]) -> [SKIP][463] ([i915#13049])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][464] ([i915#13049]) -> [SKIP][465] ([i915#13049] / [i915#14544])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][466] ([i915#13691] / [i915#14544]) -> [SKIP][467] ([i915#13691])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][468] ([i915#3555] / [i915#3804]) -> [SKIP][469] ([i915#14544] / [i915#3555] / [i915#3804])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/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][470] ([i915#3804]) -> [SKIP][471] ([i915#14544] / [i915#3804])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][472] ([i915#13749]) -> [SKIP][473] ([i915#13749] / [i915#14544])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][474] ([i915#13707]) -> [SKIP][475] ([i915#13707] / [i915#14544])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#16361]) -> [SKIP][477] ([i915#16361]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-rkl: [SKIP][478] ([i915#16361]) -> [SKIP][479] ([i915#14544] / [i915#16361])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][480] ([i915#16084]) -> [SKIP][481] ([i915#14544] / [i915#16084])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: [SKIP][482] ([i915#16081] / [i915#4423]) -> [SKIP][483] ([i915#16081])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-18/igt@kms_feature_discovery@display-4x.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][484] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][485] ([i915#12745] / [i915#4839] / [i915#6113])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][486] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][487] ([i915#12745])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg1: [SKIP][488] ([i915#4423] / [i915#9934]) -> [SKIP][489] ([i915#9934])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#9934]) -> [SKIP][491] ([i915#9934])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][492] ([i915#9934]) -> [SKIP][493] ([i915#14544] / [i915#9934]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_flip@2x-plain-flip.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#15643]) -> [SKIP][495] ([i915#15643]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][496] ([i915#15643]) -> [SKIP][497] ([i915#14544] / [i915#15643])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][498] ([i915#15672]) -> [SKIP][499]
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt:
- shard-rkl: [SKIP][500] -> [SKIP][501] ([i915#14544]) +46 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-rkl: [INCOMPLETE][502] ([i915#16056]) -> [SKIP][503] ([i915#15989])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: [SKIP][504] ([i915#5439]) -> [SKIP][505] ([i915#14544] / [i915#5439]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][506] ([i915#15102] / [i915#3023]) -> [SKIP][507] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][508] ([i915#15102]) -> [SKIP][509] ([i915#10433] / [i915#15102])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#1825]) -> [SKIP][511] ([i915#1825]) +7 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][512] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][513] ([i915#15990] / [i915#8708])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][514] ([i915#1825]) -> [SKIP][515] ([i915#14544] / [i915#1825]) +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg1: [SKIP][516] ([i915#15102] / [i915#4423]) -> [SKIP][517] ([i915#15102])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][518] ([i915#10433] / [i915#15102]) -> [SKIP][519] ([i915#15102]) +5 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: [SKIP][520] ([i915#15102]) -> [SKIP][521] ([i915#14544] / [i915#15102]) +12 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: [SKIP][522] ([i915#4423]) -> [SKIP][523]
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-render.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][525] ([i915#15102] / [i915#3023]) +3 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][526] ([i915#14544]) -> [SKIP][527] +30 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102]) -> [SKIP][529] ([i915#15102]) +12 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][530] ([i915#16011]) -> [SKIP][531] ([i915#16076])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][532] ([i915#15458]) -> [SKIP][533] ([i915#14544] / [i915#15458])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][534] ([i915#6301]) -> [SKIP][535] ([i915#14544] / [i915#6301])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-7/igt@kms_panel_fitting@legacy.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][536] ([i915#15709]) -> [SKIP][537] ([i915#14544] / [i915#15709])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#15329]) -> [SKIP][539] ([i915#15329]) +7 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][540] ([i915#12343] / [i915#5354]) -> [SKIP][541] ([i915#12343] / [i915#14544] / [i915#5354])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][542] ([i915#9340]) -> [SKIP][543] ([i915#3828])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][544] ([i915#6524]) -> [SKIP][545] ([i915#14544] / [i915#6524])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][546] ([i915#11520] / [i915#14544]) -> [SKIP][547] ([i915#11520]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][548] ([i915#11520]) -> [SKIP][549] ([i915#11520] / [i915#14544]) +1 other test skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][550] ([i915#9683]) -> [SKIP][551] ([i915#14544] / [i915#9683])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +6 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#5289]) -> [SKIP][557] ([i915#5289])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: [SKIP][558] ([i915#15867] / [i915#5190]) -> [SKIP][559] ([i915#12755] / [i915#15867] / [i915#5190])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_vrr@max-min:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#9906]) -> [SKIP][561] ([i915#9906])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@kms_vrr@max-min.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-5/igt@kms_vrr@max-min.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#2434]) -> [SKIP][563] ([i915#2434])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@perf@mi-rpc.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-2/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][564] ([i915#13029] / [i915#15778]) -> [ABORT][565] ([i915#15778])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg2-1/igt@perf_pmu@module-unload.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg2-7/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][566] ([i915#13029] / [i915#15778]) -> [ABORT][567] ([i915#15778])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-dg1-16/igt@perf_pmu@module-unload.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-dg1-19/igt@perf_pmu@module-unload.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][568] ([i915#14544] / [i915#9917]) -> [SKIP][569] ([i915#9917]) +1 other test skip
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][570] ([i915#9917]) -> [SKIP][571] ([i915#14544] / [i915#9917])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8952/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#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#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013
[i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16076
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[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#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[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#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[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#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#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#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8952 -> IGTPW_15316
CI-20190529: 20190529
CI_DRM_18641: 0375ba98c1fdf69bc3a05ffa80591f9ffe910330 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15316: 15316
IGT_8952: 475b1c61f2f23f573e17e4f8d10c46d635ad4346 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15316/index.html
[-- Attachment #2: Type: text/html, Size: 194581 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
` (2 preceding siblings ...)
2026-06-08 10:33 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-06-08 12:48 ` Patchwork
2026-06-12 6:07 ` [PATCH i-g-t] " Manasi Navare
2026-08-10 4:50 ` Karthik B S
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-06-08 12:48 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 23324 bytes --]
== Series Details ==
Series: tests/kms_plane: Relax CRC frame sequence validation
URL : https://patchwork.freedesktop.org/series/168037/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8952_FULL -> XEIGTPW_15316_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15316_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#7265]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-1/igt@kms_async_flips@alternate-sync-async-flip.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#610] / [Intel XE#7387])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7679])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#6507])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#6974])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7178] / [Intel XE#7351])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7349])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2311]) +16 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4141]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7061]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2313]) +12 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#7915]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-10/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6901])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#5021] / [Intel XE#7377])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#7340] / [Intel XE#7504])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7794])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1489]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6503])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1499])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7636]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-9/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7136]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6874]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-priority.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads:
- shard-bmg: [PASS][41] -> [FAIL][42] ([Intel XE#7850])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-9/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7138]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6964])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@invalid-1g:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7793])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@xe_page_reclaim@invalid-1g.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#944])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [PASS][48] -> [FAIL][49] ([Intel XE#7992]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#6569]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][52] -> [ABORT][53] ([Intel XE#8007])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-5/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2:
- shard-bmg: [FAIL][54] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][56] ([Intel XE#301]) -> [PASS][57] +2 other tests pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][58] ([Intel XE#7915]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][60] ([Intel XE#7340]) -> [PASS][61] +1 other test pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [ABORT][62] -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][64] ([Intel XE#6321]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset:
- shard-lnl: [FAIL][66] ([Intel XE#8058]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000:
- shard-bmg: [SKIP][68] ([Intel XE#8280]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-7/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-3/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-bmg: [FAIL][70] ([Intel XE#7992]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-7/igt@xe_sriov_vram@vf-access-beyond.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-7/igt@xe_sriov_vram@vf-access-beyond.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][72] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][73] ([Intel XE#309] / [Intel XE#7343])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [ABORT][74] ([Intel XE#7814]) -> [SKIP][75] ([Intel XE#4141])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8952/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8058
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8280
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8952 -> IGTPW_15316
IGTPW_15316: 15316
IGT_8952: 475b1c61f2f23f573e17e4f8d10c46d635ad4346 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5218-0375ba98c1fdf69bc3a05ffa80591f9ffe910330: 0375ba98c1fdf69bc3a05ffa80591f9ffe910330
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15316/index.html
[-- Attachment #2: Type: text/html, Size: 25727 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
` (3 preceding siblings ...)
2026-06-08 12:48 ` ✓ Xe.CI.FULL: success " Patchwork
@ 2026-06-12 6:07 ` Manasi Navare
2026-07-24 11:48 ` Jason-JH Lin (林睿祥)
2026-08-10 4:50 ` Karthik B S
5 siblings, 1 reply; 11+ messages in thread
From: Manasi Navare @ 2026-06-12 6:07 UTC (permalink / raw)
To: Jason-JH Lin
Cc: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Ville Syrjala, Fei Shao, Jani, Paul-PL Chen, Lancelot Wu,
Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group
Thanks Jason for the patch, this makes sense to me.
@Karthik B S @Swati Sharma could we get some reviews on this since
this is extremely critical for us.
Regards
Manasi
On Sun, Jun 7, 2026 at 7:28 PM Jason-JH Lin <jason-jh.lin@mediatek.com> wrote:
>
> The capture_crc() function validates that the CRC frame sequence
> returned by igt_pipe_crc_get_for_frame() matches the expected value.
> The current check uses exact equality (!=), however the library
> function igt_pipe_crc_get_for_frame() uses >= comparison internally:
>
> do {
> read_one_crc(pipe_crc, crc);
> ...
> } while (igt_vblank_before(crc->frame, vblank));
>
> The function loops while crc->frame < vblank, returning the first
> CRC where crc->frame >= expected, not necessarily an exact match.
>
> This strict validation can cause test failures on drivers that
> report CRC entries with frame sequences larger than expected. This
> happens when drivers use internal queuing mechanisms to ensure CRC
> values are correctly correlated with their corresponding frames.
>
> Example without internal queue (continuous CRC reporting):
> - Driver generates CRC entries continuously every frame
> - Frame sequence increments sequentially
> - Test finds exact matches for all expected frames → PASS
>
> Example with internal queue (per-commit CRC reporting):
> - Driver queues CRC and reports with current frame sequence
> - Due to queue processing delay, reported sequence > expected
> - For the last CRC, test adds +1 to expected (per IGT logic)
> - Library's >= comparison returns valid CRC
> - capture_crc's != check fails on last frame → FAIL
>
> Relax the validation to use < comparison instead of !=, which:
> 1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
> 2. Accepts CRC entries with frame >= expected (valid cases)
> 3. Still catches real errors where frame < expected, indicating
> CRC buffer overflow or stale data
>
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
> tests/kms_plane.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> index f21006784bfc..548506290c9b 100644
> --- a/tests/kms_plane.c
> +++ b/tests/kms_plane.c
> @@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned int vblank, igt_crc_t *crc)
> {
> igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc, vblank, crc);
>
> + /*
> + * igt_pipe_crc_get_for_frame uses >= comparison, so we check the same.
> + * Getting a frame < expected indicates CRC buffer overflow or timing issue.
> + */
> igt_fail_on_f(!igt_skip_crc_compare && !igt_run_in_simulation() &&
> - crc->has_valid_frame && crc->frame != vblank,
> - "Got CRC for the wrong frame (got %u, expected %u). CRC buffer overflow?\n",
> + crc->has_valid_frame && crc->frame < vblank,
> + "Got CRC for the wrong frame (got %u, expected >= %u). CRC buffer overflow?\n",
> crc->frame, vblank);
> }
>
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-06-12 6:07 ` [PATCH i-g-t] " Manasi Navare
@ 2026-07-24 11:48 ` Jason-JH Lin (林睿祥)
0 siblings, 0 replies; 11+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-07-24 11:48 UTC (permalink / raw)
To: Kamil Konieczny
Cc: karthik.b.s@intel.com, swati2.sharma@intel.com,
jani.nikula@intel.com, ville.syrjala@linux.intel.com,
Project_Global_Chrome_Upstream_Group, gildekel@google.com,
navaremanasi@google.com, igt-dev@lists.freedesktop.org,
Paul-pl Chen (陳柏霖),
kamil.konieczny@linux.intel.com,
Lancelot Wu (吳瑋晟), fshao@chromium.org,
markyacoub@chromium.org
Hi Kamil,
Sorry to bother you.
Since this patch has been pending since June 8th.
I think it was accidentally lost. Could you please help review it or
find someone else to help?
I would really appreciate any suggestion or feedback you may have.
Regards,
Jason-JH Lin
On Thu, 2026-06-11 at 23:07 -0700, Manasi Navare wrote:
> Thanks Jason for the patch, this makes sense to me.
> @Karthik B S @Swati Sharma could we get some reviews on this since
> this is extremely critical for us.
>
> Regards
> Manasi
>
> On Sun, Jun 7, 2026 at 7:28 PM Jason-JH Lin
> <jason-jh.lin@mediatek.com> wrote:
> >
> > The capture_crc() function validates that the CRC frame sequence
> > returned by igt_pipe_crc_get_for_frame() matches the expected
> > value.
> > The current check uses exact equality (!=), however the library
> > function igt_pipe_crc_get_for_frame() uses >= comparison
> > internally:
> >
> > do {
> > read_one_crc(pipe_crc, crc);
> > ...
> > } while (igt_vblank_before(crc->frame, vblank));
> >
> > The function loops while crc->frame < vblank, returning the first
> > CRC where crc->frame >= expected, not necessarily an exact match.
> >
> > This strict validation can cause test failures on drivers that
> > report CRC entries with frame sequences larger than expected. This
> > happens when drivers use internal queuing mechanisms to ensure CRC
> > values are correctly correlated with their corresponding frames.
> >
> > Example without internal queue (continuous CRC reporting):
> > - Driver generates CRC entries continuously every frame
> > - Frame sequence increments sequentially
> > - Test finds exact matches for all expected frames → PASS
> >
> > Example with internal queue (per-commit CRC reporting):
> > - Driver queues CRC and reports with current frame sequence
> > - Due to queue processing delay, reported sequence > expected
> > - For the last CRC, test adds +1 to expected (per IGT logic)
> > - Library's >= comparison returns valid CRC
> > - capture_crc's != check fails on last frame → FAIL
> >
> > Relax the validation to use < comparison instead of !=, which:
> > 1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
> > 2. Accepts CRC entries with frame >= expected (valid cases)
> > 3. Still catches real errors where frame < expected, indicating
> > CRC buffer overflow or stale data
> >
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> > tests/kms_plane.c | 8 ++++++--
> > 1 file changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> > index f21006784bfc..548506290c9b 100644
> > --- a/tests/kms_plane.c
> > +++ b/tests/kms_plane.c
> > @@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned
> > int vblank, igt_crc_t *crc)
> > {
> > igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc,
> > vblank, crc);
> >
> > + /*
> > + * igt_pipe_crc_get_for_frame uses >= comparison, so we
> > check the same.
> > + * Getting a frame < expected indicates CRC buffer overflow
> > or timing issue.
> > + */
> > igt_fail_on_f(!igt_skip_crc_compare &&
> > !igt_run_in_simulation() &&
> > - crc->has_valid_frame && crc->frame != vblank,
> > - "Got CRC for the wrong frame (got %u,
> > expected %u). CRC buffer overflow?\n",
> > + crc->has_valid_frame && crc->frame < vblank,
> > + "Got CRC for the wrong frame (got %u,
> > expected >= %u). CRC buffer overflow?\n",
> > crc->frame, vblank);
> > }
> >
> > --
> > 2.43.0
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
` (4 preceding siblings ...)
2026-06-12 6:07 ` [PATCH i-g-t] " Manasi Navare
@ 2026-08-10 4:50 ` Karthik B S
2026-08-10 9:04 ` Jason-JH Lin (林睿祥)
5 siblings, 1 reply; 11+ messages in thread
From: Karthik B S @ 2026-08-10 4:50 UTC (permalink / raw)
To: Jason-JH Lin, igt-dev, Swati Sharma, Kamil Konieczny,
Ville Syrjala, Fei Shao
Cc: Jani, Paul-PL Chen, Lancelot Wu, Manasi Navare, Gil Dekel, Yacoub,
Project_Global_Chrome_Upstream_Group
Hi Jason-JH,
On 6/8/2026 7:57 AM, Jason-JH Lin wrote:
> The capture_crc() function validates that the CRC frame sequence
> returned by igt_pipe_crc_get_for_frame() matches the expected value.
> The current check uses exact equality (!=), however the library
> function igt_pipe_crc_get_for_frame() uses >= comparison internally:
>
> do {
> read_one_crc(pipe_crc, crc);
> ...
> } while (igt_vblank_before(crc->frame, vblank));
>
> The function loops while crc->frame < vblank, returning the first
> CRC where crc->frame >= expected, not necessarily an exact match.
>
> This strict validation can cause test failures on drivers that
> report CRC entries with frame sequences larger than expected. This
> happens when drivers use internal queuing mechanisms to ensure CRC
> values are correctly correlated with their corresponding frames.
>
> Example without internal queue (continuous CRC reporting):
> - Driver generates CRC entries continuously every frame
> - Frame sequence increments sequentially
> - Test finds exact matches for all expected frames → PASS
>
> Example with internal queue (per-commit CRC reporting):
> - Driver queues CRC and reports with current frame sequence
> - Due to queue processing delay, reported sequence > expected
> - For the last CRC, test adds +1 to expected (per IGT logic)
> - Library's >= comparison returns valid CRC
> - capture_crc's != check fails on last frame → FAIL
>
> Relax the validation to use < comparison instead of !=, which:
> 1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
> 2. Accepts CRC entries with frame >= expected (valid cases)
> 3. Still catches real errors where frame < expected, indicating
> CRC buffer overflow or stale data
>
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
> tests/kms_plane.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> index f21006784bfc..548506290c9b 100644
> --- a/tests/kms_plane.c
> +++ b/tests/kms_plane.c
> @@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned int vblank, igt_crc_t *crc)
> {
> igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc, vblank, crc);
>
> + /*
> + * igt_pipe_crc_get_for_frame uses >= comparison, so we check the same.
> + * Getting a frame < expected indicates CRC buffer overflow or timing issue.
> + */
> igt_fail_on_f(!igt_skip_crc_compare && !igt_run_in_simulation() &&
> - crc->has_valid_frame && crc->frame != vblank,
> - "Got CRC for the wrong frame (got %u, expected %u). CRC buffer overflow?\n",
> + crc->has_valid_frame && crc->frame < vblank,
Agree on the concept, but with that then isn't this check itself
redundant as this has been taken care of already in the
'igt_pipe_crc_get_for_frame'?
static inline bool igt_vblank_before(uint32_t a, uint32_t b)
{
return igt_vblank_after(b, a);
}
Regards,
Karthik.B.S
> + "Got CRC for the wrong frame (got %u, expected >= %u). CRC buffer overflow?\n",
> crc->frame, vblank);
> }
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-08-10 4:50 ` Karthik B S
@ 2026-08-10 9:04 ` Jason-JH Lin (林睿祥)
2026-08-11 21:59 ` Manasi Navare
0 siblings, 1 reply; 11+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-08-10 9:04 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, igt-dev@lists.freedesktop.org,
fshao@chromium.org, karthik.b.s@intel.com,
swati2.sharma@intel.com, kamil.konieczny@linux.intel.com
Cc: Project_Global_Chrome_Upstream_Group, markyacoub@chromium.org,
jani.nikula@intel.com, Paul-pl Chen (陳柏霖),
navaremanasi@google.com, Lancelot Wu (吳瑋晟),
gildekel@google.com
On Mon, 2026-08-10 at 10:20 +0530, Karthik B S wrote:
> Hi Jason-JH,
>
> On 6/8/2026 7:57 AM, Jason-JH Lin wrote:
> > The capture_crc() function validates that the CRC frame sequence
> > returned by igt_pipe_crc_get_for_frame() matches the expected
> > value.
> > The current check uses exact equality (!=), however the library
> > function igt_pipe_crc_get_for_frame() uses >= comparison
> > internally:
> >
> > do {
> > read_one_crc(pipe_crc, crc);
> > ...
> > } while (igt_vblank_before(crc->frame, vblank));
> >
> > The function loops while crc->frame < vblank, returning the first
> > CRC where crc->frame >= expected, not necessarily an exact match.
> >
> > This strict validation can cause test failures on drivers that
> > report CRC entries with frame sequences larger than expected. This
> > happens when drivers use internal queuing mechanisms to ensure CRC
> > values are correctly correlated with their corresponding frames.
> >
> > Example without internal queue (continuous CRC reporting):
> > - Driver generates CRC entries continuously every frame
> > - Frame sequence increments sequentially
> > - Test finds exact matches for all expected frames → PASS
> >
> > Example with internal queue (per-commit CRC reporting):
> > - Driver queues CRC and reports with current frame sequence
> > - Due to queue processing delay, reported sequence > expected
> > - For the last CRC, test adds +1 to expected (per IGT logic)
> > - Library's >= comparison returns valid CRC
> > - capture_crc's != check fails on last frame → FAIL
> >
> > Relax the validation to use < comparison instead of !=, which:
> > 1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
> > 2. Accepts CRC entries with frame >= expected (valid cases)
> > 3. Still catches real errors where frame < expected, indicating
> > CRC buffer overflow or stale data
> >
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> > tests/kms_plane.c | 8 ++++++--
> > 1 file changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> > index f21006784bfc..548506290c9b 100644
> > --- a/tests/kms_plane.c
> > +++ b/tests/kms_plane.c
> > @@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned
> > int vblank, igt_crc_t *crc)
> > {
> > igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc,
> > vblank, crc);
> >
> > + /*
> > + * igt_pipe_crc_get_for_frame uses >= comparison, so we
> > check the same.
> > + * Getting a frame < expected indicates CRC buffer
> > overflow or timing issue.
> > + */
> > igt_fail_on_f(!igt_skip_crc_compare &&
> > !igt_run_in_simulation() &&
> > - crc->has_valid_frame && crc->frame !=
> > vblank,
> > - "Got CRC for the wrong frame (got %u,
> > expected %u). CRC buffer overflow?\n",
> > + crc->has_valid_frame && crc->frame < vblank,
>
> Agree on the concept, but with that then isn't this check itself
> redundant as this has been taken care of already in the
> 'igt_pipe_crc_get_for_frame'?
>
> static inline bool igt_vblank_before(uint32_t a, uint32_t b)
> {
> return igt_vblank_after(b, a);
> }
>
Hi Karthik,
You're right. Since igt_pipe_crc_get_for_frame() internally loops
with igt_vblank_before(crc->frame, vblank), it already guarantees
crc->frame >= vblank upon return. The < vblank check in capture_crc()
would never trigger under normal conditions, making it redundant.
I've removed the entire frame sequence validation in capture_crc()
and will rely on the library's existing guarantee. Will update the
patch accordingly.
Thanks for catching this.
Regards,
Jason-JH Lin
> Regards,
> Karthik.B.S
> > + "Got CRC for the wrong frame (got %u,
> > expected >= %u). CRC buffer overflow?\n",
> > crc->frame, vblank);
> > }
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-08-10 9:04 ` Jason-JH Lin (林睿祥)
@ 2026-08-11 21:59 ` Manasi Navare
2026-08-12 1:36 ` Jason-JH Lin (林睿祥)
0 siblings, 1 reply; 11+ messages in thread
From: Manasi Navare @ 2026-08-11 21:59 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥)
Cc: ville.syrjala@linux.intel.com, igt-dev@lists.freedesktop.org,
fshao@chromium.org, karthik.b.s@intel.com,
swati2.sharma@intel.com, kamil.konieczny@linux.intel.com,
Project_Global_Chrome_Upstream_Group, markyacoub@chromium.org,
jani.nikula@intel.com, Paul-pl Chen (陳柏霖),
Lancelot Wu (吳瑋晟), gildekel@google.com
[-- Attachment #1: Type: text/plain, Size: 4547 bytes --]
Thanks @Karthik B S <karthik.b.s@intel.com> for your review , @Jason-JH Lin
<jason-jh.lin@mediatek.com> please update the patch to address the review
so we can get this landed while we have traction on this from Intel
Regards
Manasi
On Mon, Aug 10, 2026 at 2:04 AM Jason-JH Lin (林睿祥) <
Jason-JH.Lin@mediatek.com> wrote:
> On Mon, 2026-08-10 at 10:20 +0530, Karthik B S wrote:
> > Hi Jason-JH,
> >
> > On 6/8/2026 7:57 AM, Jason-JH Lin wrote:
> > > The capture_crc() function validates that the CRC frame sequence
> > > returned by igt_pipe_crc_get_for_frame() matches the expected
> > > value.
> > > The current check uses exact equality (!=), however the library
> > > function igt_pipe_crc_get_for_frame() uses >= comparison
> > > internally:
> > >
> > > do {
> > > read_one_crc(pipe_crc, crc);
> > > ...
> > > } while (igt_vblank_before(crc->frame, vblank));
> > >
> > > The function loops while crc->frame < vblank, returning the first
> > > CRC where crc->frame >= expected, not necessarily an exact match.
> > >
> > > This strict validation can cause test failures on drivers that
> > > report CRC entries with frame sequences larger than expected. This
> > > happens when drivers use internal queuing mechanisms to ensure CRC
> > > values are correctly correlated with their corresponding frames.
> > >
> > > Example without internal queue (continuous CRC reporting):
> > > - Driver generates CRC entries continuously every frame
> > > - Frame sequence increments sequentially
> > > - Test finds exact matches for all expected frames → PASS
> > >
> > > Example with internal queue (per-commit CRC reporting):
> > > - Driver queues CRC and reports with current frame sequence
> > > - Due to queue processing delay, reported sequence > expected
> > > - For the last CRC, test adds +1 to expected (per IGT logic)
> > > - Library's >= comparison returns valid CRC
> > > - capture_crc's != check fails on last frame → FAIL
> > >
> > > Relax the validation to use < comparison instead of !=, which:
> > > 1. Aligns with igt_pipe_crc_get_for_frame() internal behavior
> > > 2. Accepts CRC entries with frame >= expected (valid cases)
> > > 3. Still catches real errors where frame < expected, indicating
> > > CRC buffer overflow or stale data
> > >
> > > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > > ---
> > > tests/kms_plane.c | 8 ++++++--
> > > 1 file changed, 6 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> > > index f21006784bfc..548506290c9b 100644
> > > --- a/tests/kms_plane.c
> > > +++ b/tests/kms_plane.c
> > > @@ -766,9 +766,13 @@ static void capture_crc(data_t *data, unsigned
> > > int vblank, igt_crc_t *crc)
> > > {
> > > igt_pipe_crc_get_for_frame(data->drm_fd, data->pipe_crc,
> > > vblank, crc);
> > >
> > > + /*
> > > + * igt_pipe_crc_get_for_frame uses >= comparison, so we
> > > check the same.
> > > + * Getting a frame < expected indicates CRC buffer
> > > overflow or timing issue.
> > > + */
> > > igt_fail_on_f(!igt_skip_crc_compare &&
> > > !igt_run_in_simulation() &&
> > > - crc->has_valid_frame && crc->frame !=
> > > vblank,
> > > - "Got CRC for the wrong frame (got %u,
> > > expected %u). CRC buffer overflow?\n",
> > > + crc->has_valid_frame && crc->frame < vblank,
> >
> > Agree on the concept, but with that then isn't this check itself
> > redundant as this has been taken care of already in the
> > 'igt_pipe_crc_get_for_frame'?
> >
> > static inline bool igt_vblank_before(uint32_t a, uint32_t b)
> > {
> > return igt_vblank_after(b, a);
> > }
> >
>
> Hi Karthik,
>
> You're right. Since igt_pipe_crc_get_for_frame() internally loops
> with igt_vblank_before(crc->frame, vblank), it already guarantees
> crc->frame >= vblank upon return. The < vblank check in capture_crc()
> would never trigger under normal conditions, making it redundant.
>
> I've removed the entire frame sequence validation in capture_crc()
> and will rely on the library's existing guarantee. Will update the
> patch accordingly.
>
> Thanks for catching this.
>
> Regards,
> Jason-JH Lin
>
>
> > Regards,
> > Karthik.B.S
> > > + "Got CRC for the wrong frame (got %u,
> > > expected >= %u). CRC buffer overflow?\n",
> > > crc->frame, vblank);
> > > }
> > >
>
>
[-- Attachment #2: Type: text/html, Size: 6100 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation
2026-08-11 21:59 ` Manasi Navare
@ 2026-08-12 1:36 ` Jason-JH Lin (林睿祥)
0 siblings, 0 replies; 11+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-08-12 1:36 UTC (permalink / raw)
To: navaremanasi@google.com
Cc: karthik.b.s@intel.com, swati2.sharma@intel.com,
markyacoub@chromium.org, ville.syrjala@linux.intel.com,
Project_Global_Chrome_Upstream_Group, jani.nikula@intel.com,
gildekel@google.com, igt-dev@lists.freedesktop.org,
Paul-pl Chen (陳柏霖),
kamil.konieczny@linux.intel.com,
Lancelot Wu (吳瑋晟), fshao@chromium.org
On Tue, 2026-08-11 at 14:59 -0700, Manasi Navare wrote:
> Thanks @Karthik B S for your review , @Jason-JH Lin please update
> the patch to address the review so we can get this landed while we
> have traction on this from Intel
>
OK, I've already sent it.
https://patchwork.freedesktop.org/patch/745698/?series=172015&rev=1
Regards,
Jason-JH Lin
> Regards
> Manasi
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-08-12 1:37 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-08 2:27 [PATCH i-g-t] tests/kms_plane: Relax CRC frame sequence validation Jason-JH Lin
2026-06-08 5:08 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-06-08 5:16 ` ✓ i915.CI.BAT: " Patchwork
2026-06-08 10:33 ` ✗ i915.CI.Full: failure " Patchwork
2026-06-08 12:48 ` ✓ Xe.CI.FULL: success " Patchwork
2026-06-12 6:07 ` [PATCH i-g-t] " Manasi Navare
2026-07-24 11:48 ` Jason-JH Lin (林睿祥)
2026-08-10 4:50 ` Karthik B S
2026-08-10 9:04 ` Jason-JH Lin (林睿祥)
2026-08-11 21:59 ` Manasi Navare
2026-08-12 1:36 ` Jason-JH Lin (林睿祥)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox