* [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
@ 2026-03-16 18:36 Austin Hu
2026-03-17 12:52 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Austin Hu @ 2026-03-16 18:36 UTC (permalink / raw)
To: igt-dev; +Cc: chris
This app is out of date as it opens i915 DRM device to just dump
the "main" frame buffer connected to a CRTC.
So improve it to support Xe driver as well, and dump all the frame
buffers attached to active Planes (including Cursor) of each CRTC
with igt_fb API.
Signed-off-by: Austin Hu <austin.hu@intel.com>
---
tools/intel_framebuffer_dump.c | 137 +++++++++++++++++++--------------
1 file changed, 81 insertions(+), 56 deletions(-)
diff --git a/tools/intel_framebuffer_dump.c b/tools/intel_framebuffer_dump.c
index 79c0688b1..907c65a14 100644
--- a/tools/intel_framebuffer_dump.c
+++ b/tools/intel_framebuffer_dump.c
@@ -36,75 +36,100 @@
#include "intel_io.h"
#include "drmtest.h"
+#include "igt_fb.h"
-int main(int argc, char **argv)
+static void dump_frame_buffer(int fd, uint32_t crtc_id, uint32_t fb_id)
{
- drmModeResPtr res;
- int fd, n;
+ drmModeFB2Ptr fb = drmModeGetFB2(fd, fb_id);
+
+ if (fb == NULL)
+ return;
+
+ /* Wrap drmModeFB2Ptr object into the igt_fb one. */
+ struct igt_fb igt_fb;
+
+ igt_init_fb(&igt_fb, fd, fb->width, fb->height,
+ fb->pixel_format, fb->modifier,
+ IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE);
+
+ /* Update more attributes of the igt_fb object. */
+ igt_calc_fb_size(&igt_fb);
+
+ /* Import the GEM handle from drmModeFB2Ptr object into igt_fb object. */
+ igt_fb.gem_handle = fb->handles[0];
+
+ /* Dump the framebuffer contents with igt_fb and Cairo APIs. */
+ /* Note: the FB memory layout may be non-linear (like X/Y-Major Tile). */
+ cairo_surface_t *surface = igt_get_cairo_surface(fd, &igt_fb);
+
+ if (surface != NULL) {
+ char name[80];
- fd = drmOpen("i915", NULL);
+ snprintf(name, sizeof(name), "crtc-%d-fb-%d.png", crtc_id, fb->fb_id);
+ cairo_surface_write_to_png(surface, name);
+ fprintf(stdout, "Framebuffer dumped to %s\n", name);
+
+ cairo_surface_destroy(surface);
+ }
+
+ drmModeFreeFB2(fb);
+}
+
+int main(int argc, char **argv)
+{
+ int fd = drm_open_driver(DRIVER_INTEL | DRIVER_XE);
if (fd < 0)
- return ENOENT;
+ return -ENOENT;
- res = drmModeGetResources(fd);
- if (res == NULL)
- return ENOMEM;
+ /* To enumerate DRM Plane attached to cursor frame buffer. */
+ drmSetClientCap(fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
- for (n = 0; n < res->count_crtcs; n++) {
- struct drm_gem_open open_arg;
- struct drm_gem_flink flink;
- drmModeCrtcPtr crtc;
- drmModeFBPtr fb;
+ drmModeResPtr res = drmModeGetResources(fd);
- crtc = drmModeGetCrtc(fd, res->crtcs[n]);
- if (crtc == NULL)
- continue;
+ if (res == NULL) {
+ close(fd);
+ return -ENOMEM;
+ }
- fb = drmModeGetFB(fd, crtc->buffer_id);
- drmModeFreeCrtc(crtc);
- if (fb == NULL)
- continue;
+ drmModePlaneResPtr pres = drmModeGetPlaneResources(fd);
- flink.handle = fb->handle;
- if (drmIoctl(fd, DRM_IOCTL_GEM_FLINK, &flink)) {
- drmModeFreeFB(fb);
+ if (pres == NULL) {
+ drmModeFreeResources(res);
+ close(fd);
+ return -ENOMEM;
+ }
+
+ /* Iterate CRTCs. */
+ for (int c = 0; c < res->count_crtcs; c++) {
+ uint32_t cid = res->crtcs[c];
+ drmModeCrtcPtr crtc = drmModeGetCrtc(fd, cid);
+
+ if ((crtc == NULL) || (crtc->buffer_id == 0))
continue;
- }
- open_arg.name = flink.name;
- if (drmIoctl(fd, DRM_IOCTL_GEM_OPEN, &open_arg) == 0) {
- struct drm_i915_gem_mmap_gtt mmap_arg;
- void *ptr;
-
- mmap_arg.handle = open_arg.handle;
- if (drmIoctl(fd, DRM_IOCTL_I915_GEM_MMAP_GTT, &mmap_arg) == 0 &&
- (ptr = mmap(0, open_arg.size, PROT_READ, MAP_SHARED, fd, mmap_arg.offset)) != (void *)-1) {
- cairo_surface_t *surface;
- cairo_format_t format;
- char name[80];
-
- snprintf(name, sizeof(name), "fb-%d.png", fb->fb_id);
-
- switch (fb->depth) {
- case 16: format = CAIRO_FORMAT_RGB16_565; break;
- case 24: format = CAIRO_FORMAT_RGB24; break;
- case 30: format = CAIRO_FORMAT_RGB30; break;
- case 32: format = CAIRO_FORMAT_ARGB32; break;
- default: format = CAIRO_FORMAT_INVALID; break;
- }
-
- surface = cairo_image_surface_create_for_data(ptr, format,
- fb->width, fb->height, fb->pitch);
- cairo_surface_write_to_png(surface, name);
- cairo_surface_destroy(surface);
-
- munmap(ptr, open_arg.size);
- }
- drmIoctl(fd, DRM_IOCTL_GEM_CLOSE, &open_arg.handle);
- }
+ /* Dump the 'main' frame buffer attached to this CRTC. */
+ dump_frame_buffer(fd, cid, crtc->buffer_id);
+
+ /* Iterate and dump other FBs of Planes attached to this CRTC. */
+ for (int p = 0; p < pres->count_planes; p++) {
+ uint32_t pid = pres->planes[p];
+ drmModePlanePtr pl = drmModeGetPlane(fd, pid);
+
+ if (!pl)
+ continue;
+
+ if ((pl->crtc_id == cid) && (pl->fb_id != 0) &&
+ (pl->fb_id != crtc->buffer_id))
+ dump_frame_buffer(fd, cid, pl->fb_id);
- drmModeFreeFB(fb);
+ drmModeFreePlane(pl);
+ }
+ drmModeFreeCrtc(crtc);
}
+ drmModeFreePlaneResources(pres);
+ drmModeFreeResources(res);
+ close(fd);
+
return 0;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
2026-03-16 18:36 [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API Austin Hu
@ 2026-03-17 12:52 ` Patchwork
2026-03-17 14:05 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-17 12:52 UTC (permalink / raw)
To: Austin Hu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1949 bytes --]
== Series Details ==
Series: tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
URL : https://patchwork.freedesktop.org/series/163311/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8806_BAT -> XEIGTPW_14784_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14784_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14784
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0
IGTPW_14784: 14784
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/index.html
[-- Attachment #2: Type: text/html, Size: 2623 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
2026-03-16 18:36 [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API Austin Hu
2026-03-17 12:52 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-17 14:05 ` Patchwork
2026-03-18 15:20 ` ✓ i915.CI.Full: " Patchwork
2026-03-18 20:50 ` ✓ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-17 14:05 UTC (permalink / raw)
To: Austin Hu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3828 bytes --]
== Series Details ==
Series: tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
URL : https://patchwork.freedesktop.org/series/163311/
State : success
== Summary ==
CI Bug Log - changes from IGT_8806 -> IGTPW_14784
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14784 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +80 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-arls-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8806 -> IGTPW_14784
* Linux: CI_DRM_18160 -> CI_DRM_18163
CI-20190529: 20190529
CI_DRM_18160: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18163: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14784: 14784
IGT_8806: 8806
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/index.html
[-- Attachment #2: Type: text/html, Size: 4939 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.Full: success for tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
2026-03-16 18:36 [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API Austin Hu
2026-03-17 12:52 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-17 14:05 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-18 15:20 ` Patchwork
2026-03-18 20:50 ` ✓ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-18 15:20 UTC (permalink / raw)
To: Austin Hu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 132205 bytes --]
== Series Details ==
Series: tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
URL : https://patchwork.freedesktop.org/series/163311/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18163_full -> IGTPW_14784_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14784_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#3281]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][14] -> [FAIL][15] ([i915#9561]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][16] ([i915#13356]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-17/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][34] -> [INCOMPLETE][35] ([i915#13356]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [PASS][36] -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [PASS][38] -> [ABORT][39] ([i915#7975]) +1 other test abort
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#2190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk3/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg1: [PASS][48] -> [FAIL][49] ([i915#15734])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@gem_lmem_swapping@smem-oom.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-13/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][50] -> [CRASH][51] ([i915#5493])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-3/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@gem_mmap_wc@write-read.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-7/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][60] ([i915#14702] / [i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: [PASS][63] -> [SKIP][64] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-6/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#15657])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@gem_tiled_pread_basic@basic.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#15657])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@gem_tiled_pread_basic@basic.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#15657])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-7/igt@gem_tiled_pread_basic@basic.html
* igt@gem_tiling_max_stride:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@gem_tiling_max_stride.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk11: NOTRUN -> [INCOMPLETE][80] ([i915#13356])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk11/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: NOTRUN -> [ABORT][81] ([i915#5566])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#14073]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-17/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#14073]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-1/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#13786])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection:
- shard-dg2: NOTRUN -> [ABORT][91] ([i915#15342] / [i915#15481])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@i915_module_load@fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][92] ([i915#11815] / [i915#15481]) +1 other test abort
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@i915_module_load@fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][93] ([i915#15342] / [i915#15481])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-6/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-dg2: NOTRUN -> [ABORT][94] ([i915#15481])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@i915_module_load@fault-injection@__uc_init.html
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#15479]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html
- shard-mtlp: NOTRUN -> [ABORT][96] ([i915#15481])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][97] ([i915#15481])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][98] ([i915#15342]) +1 other test abort
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-snb: NOTRUN -> [ABORT][99] ([i915#15342]) +1 other test abort
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-snb7/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][100] ([i915#15342]) +1 other test abort
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][101] ([i915#15342])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-dg2: NOTRUN -> [DMESG-WARN][102] ([i915#15342])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_guc_ct_init:
- shard-snb: NOTRUN -> [SKIP][103] +98 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-snb7/igt@i915_module_load@fault-injection@intel_guc_ct_init.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#15479]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][105] -> [DMESG-WARN][106] ([i915#13029] / [i915#14545])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-1/igt@i915_module_load@reload-no-display.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@i915_module_load@reload-no-display.html
- shard-tglu-1: NOTRUN -> [DMESG-WARN][107] ([i915#13029] / [i915#14545])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#8399])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#8399])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][112] ([i915#13790] / [i915#2681]) +1 other test warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#11681])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#11681])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][117] ([i915#4817])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk9/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][118] ([i915#4817])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk10/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#7707])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][120] ([i915#1769])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][122] -> [FAIL][123] ([i915#5956]) +1 other test fail
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][128] -> [FAIL][129] ([i915#15733] / [i915#5138]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#3828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#3828])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][133] +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][135] +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6187])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][138] +18 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +170 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +44 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#6095]) +49 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +86 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#12313]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +37 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +14 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#12313])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#12805])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][150] ([i915#15582]) +1 other test incomplete
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][151] -> [INCOMPLETE][152] ([i915#15582]) +1 other test incomplete
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +73 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-glk10: NOTRUN -> [SKIP][156] +68 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#14544] / [i915#6095]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +39 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#13783]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-glk11: NOTRUN -> [SKIP][165] +70 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#14544] / [i915#7828])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +8 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7118] / [i915#9424])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6944]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#15330] / [i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#15330]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3116])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@kms_content_protection@legacy-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#6944]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#6944])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@kms_content_protection@legacy-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-3/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6944])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#4423] / [i915#6944] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7118])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049] / [i915#14544])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][184] -> [FAIL][185] ([i915#13566]) +5 other tests fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][186] ([i915#13566]) +2 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [FAIL][187] ([i915#13566]) +1 other test fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#13049])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][191] -> [FAIL][192] ([i915#13566]) +2 other tests fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12358] / [i915#14152] / [i915#7882])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk9/igt@kms_cursor_crc@cursor-suspend.html
- shard-rkl: [PASS][195] -> [INCOMPLETE][196] ([i915#12358] / [i915#14152])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][197] ([i915#12358] / [i915#14152])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][198] ([i915#12358] / [i915#14152])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#4103])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#13046] / [i915#5354]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#9833])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#9723])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#9723])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#13691])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#13691])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#13707])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-9/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: NOTRUN -> [FAIL][213] ([i915#4767])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3469])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3955])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3469])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#3469])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#1839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#1839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-busy-flip:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9934])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-13/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][226] ([i915#12745] / [i915#4839] / [i915#6113])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#4839] / [i915#6113])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9934])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#9934])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9934]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][231] -> [INCOMPLETE][232] ([i915#6113]) +1 other test incomplete
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15643]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15643]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15643])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15643]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15643])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8810] / [i915#8813])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15643] / [i915#5190]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15104]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#8708]) +11 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#1825]) +28 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-tglu-1: NOTRUN -> [SKIP][244] +24 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][245] +13 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354]) +14 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#5439]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#15104]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15104])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#8708]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15102] / [i915#3458]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#15102] / [i915#3458]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#5439])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#15102]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#15102] / [i915#3023]) +22 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544] / [i915#1825])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8708]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15102]) +12 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#15102]) +17 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [PASS][262] -> [SKIP][263] ([i915#3555] / [i915#8228]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_hdr@bpc-switch.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [ABORT][264] ([i915#15132])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15460])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#15458]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15460])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#15458]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#15709]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15709])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15709]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15709]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#15709]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15709]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][279] ([i915#13026]) +1 other test incomplete
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk11: NOTRUN -> [FAIL][280] ([i915#10647] / [i915#12169])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][281] ([i915#10647]) +1 other test fail
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][282] ([i915#10647] / [i915#12169])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][283] ([i915#10647]) +1 other test fail
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#8821])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8821])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#13958]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#13958] / [i915#14544])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#13958])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#14259])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#14259])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#13046] / [i915#5354] / [i915#9423])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15329]) +9 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15329] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15329]) +7 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#15329] / [i915#3555] / [i915#6953])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#5354]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#9685]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][299] ([i915#15752])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#9685]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9685]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#9340])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#8430])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][304] -> [SKIP][305] ([i915#15073]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#15073])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: [PASS][307] -> [SKIP][308] ([i915#15073]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][309] -> [INCOMPLETE][310] ([i915#14419])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [INCOMPLETE][311] ([i915#10553])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][314] ([i915#11520]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][315] ([i915#11520]) +14 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][316] ([i915#11520]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-snb7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12316]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#11520]) +6 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#11520]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][320] ([i915#11520])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#11520]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9683])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#9683])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +7 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +9 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][327] +431 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-4/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +20 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@pr-primary-page-flip:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9732]) +15 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-9/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +11 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#9685])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][333] ([i915#15492])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#5289])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#12755] / [i915#5190])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#5289]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#3555]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][338] ([i915#13179]) +1 other test abort
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#3555]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][340] ([i915#10959])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk9/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#8623])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#11920])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9906]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_vrr@max-min.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#2436])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#2433])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-rkl: [PASS][346] -> [FAIL][347] ([i915#4349]) +1 other test fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@perf_pmu@busy-accuracy-50@rcs0.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@perf_pmu@busy-accuracy-50@rcs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#14544]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [FAIL][349] ([i915#12549] / [i915#6806]) +1 other test fail
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@perf_pmu@frequency.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][350] ([i915#15778])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#8516])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#3708] / [i915#4077])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#3291] / [i915#3708])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][354] +41 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-3/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#3708])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][356] ([i915#12910]) +19 other tests fail
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#9917])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][358] ([i915#13356]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][360] ([i915#13363]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_eio@kms.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@gem_eio@kms.html
- shard-tglu: [DMESG-WARN][362] ([i915#13363]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-9/igt@gem_eio@kms.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-3/igt@gem_eio@kms.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [ABORT][364] ([i915#7975]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][366] ([i915#5566]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk1/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][368] ([i915#12964]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: [INCOMPLETE][370] ([i915#4817]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@i915_suspend@fence-restore-untiled.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk2/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [ABORT][372] ([i915#15132]) -> [PASS][373] +1 other test pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][374] ([i915#13566]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][376] ([i915#9878]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: [INCOMPLETE][378] ([i915#12314] / [i915#12745] / [i915#4839]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][380] ([i915#6953]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][382] ([i915#15073]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][384] ([i915#15073]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][386] ([i915#14419]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][388] ([i915#12276]) -> [PASS][389] +2 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@wait-idle-hang:
- shard-glk: [SKIP][390] -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk2/igt@kms_vblank@wait-idle-hang.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk3/igt@kms_vblank@wait-idle-hang.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][392] ([i915#4349]) -> [PASS][393] +2 other tests pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][394] ([i915#14544] / [i915#4525]) -> [SKIP][395] ([i915#4525])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-rkl: [SKIP][396] ([i915#3281]) -> [SKIP][397] ([i915#14544] / [i915#3281])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-rkl: [SKIP][398] ([i915#14544] / [i915#3281]) -> [SKIP][399] ([i915#3281]) +3 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: [SKIP][400] ([i915#4613]) -> [SKIP][401] ([i915#14544] / [i915#4613])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][402] ([i915#14544] / [i915#4613]) -> [SKIP][403] ([i915#4613]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#3282]) -> [SKIP][405] ([i915#3282]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][406] ([i915#3282]) -> [SKIP][407] ([i915#14544] / [i915#3282]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#8411]) -> [SKIP][409] ([i915#8411])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: [SKIP][410] ([i915#14544]) -> [SKIP][411] +5 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_softpin@evict-snoop.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][412] ([i915#3297]) -> [SKIP][413] ([i915#14544] / [i915#3297])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][414] ([i915#2527]) -> [SKIP][415] ([i915#14544] / [i915#2527])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][416] ([i915#8399]) -> [SKIP][417] ([i915#14544] / [i915#8399])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][418] ([i915#14544] / [i915#8399]) -> [SKIP][419] ([i915#8399])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][420] ([i915#12454] / [i915#12712]) -> [SKIP][421] ([i915#12454] / [i915#12712] / [i915#14544])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][422] ([i915#14544] / [i915#9531]) -> [SKIP][423] ([i915#9531])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][424] ([i915#14544] / [i915#5286]) -> [SKIP][425] ([i915#5286]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][426] ([i915#5286]) -> [SKIP][427] ([i915#14544] / [i915#5286]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][428] ([i915#3638]) -> [SKIP][429] ([i915#14544] / [i915#3638])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][430] ([i915#6095]) -> [SKIP][431] ([i915#14544] / [i915#6095]) +3 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][432] ([i915#12313] / [i915#14544]) -> [SKIP][433] ([i915#12313])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-dg1: [SKIP][434] ([i915#6095]) -> [SKIP][435] ([i915#4423] / [i915#6095]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][436] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][437] ([i915#14098] / [i915#6095]) +6 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#6095]) -> [SKIP][439] ([i915#6095]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][440] ([i915#14098] / [i915#6095]) -> [SKIP][441] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][442] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][443] ([i915#11151] / [i915#7828]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][444] ([i915#13049] / [i915#14544]) -> [SKIP][445] ([i915#13049])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][446] ([i915#3555]) -> [SKIP][447] ([i915#14544] / [i915#3555])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][448] -> [SKIP][449] ([i915#14544]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#4103]) -> [SKIP][451] ([i915#4103])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#9337]) -> [SKIP][453] ([i915#9337])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#658]) -> [SKIP][455] ([i915#658])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_feature_discovery@psr1.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: [SKIP][456] ([i915#9934]) -> [SKIP][457] ([i915#14544] / [i915#9934])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#9934]) -> [SKIP][459] ([i915#9934])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][460] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][461] ([i915#12745] / [i915#4839])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: [INCOMPLETE][462] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][463] ([i915#12745])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#15643]) -> [SKIP][465] ([i915#15643])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#15102]) -> [SKIP][467] ([i915#15102])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][468] ([i915#15102]) -> [SKIP][469] ([i915#14544] / [i915#15102]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [SKIP][470] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][471] ([i915#15102] / [i915#3458]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: [SKIP][472] ([i915#15102] / [i915#3023]) -> [SKIP][473] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][474] ([i915#1825]) -> [SKIP][475] ([i915#14544] / [i915#1825]) +4 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2: [SKIP][476] ([i915#15102] / [i915#3458]) -> [SKIP][477] ([i915#10433] / [i915#15102] / [i915#3458])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][479] ([i915#15102] / [i915#3023]) +6 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#1825]) -> [SKIP][481] ([i915#1825]) +7 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [SKIP][482] ([i915#3555] / [i915#8228]) -> [ABORT][483] ([i915#15132])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15815]) -> [SKIP][485] ([i915#15815])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][486] ([i915#14712]) -> [SKIP][487] ([i915#14544] / [i915#14712])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][488] ([i915#15709]) -> [SKIP][489] ([i915#14544] / [i915#15709]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#15709]) -> [SKIP][491] ([i915#15709]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#15329]) -> [SKIP][493] ([i915#15329]) +7 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][494] ([i915#12343]) -> [SKIP][495] ([i915#12343] / [i915#14544])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][496] ([i915#9685]) -> [SKIP][497] ([i915#14544] / [i915#9685])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][498] ([i915#15128]) -> [SKIP][499] ([i915#15739])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][500] ([i915#3828]) -> [SKIP][501] ([i915#9340])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#8430]) -> [SKIP][503] ([i915#8430])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#6524]) -> [SKIP][505] ([i915#6524])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][506] ([i915#11520] / [i915#14544]) -> [SKIP][507] ([i915#11520]) +3 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][508] ([i915#11520]) -> [SKIP][509] ([i915#11520] / [i915#14544]) +3 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-rkl: [SKIP][510] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][511] ([i915#1072] / [i915#9732]) +6 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-4/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: [SKIP][512] ([i915#1072] / [i915#9732]) -> [SKIP][513] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_psr@psr-cursor-render.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#3555]) -> [SKIP][515] ([i915#3555])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][516] ([i915#15243] / [i915#3555]) -> [SKIP][517] ([i915#14544] / [i915#15243] / [i915#3555])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_vrr@flip-suspend.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][519] ([i915#3555] / [i915#9906])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_vrr@negative-basic.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-rkl-8/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@module-unload:
- shard-tglu: [ABORT][520] ([i915#15778]) -> [INCOMPLETE][521] ([i915#13520])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-10/igt@perf_pmu@module-unload.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/shard-tglu-4/igt@perf_pmu@module-unload.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#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#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[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#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[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#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[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#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8806 -> IGTPW_14784
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18163: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14784: 14784
IGT_8806: 8806
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14784/index.html
[-- Attachment #2: Type: text/html, Size: 176406 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.FULL: success for tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
2026-03-16 18:36 [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API Austin Hu
` (2 preceding siblings ...)
2026-03-18 15:20 ` ✓ i915.CI.Full: " Patchwork
@ 2026-03-18 20:50 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-18 20:50 UTC (permalink / raw)
To: Austin Hu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 35895 bytes --]
== Series Details ==
Series: tools/intel_framebuffer_dump: dump frame buffers with igt_fb API.
URL : https://patchwork.freedesktop.org/series/163311/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14784_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14784_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#7445])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2252]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-6/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][9] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2341])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2291])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2291])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2291] / [Intel XE#7343])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#5354])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4156] / [Intel XE#7425])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2316]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#301] / [Intel XE#3149])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2312]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061] / [Intel XE#7356])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2352] / [Intel XE#7399])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2313]) +9 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6901])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7283])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#5020] / [Intel XE#7348])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2685] / [Intel XE#3307])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2391] / [Intel XE#6927])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#7340])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1489]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@kms_psr@fbc-psr-basic.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_sequence@queue-busy:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#6652] / [Intel XE#6819]) +1 other test incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_sequence@queue-busy.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-2/igt@kms_sequence@queue-busy.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#1435]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6503]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1499])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2168] / [Intel XE#7444])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-close:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4837]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6665] / [Intel XE#6681])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7140])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7136]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6874]) +10 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#5625])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7138]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [PASS][60] -> [ABORT][61] ([Intel XE#7578])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6964]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2236])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@xe_peer2peer@read.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#944])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#6569])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#5937]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_sriov_vram@vf-access-after-resize-down.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
- shard-bmg: [INCOMPLETE][71] ([Intel XE#1727] / [Intel XE#6819] / [Intel XE#6904]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2:
- shard-bmg: [DMESG-FAIL][73] ([Intel XE#1727] / [Intel XE#6819]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-b-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][75] ([Intel XE#2291]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][77] ([Intel XE#5354]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][79] ([Intel XE#1340]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][81] ([Intel XE#4294]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][83] ([Intel XE#2316]) -> [PASS][84] +6 other tests pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][85] ([Intel XE#301]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][87] ([Intel XE#1503]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][89] ([Intel XE#4596]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][91] ([Intel XE#6361]) -> [PASS][92] +1 other test pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
- shard-lnl: [DMESG-WARN][93] -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-4/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
* igt@xe_exec_system_allocator@fault-benchmark:
- shard-bmg: [FAIL][95] ([Intel XE#7550]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_exec_system_allocator@fault-benchmark.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@xe_exec_system_allocator@fault-benchmark.html
* igt@xe_exec_system_allocator@many-stride-mmap-race:
- shard-bmg: [INCOMPLETE][97] -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-race.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-mmap-race.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][99] ([Intel XE#2341]) -> [FAIL][100] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][101] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][102] ([Intel XE#2341])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_content_protection@srm.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][103] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][104] ([Intel XE#6705])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_content_protection@suspend-resume.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][105] ([Intel XE#301]) -> [FAIL][106] ([Intel XE#301] / [Intel XE#3149])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][107] ([Intel XE#2311]) -> [SKIP][108] ([Intel XE#2312]) +8 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][109] ([Intel XE#4141]) -> [SKIP][110] ([Intel XE#2312]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][111] ([Intel XE#2312]) -> [SKIP][112] ([Intel XE#4141]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][113] ([Intel XE#2312]) -> [SKIP][114] ([Intel XE#2311]) +14 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][115] ([Intel XE#2313]) -> [SKIP][116] ([Intel XE#2312]) +9 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][117] ([Intel XE#2312]) -> [SKIP][118] ([Intel XE#2313]) +13 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][119] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][120] ([Intel XE#3544])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][121] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][122] ([Intel XE#2426] / [Intel XE#5848])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6904
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[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#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7550
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14784
* Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0
IGTPW_14784: 14784
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14784/index.html
[-- Attachment #2: Type: text/html, Size: 40735 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-03-18 20:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16 18:36 [PATCH i-g-t] tools/intel_framebuffer_dump: dump frame buffers with igt_fb API Austin Hu
2026-03-17 12:52 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-17 14:05 ` ✓ i915.CI.BAT: " Patchwork
2026-03-18 15:20 ` ✓ i915.CI.Full: " Patchwork
2026-03-18 20:50 ` ✓ 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