* [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
@ 2026-08-31 20:44 Matt Roper
2026-09-01 21:18 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Matt Roper @ 2026-08-31 20:44 UTC (permalink / raw)
To: igt-dev; +Cc: matthew.d.roper
stash_gt_freq() malloc's arrays based on the number of GTs returned by
the kernel's query ioctl and then indexes into the arrays by uapi GT ID.
This works fine if all GT IDs are consecutive (which is always the case
on platforms today), but will be insufficient if future platforms allow
the list to contain non-consecutive IDs (e.g., 0, 2, ...). Allocate
storage based on the maximum GT ID returned, not the number of GTs
returned. Some of the array indices will remain unused, but the
xe_for_each_gt() loops will already skip over those unused entries
properly.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
tests/intel/xe_pmu.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
index a8ceac46c..ea8950ee5 100644
--- a/tests/intel/xe_pmu.c
+++ b/tests/intel/xe_pmu.c
@@ -1039,12 +1039,12 @@ static void unprovision_and_disable_vfs(int fd)
static void stash_gt_freq(int fd, uint32_t **stash_min, uint32_t **stash_max)
{
- int num_gts, gt;
+ int max_gt, gt;
- num_gts = xe_number_gt(fd);
+ max_gt = xe_dev_max_gt(fd);
- *stash_min = (uint32_t *) malloc(sizeof(uint32_t) * num_gts);
- *stash_max = (uint32_t *) malloc(sizeof(uint32_t) * num_gts);
+ *stash_min = (uint32_t *)calloc(max_gt + 1, sizeof(uint32_t));
+ *stash_max = (uint32_t *)calloc(max_gt + 1, sizeof(uint32_t));
igt_skip_on(*stash_min == NULL || *stash_max == NULL);
--
2.55.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
2026-08-31 20:44 [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage Matt Roper
@ 2026-09-01 21:18 ` Patchwork
2026-09-01 21:20 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-01 21:18 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1995 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
URL : https://patchwork.freedesktop.org/series/173093/
State : success
== Summary ==
CI Bug Log - changes from IGT_9079 -> IGTPW_15762
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/index.html
Participating hosts (37 -> 36)
------------------------------
Missing (1): bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_15762 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9079/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-rpls-4: [DMESG-WARN][3] ([i915#13400]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9079/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9079 -> IGTPW_15762
* Linux: CI_DRM_19066 -> CI_DRM_19068
CI-20190529: 20190529
CI_DRM_19066: b8f17b16c0f8638b9df4f090511e3ae97210eb77 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_19068: 97649417ea562630ab357dbea25f153a654b61c6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15762: 0f509951c9c45e609662715ce2e39c8f511ce563 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/index.html
[-- Attachment #2: Type: text/html, Size: 2698 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
2026-08-31 20:44 [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage Matt Roper
2026-09-01 21:18 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-09-01 21:20 ` Patchwork
2026-09-02 9:49 ` ✗ i915.CI.Full: failure " Patchwork
2026-09-02 10:06 ` ✗ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-01 21:20 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5030 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
URL : https://patchwork.freedesktop.org/series/173093/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9079_BAT -> XEIGTPW_15762_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15762_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* IGT: IGT_9079 -> IGTPW_15762
* Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5670-97649417ea562630ab357dbea25f153a654b61c6
IGTPW_15762: 0f509951c9c45e609662715ce2e39c8f511ce563 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77
xe-5670-97649417ea562630ab357dbea25f153a654b61c6: 97649417ea562630ab357dbea25f153a654b61c6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/index.html
[-- Attachment #2: Type: text/html, Size: 5953 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
2026-08-31 20:44 [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage Matt Roper
2026-09-01 21:18 ` ✓ i915.CI.BAT: success for " Patchwork
2026-09-01 21:20 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-02 9:49 ` Patchwork
2026-09-02 10:06 ` ✗ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-02 9:49 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 146778 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
URL : https://patchwork.freedesktop.org/series/173093/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_19068_full -> IGTPW_15762_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15762_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15762_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_15762/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_15762_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_schedule@preemptive-hang:
- shard-tglu: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-4/igt@gem_exec_schedule@preemptive-hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-8/igt@gem_exec_schedule@preemptive-hang.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [ABORT][5] +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][6] -> [ABORT][7] +1 other test abort
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-2.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-2.html
Known issues
------------
Here are the changes found in IGTPW_15762_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@fbdev@pan:
- shard-snb: NOTRUN -> [FAIL][9] ([i915#15792])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-snb6/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#3281]) +17 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356] / [i915#16348]) +1 other test incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_freq@sysfs:
- shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#16505] / [i915#9561]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-5/igt@gem_ctx_freq@sysfs.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#13356] / [i915#16466]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-snb7/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [ABORT][26] ([i915#16837])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@gem_exec_flush@basic-wb-rw-before-default.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@larger-than-life-batch:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#16871])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_exec_params@larger-than-life-batch.html
- shard-tglu: [PASS][36] -> [SKIP][37] ([i915#16871])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-10/igt@gem_exec_params@larger-than-life-batch.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@gem_exec_params@larger-than-life-batch.html
* igt@gem_exec_reloc@basic-active:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3281])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#2190])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#284])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@gem_mmap_wc@coherency.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-1/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][65] ([i915#2658]) +1 other test warn
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-snb7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#13398])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#13717])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4079])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][75] -> [ABORT][76] ([i915#15152])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#15479]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu-1: NOTRUN -> [ABORT][84] ([i915#15342]) +1 other test abort
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#8399]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][86] -> [FAIL][87] ([i915#12964]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#15365])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-6/igt@i915_pm_rps@waitboost.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@i915_pm_rps@waitboost.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#4387])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6188])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6188])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#16109])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#16109])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#16079])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#5723])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][97] ([i915#4817] / [i915#7443])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: NOTRUN -> [INCOMPLETE][98] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#16182] / [i915#4817]) +1 other test incomplete
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk5/igt@i915_suspend@forcewake.html
- shard-rkl: [PASS][100] -> [INCOMPLETE][101] ([i915#4817])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@i915_suspend@forcewake.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#7707])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#14544] / [i915#9531])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][104] ([i915#1769])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][110] +10 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3638]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3828]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3828])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#3828])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][116] +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#14544] / [i915#3638])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk11: NOTRUN -> [SKIP][118] +13 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +63 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][122] +198 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#14544] / [i915#6095]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +99 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/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-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#12313])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12805])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#12805])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +44 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#6095]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][136] -> [INCOMPLETE][137] ([i915#15582])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#6095]) +49 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#15582]) +1 other test incomplete
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +203 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +87 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3742])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3742])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3742])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#16471])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#16471]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#16471]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +9 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +6 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#14544] / [i915#7828])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#9979])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#15865]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3116] / [i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#15330])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#15330])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15330]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#15330])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#15330])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#15865]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#15865]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#15865])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#15865])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15865])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#15865])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][170] ([i915#13566]) +2 other tests fail
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][171] -> [FAIL][172] ([i915#13566]) +1 other test fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3555]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#13049]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3555]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#13049])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#13049]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13049])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][182] ([i915#13566]) +3 other tests fail
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#9809]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#4103])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#13046] / [i915#5354]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][187] +41 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#9067])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#9723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#9723]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#13691])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3804])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555] / [i915#3804])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3804])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#13749])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13748])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#13748])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#16867])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
* igt@kms_draw_crc@draw-method-render:
- shard-dg1: [PASS][201] -> [DMESG-WARN][202] ([i915#4423]) +1 other test dmesg-warn
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-19/igt@kms_draw_crc@draw-method-render.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@kms_draw_crc@draw-method-render.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#16361]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#16361]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#16361]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#16361]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#16361]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#16361])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][209] ([i915#9878])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#16680])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#16680])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#16680])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#16680]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#16084])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#16081])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#658])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#658])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_feature_discovery@vrr:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#16600])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_feature_discovery@vrr.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#16600])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_feature_discovery@vrr.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#16600])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#9934]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +10 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#9934])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +10 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][228] ([i915#12745] / [i915#4839])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][229] ([i915#12745])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-tglu: [PASS][230] -> [ABORT][231] ([i915#16876])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a1:
- shard-tglu: [PASS][232] -> [ABORT][233] ([i915#16876] / [i915#16881])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a1.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15643]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15643]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#15643]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#15643])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15643] / [i915#5190])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#15643]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8813])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8810] / [i915#8813])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15990] / [i915#8708]) +6 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][243] +78 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#1825]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][245] ([i915#10056] / [i915#16593])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][246] -> [SKIP][247] ([i915#15989]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#15989]) +27 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15990]) +6 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15989]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15991]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-stridechange:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15989]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#15989]) +23 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15102]) +36 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#14544] / [i915#15102]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15991] / [i915#1825]) +8 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#15990] / [i915#8708]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#15990] / [i915#8708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#14544]) +8 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][260] +121 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#5439])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#15989]) +12 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#15102]) +22 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#15990]) +18 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#5439])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move:
- shard-glk: [PASS][266] -> [SKIP][267] +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#15989]) +17 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15104] / [i915#15990])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#15104] / [i915#15990])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15104] / [i915#15990])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#1825])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15991] / [i915#5354]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#15102]) +10 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15102]) +53 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15102]) +57 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][277] +119 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15991]) +10 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15990]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#13030])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [PASS][282] -> [INCOMPLETE][283] ([i915#15436])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#1187] / [i915#12713] / [i915#16490])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#12713] / [i915#16518])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#12713] / [i915#16644])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12713])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#1187] / [i915#12713])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#16518] / [i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_hdr@invalid-hdr.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#16644] / [i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#15459])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#15459])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15459])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15458])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#15638] / [i915#15722])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#6301]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-untiled:
- shard-glk: NOTRUN -> [DMESG-FAIL][299] ([i915#118])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk1/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#14712]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#14712])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#14712])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#14712])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#14712])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-18/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-glk: NOTRUN -> [DMESG-WARN][305] ([i915#118])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15709]) +6 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#15709]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-6/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@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#16386]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15709]) +6 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#15709]) +6 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#16386]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#15709]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#15709]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#16386]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#16386]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#16386]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#16112])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][318] ([i915#10647] / [i915#12169]) +1 other test fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][319] ([i915#10647]) +3 other tests fail
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#13958]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-x:
- shard-tglu: [PASS][321] -> [ABORT][322] ([i915#16844]) +1 other test abort
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-10/igt@kms_plane_multiple@tiling-x.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_plane_multiple@tiling-x.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#14259])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#6953])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#15329]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#15329]) +3 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#15329]) +4 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#15329]) +9 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#12343] / [i915#5354]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#12343] / [i915#9812])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#12343])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-dpms-suspend-resume:
- shard-rkl: NOTRUN -> [INCOMPLETE][332] ([i915#16943])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_pm_dc@dc5-dpms-suspend-resume.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#9685])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#9685])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#9685])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#9685])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#15948])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#15948])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#15948])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#15948])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#15739])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#15739])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#8430])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#15073])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [PASS][345] -> [SKIP][346] ([i915#15073])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_pm_rpm@dpms-non-lpsp.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#15073]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#15073])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#4077]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][350] -> [INCOMPLETE][351] ([i915#14419])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#6524])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#11520]) +9 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][354] ([i915#11520]) +9 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +4 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#11520]) +7 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][357] ([i915#11520]) +9 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#11520] / [i915#14544])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#11520]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][360] ([i915#11520]) +5 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk11: NOTRUN -> [SKIP][361] ([i915#11520]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#9683])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9683])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#9683])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4348])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +3 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +15 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][368] +698 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk2/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +6 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9732]) +16 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-sprite-blt:
- shard-snb: NOTRUN -> [SKIP][371] +638 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-snb5/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +20 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#9732]) +10 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#15949])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][375] ([i915#15492] / [i915#16184])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk9/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#14544] / [i915#5289])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#15867] / [i915#5190])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12755] / [i915#15867])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#5289]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#5289])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#8623])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][382] ([i915#12276]) +1 other test incomplete
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#15243] / [i915#3555])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-6/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8808])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#15243] / [i915#3555]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#9906])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#3555] / [i915#9906])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#9906])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#9906]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#8808] / [i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [PASS][392] -> [FAIL][393] ([i915#4349]) +4 other tests fail
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#14121]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-1/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][395] ([i915#14121]) +1 other test skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#14121]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl@share-import:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#16420]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@prime_udl@share-import.html
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#16420])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-1/igt@prime_udl@share-import.html
- shard-dg1: NOTRUN -> [SKIP][399] ([i915#16420])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@prime_udl@share-import.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#3708] / [i915#4077]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-6/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#3708] / [i915#4077]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-8/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][402] ([i915#3708] / [i915#4077]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#3708]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#4818])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#4818])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#4818])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][407] ([i915#15871]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-5/igt@gem_exec_big@single.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-7/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [INCOMPLETE][409] ([i915#13356]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: [SKIP][411] ([i915#4270]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@gem_pxp@create-regular-buffer.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@gem_pxp@create-regular-buffer.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [INCOMPLETE][413] ([i915#13356] / [i915#14586]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [ABORT][415] ([i915#15131]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-1/igt@i915_suspend@fence-restore-untiled.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
- shard-glk: [INCOMPLETE][417] ([i915#16182] / [i915#4817]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk9/igt@i915_suspend@fence-restore-untiled.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk6/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][419] ([i915#15726]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-1/igt@kms_3d@basic.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-3/igt@kms_3d@basic.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-glk: [FAIL][421] ([i915#14888]) -> [PASS][422] +1 other test pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1:
- shard-tglu: [ABORT][423] ([i915#16837] / [i915#16844] / [i915#16857]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][425] ([i915#15733] / [i915#5138]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg1: [DMESG-WARN][427] ([i915#4423]) -> [PASS][428] +2 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-16/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][429] ([i915#13566]) -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][431] ([i915#13566]) -> [PASS][432] +2 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-dg1: [DMESG-WARN][433] -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-12/igt@kms_cursor_edge_walk@256x256-top-edge.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-15/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-tglu: [ABORT][435] ([i915#16876]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1:
- shard-tglu: [ABORT][437] ([i915#16857] / [i915#16876]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-10/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][439] ([i915#16276] / [i915#6113]) -> [PASS][440]
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][441] ([i915#15989]) -> [PASS][442] +4 other tests pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render:
- shard-glk: [SKIP][443] -> [PASS][444] +6 other tests pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][445] ([i915#15725]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_lowres@tiling-none:
- shard-rkl: [ABORT][447] ([i915#16879]) -> [PASS][448]
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_plane_lowres@tiling-none.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][449] ([i915#15073]) -> [PASS][450]
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][451] ([i915#15073]) -> [PASS][452] +1 other test pass
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [INCOMPLETE][453] ([i915#10553]) -> [PASS][454]
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-rkl: [ABORT][455] ([i915#15132]) -> [PASS][456]
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [INCOMPLETE][457] ([i915#12276]) -> [PASS][458]
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][459] ([i915#4349]) -> [PASS][460] +5 other tests pass
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-6/igt@perf_pmu@busy-double-start@vcs1.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][461] ([i915#11078] / [i915#14544]) -> [SKIP][462] ([i915#11078])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#280]) -> [SKIP][464] ([i915#280])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: [SKIP][465] ([i915#3281]) -> [SKIP][466] ([i915#14544] / [i915#3281]) +2 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#3281]) -> [SKIP][468] ([i915#3281]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][469] ([i915#4613]) -> [SKIP][470] ([i915#14544] / [i915#4613])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][471] ([i915#14544] / [i915#284]) -> [SKIP][472] ([i915#284])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_media_vme.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][473] ([i915#3282]) -> [SKIP][474] ([i915#14544] / [i915#3282]) +1 other test skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3282]) -> [SKIP][476] ([i915#3282]) +2 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_pread@snoop.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@gem_pread@snoop.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][477] ([i915#3297]) -> [SKIP][478] ([i915#14544] / [i915#3297])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#2527]) -> [SKIP][480] ([i915#2527]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][481] ([i915#14544] / [i915#8399]) -> [SKIP][482] ([i915#8399])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][483] ([i915#8399]) -> [SKIP][484] ([i915#14544] / [i915#8399])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: [SKIP][485] ([i915#16079]) -> [SKIP][486] ([i915#14544] / [i915#16079])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@i915_query@query-topology-unsupported.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#5723]) -> [SKIP][488] ([i915#5723])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][489] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][490] ([i915#12454] / [i915#12712])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][491] ([i915#5286]) -> [SKIP][492] ([i915#14544] / [i915#5286]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#5286]) -> [SKIP][494] ([i915#5286])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][495] ([i915#3638]) -> [SKIP][496] ([i915#14544] / [i915#3638])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#3638]) -> [SKIP][498] ([i915#3638])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][499] ([i915#14544]) -> [SKIP][500] +35 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][501] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][502] ([i915#14098] / [i915#6095]) +6 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][503] ([i915#14098] / [i915#6095]) -> [SKIP][504] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][505] ([i915#6095]) -> [SKIP][506] ([i915#14544] / [i915#6095]) +3 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#6095]) -> [SKIP][508] ([i915#6095]) +5 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#16471]) -> [SKIP][510] ([i915#16471])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-rkl: [SKIP][511] ([i915#16471]) -> [SKIP][512] ([i915#14544] / [i915#16471])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-rkl: [SKIP][513] ([i915#11151] / [i915#7828]) -> [SKIP][514] ([i915#11151] / [i915#14544] / [i915#7828])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][515] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][516] ([i915#11151] / [i915#7828]) +3 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#15865]) -> [SKIP][518] ([i915#15865]) +1 other test skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][519] ([i915#13049] / [i915#14544]) -> [SKIP][520] ([i915#13049])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#3555]) -> [SKIP][522] ([i915#3555]) +2 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: [SKIP][523] ([i915#13049]) -> [SKIP][524] ([i915#13049] / [i915#14544])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][525] ([i915#15768]) -> [FAIL][526] ([i915#15804])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][527] ([i915#4103]) -> [SKIP][528] ([i915#14544] / [i915#4103])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#16361]) -> [SKIP][530] ([i915#16361]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-dg1: [SKIP][531] ([i915#16361] / [i915#4423]) -> [SKIP][532] ([i915#16361])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
- shard-rkl: [SKIP][533] ([i915#16361]) -> [SKIP][534] ([i915#14544] / [i915#16361])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][535] ([i915#16081]) -> [SKIP][536] ([i915#14544] / [i915#16081])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][537] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][538] ([i915#12745] / [i915#4839])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][539] ([i915#14544] / [i915#9934]) -> [SKIP][540] ([i915#9934]) +1 other test skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][541] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][542] ([i915#12745] / [i915#4839])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk5/igt@kms_flip@flip-vs-suspend.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][543] ([i915#12314] / [i915#12745] / [i915#6113]) -> [INCOMPLETE][544] ([i915#12745])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-rkl: [SKIP][545] ([i915#14544] / [i915#15643]) -> [SKIP][546] ([i915#15643])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][547] ([i915#1825]) -> [SKIP][548] ([i915#14544] / [i915#1825]) +2 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][549] ([i915#15102]) -> [SKIP][550] ([i915#14544] / [i915#15102]) +10 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][551] ([i915#14544] / [i915#15102]) -> [SKIP][552] ([i915#15102]) +14 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][553] -> [SKIP][554] ([i915#14544]) +12 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][555] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][556] ([i915#15990] / [i915#8708])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][557] ([i915#14544] / [i915#1825]) -> [SKIP][558] ([i915#1825])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][559] ([i915#14544] / [i915#15460]) -> [SKIP][560] ([i915#15460])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][561] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][562] ([i915#15638] / [i915#15722])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][563] ([i915#15709]) -> [SKIP][564] ([i915#14544] / [i915#15709]) +1 other test skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][565] ([i915#16479]) -> [SKIP][566] ([i915#15128])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][567] ([i915#14544] / [i915#9340]) -> [SKIP][568] ([i915#9340])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][569] ([i915#14544] / [i915#15073]) -> [SKIP][570] ([i915#15073])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pm-tiling:
- shard-dg1: [SKIP][571] ([i915#4077] / [i915#4423]) -> [SKIP][572] ([i915#4077])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-13/igt@kms_pm_rpm@pm-tiling.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-19/igt@kms_pm_rpm@pm-tiling.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][573] ([i915#6524]) -> [SKIP][574] ([i915#14544] / [i915#6524])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][575] ([i915#11520] / [i915#14544]) -> [SKIP][576] ([i915#11520]) +3 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][577] ([i915#11520]) -> [SKIP][578] ([i915#11520] / [i915#14544])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][579] ([i915#1072] / [i915#9732]) -> [SKIP][580] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: [SKIP][581] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][582] ([i915#1072] / [i915#9732]) +7 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-rkl-7/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-primary-render:
- shard-dg1: [SKIP][583] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][584] ([i915#1072] / [i915#9732])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-13/igt@kms_psr@psr2-primary-render.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/shard-dg1-14/igt@kms_psr@psr2-primary-render.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[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#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[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#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[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#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16505
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837
[i915#16844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16844
[i915#16857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16857
[i915#16867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16867
[i915#16871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16871
[i915#16876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16876
[i915#16879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16879
[i915#16881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16881
[i915#16943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16943
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[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#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9079 -> IGTPW_15762
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_19068: 97649417ea562630ab357dbea25f153a654b61c6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15762: 0f509951c9c45e609662715ce2e39c8f511ce563 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15762/index.html
[-- Attachment #2: Type: text/html, Size: 193774 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
2026-08-31 20:44 [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage Matt Roper
` (2 preceding siblings ...)
2026-09-02 9:49 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-09-02 10:06 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-09-02 10:06 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30228 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage
URL : https://patchwork.freedesktop.org/series/173093/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9079_FULL -> XEIGTPW_15762_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15762_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15762_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15762_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_rpm@system-suspend-idle:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-1/igt@kms_pm_rpm@system-suspend-idle.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-2/igt@kms_pm_rpm@system-suspend-idle.html
#### Warnings ####
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [FAIL][3] ([Intel XE#7949]) -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-6/igt@kms_fbcon_fbt@psr-suspend.html
Known issues
------------
Here are the changes found in XEIGTPW_15762_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2328] / [Intel XE#7367])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610] / [Intel XE#7387])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-1-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +11 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7358])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#7809])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2286] / [Intel XE#6035])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#8265]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#8680])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2373] / [Intel XE#7448])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2374] / [Intel XE#6127])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-9/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2374] / [Intel XE#6128])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][28] -> [FAIL][29] ([Intel XE#3149] / [Intel XE#3321]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#301])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4141]) +12 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +48 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7399]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +53 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#7308])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8303]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7283]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2393])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5020] / [Intel XE#7348])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-framegap:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-framegap.html
* igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8396]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7794])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#8399])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6814] / [Intel XE#7428])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1489]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2330] / [Intel XE#5813])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6503]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@sriov_basic@pf-unbind-with-vf-probed:
- shard-bmg: NOTRUN -> [ABORT][59] ([Intel XE#8868])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@sriov_basic@pf-unbind-with-vf-probed.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#8374]) +14 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#8364]) +26 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8369]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8378]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6964]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7793]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-5/igt@xe_page_reclaim@boundary-split.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1420] / [Intel XE#7590])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#944]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#6569])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#7992]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- shard-bmg: [FAIL][74] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][75] +1 other test pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-bmg: [FAIL][76] ([Intel XE#3098]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][78] ([Intel XE#301]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][80] ([Intel XE#9093]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][82] ([Intel XE#8399]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][84] ([Intel XE#7992]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_reset@gt-stress-reset-bo-invalidation:
- shard-bmg: [DMESG-WARN][86] ([Intel XE#8649] / [Intel XE#8652]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_exec_reset@gt-stress-reset-bo-invalidation.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-8/igt@xe_exec_reset@gt-stress-reset-bo-invalidation.html
* igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck:
- shard-bmg: [INCOMPLETE][88] ([Intel XE#8159]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [ABORT][90] ([Intel XE#9101]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-8/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@xe_wedged@basic-wedged:
- shard-bmg: [ABORT][92] ([Intel XE#8591] / [Intel XE#8963]) -> [DMESG-WARN][93] ([Intel XE#8963])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_wedged@basic-wedged.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/shard-bmg-4/igt@xe_wedged@basic-wedged.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[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#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[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#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8649
[Intel XE#8652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8652
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093
[Intel XE#9101]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9101
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9079 -> IGTPW_15762
* Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5670-97649417ea562630ab357dbea25f153a654b61c6
IGTPW_15762: 0f509951c9c45e609662715ce2e39c8f511ce563 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77
xe-5670-97649417ea562630ab357dbea25f153a654b61c6: 97649417ea562630ab357dbea25f153a654b61c6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15762/index.html
[-- Attachment #2: Type: text/html, Size: 32961 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-02 10:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-31 20:44 [PATCH i-g-t] tests/intel/xe_pmu: Ensure stash_gt_freq allocates sufficient storage Matt Roper
2026-09-01 21:18 ` ✓ i915.CI.BAT: success for " Patchwork
2026-09-01 21:20 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-02 9:49 ` ✗ i915.CI.Full: failure " Patchwork
2026-09-02 10:06 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox