* [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
@ 2026-05-11 10:29 Pranay Samala
2026-05-12 2:52 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Pranay Samala @ 2026-05-11 10:29 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Add multi-format coverage to kms_chamelium_color by iterating
DRM_FORMAT_XRGB8888, DRM_FORMAT_YUYV, and DRM_FORMAT_NV12 for
degamma, gamma, CTM, and limited-range CTM subtests.
Dynamic subtest names now include format suffix and unsupported
formats are skipped.
Observed behavior while validating:
ctm-green-to-red: RGB and YUYV render correctly, while NV12
shows a thin dark seam at the green-to-red transition.
ctm-negative: RGB is fully black as expected; YUYV/NV12 are
near-black with faint residual tint.
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/chamelium/kms_chamelium_color.c | 281 +++++++++++++++++---------
1 file changed, 181 insertions(+), 100 deletions(-)
diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c
index 4b50a148d..d2ced32c8 100644
--- a/tests/chamelium/kms_chamelium_color.c
+++ b/tests/chamelium/kms_chamelium_color.c
@@ -58,6 +58,15 @@
IGT_TEST_DESCRIPTION("Test Color Features at Pipe level using Chamelium to verify instead of CRC");
+static const struct {
+ const char *name;
+ uint32_t format;
+} formats[] = {
+ { "RGB", DRM_FORMAT_XRGB8888 },
+ { "YUYV", DRM_FORMAT_YUYV },
+ { "NV12", DRM_FORMAT_NV12 },
+};
+
/*
* Draw 3 gradient rectangles in red, green and blue, with a maxed out
* degamma LUT and verify we have the same frame dump as drawing solid color
@@ -87,28 +96,40 @@ static bool test_pipe_degamma(data_t *data,
igt_output_set_crtc(output, primary->crtc);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
- fbref_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fbref);
+ fbref_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fbref,
+ 0,
+ 0);
igt_assert(fbref_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -178,28 +199,40 @@ static bool test_pipe_gamma(data_t *data,
igt_output_set_crtc(output, primary->crtc);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
- fbref_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fbref);
+ fbref_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fbref,
+ 0,
+ 0);
igt_assert(fbref_id);
igt_plane_set_fb(primary, &fbref);
@@ -267,28 +300,40 @@ static bool test_pipe_ctm(data_t *data,
igt_output_set_crtc(output, primary->crtc);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
- fbref_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fbref);
+ fbref_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fbref,
+ 0,
+ 0);
igt_assert(fbref_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -372,20 +417,28 @@ static bool test_pipe_limited_range_ctm(data_t *data,
igt_output_set_crtc(output, primary->crtc);
/* Create a framebuffer at the size of the output. */
- fb_id0 = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb0);
+ fb_id0 = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_LIMITED_RANGE,
+ &fb0,
+ 0,
+ 0);
igt_assert(fb_id0);
- fb_id1 = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb1);
+ fb_id1 = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_LIMITED_RANGE,
+ &fb1,
+ 0,
+ 0);
igt_assert(fb_id1);
set_degamma(data, primary->crtc, degamma_linear);
@@ -502,14 +555,25 @@ run_gamma_degamma_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
igt_require(port_idx >= 0);
data->color_depth = 8;
- data->drm_format = DRM_FORMAT_XRGB8888;
data->mode = igt_output_get_mode(data->output);
if (!crtc_output_combo_valid(data, crtc))
return;
- igt_dynamic_f("pipe-%s-%s", igt_crtc_name(crtc), data->output->name)
- igt_assert(test_t(data, data->primary, data->ports[port_idx]));
+ for (int i = 0; i < ARRAY_SIZE(formats); i++) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc),
+ data->output->name, formats[i].name) {
+ if (!igt_plane_has_format_mod(data->primary,
+ formats[i].format,
+ DRM_FORMAT_MOD_LINEAR))
+ continue;
+ igt_info("Running on " IGT_FORMAT_FMT " format\n",
+ IGT_FORMAT_ARGS(formats[i].format));
+ data->drm_format = formats[i].format;
+ igt_assert(test_t(data, data->primary,
+ data->ports[port_idx]));
+ }
+ }
}
static void
@@ -541,41 +605,47 @@ run_ctm_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
*/
data->color_depth = 8;
delta = 1.0 / (1 << data->color_depth);
- data->drm_format = DRM_FORMAT_XRGB8888;
data->mode = igt_output_get_mode(data->output);
if (!crtc_output_combo_valid(data, crtc))
return;
- igt_dynamic_f("pipe-%s-%s", igt_crtc_name(crtc), data->output->name) {
- bool success = false;
- int i;
-
- if (!iter)
- success = test_pipe_ctm(data, data->primary,
- red_green_blue,
- expected_colors, ctm,
- data->ports[port_idx]);
-
- /*
- * We tests a few values around the expected result because
- * it depends on the hardware we're dealing with, we can either
- * get clamped or rounded values and we also need to account
- * for odd number of items in the LUTs.
- */
- for (i = 0; i < iter; i++) {
- expected_colors[0].r =
- expected_colors[1].g =
- expected_colors[2].b =
- ctm[0] + delta * (i - (iter / 2));
- if (test_pipe_ctm(data, data->primary,
- red_green_blue, expected_colors,
- ctm, data->ports[port_idx])) {
- success = true;
- break;
+ for (int fi = 0; fi < ARRAY_SIZE(formats); fi++) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc),
+ data->output->name, formats[fi].name) {
+ bool success = false;
+ int i;
+
+ data->drm_format = formats[fi].format;
+
+ if (!igt_plane_has_format_mod(data->primary,
+ formats[fi].format,
+ DRM_FORMAT_MOD_LINEAR))
+ continue;
+
+ igt_info("Running on " IGT_FORMAT_FMT " format\n",
+ IGT_FORMAT_ARGS(formats[fi].format));
+
+ if (!iter)
+ success = test_pipe_ctm(data, data->primary,
+ red_green_blue,
+ expected_colors, ctm,
+ data->ports[port_idx]);
+
+ for (i = 0; i < iter; i++) {
+ expected_colors[0].r =
+ expected_colors[1].g =
+ expected_colors[2].b =
+ ctm[0] + delta * (i - (iter / 2));
+ if (test_pipe_ctm(data, data->primary,
+ red_green_blue, expected_colors,
+ ctm, data->ports[port_idx])) {
+ success = true;
+ break;
+ }
}
+ igt_assert(success);
}
- igt_assert(success);
}
}
@@ -590,14 +660,25 @@ run_limited_range_ctm_test_for_crtc(data_t *data, igt_crtc_t *crtc,
igt_require(igt_output_has_prop(data->output, IGT_CONNECTOR_BROADCAST_RGB));
data->color_depth = 8;
- data->drm_format = DRM_FORMAT_XRGB8888;
data->mode = igt_output_get_mode(data->output);
if (!crtc_output_combo_valid(data, crtc))
return;
- igt_dynamic_f("pipe-%s-%s", igt_crtc_name(crtc), data->output->name)
- igt_assert(test_t(data, data->primary, data->ports[port_idx]));
+ for (int i = 0; i < ARRAY_SIZE(formats); i++) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc),
+ data->output->name, formats[i].name) {
+ if (!igt_plane_has_format_mod(data->primary,
+ formats[i].format,
+ DRM_FORMAT_MOD_LINEAR))
+ continue;
+ igt_info("Running on " IGT_FORMAT_FMT " format\n",
+ IGT_FORMAT_ARGS(formats[i].format));
+ data->drm_format = formats[i].format;
+ igt_assert(test_t(data, data->primary,
+ data->ports[port_idx]));
+ }
+ }
}
static void
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
2026-05-11 10:29 [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests Pranay Samala
@ 2026-05-12 2:52 ` Patchwork
2026-05-12 3:51 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-05-12 2:52 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2038 bytes --]
== Series Details ==
Series: tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
URL : https://patchwork.freedesktop.org/series/166306/
State : success
== Summary ==
CI Bug Log - changes from IGT_8903 -> IGTPW_15151
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m fi-elk-e7500
New tests
---------
New tests have been introduced between IGT_8903 and IGTPW_15151:
### New IGT tests (1) ###
* igt@gem_exec_basic@basic@ccs0-lmem0:
- Statuses : 4 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_15151 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15151
* Linux: CI_DRM_18467 -> CI_DRM_18469
CI-20190529: 20190529
CI_DRM_18467: f8ee23694aa6be213355905a78f79bb1b0861565 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18469: 0ce1c813197dfbe15ff14143da97ec11161e1795 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15151: b086aebd8efcc20d3090a596d72569fb56a7d63b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/index.html
[-- Attachment #2: Type: text/html, Size: 2668 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
2026-05-11 10:29 [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests Pranay Samala
2026-05-12 2:52 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-05-12 3:51 ` Patchwork
2026-05-12 8:30 ` ✓ Xe.CI.FULL: " Patchwork
2026-05-12 15:11 ` ✗ i915.CI.Full: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-05-12 3:51 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1197 bytes --]
== Series Details ==
Series: tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
URL : https://patchwork.freedesktop.org/series/166306/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_BAT -> XEIGTPW_15151_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15151
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5043-0ce1c813197dfbe15ff14143da97ec11161e1795
IGTPW_15151: b086aebd8efcc20d3090a596d72569fb56a7d63b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5043-0ce1c813197dfbe15ff14143da97ec11161e1795: 0ce1c813197dfbe15ff14143da97ec11161e1795
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/index.html
[-- Attachment #2: Type: text/html, Size: 1756 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.FULL: success for tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
2026-05-11 10:29 [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests Pranay Samala
2026-05-12 2:52 ` ✓ i915.CI.BAT: success for " Patchwork
2026-05-12 3:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-12 8:30 ` Patchwork
2026-05-12 15:11 ` ✗ i915.CI.Full: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-05-12 8:30 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 41924 bytes --]
== Series Details ==
Series: tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
URL : https://patchwork.freedesktop.org/series/166306/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_FULL -> XEIGTPW_15151_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15151_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#367])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2887]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#3432])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-7/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2252]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#373])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][9] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7642])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#7571])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#4354] / [Intel XE#5882])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2244])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4422] / [Intel XE#7442])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6126] / [Intel XE#776])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#3098]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][20] ([Intel XE#301]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6312]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2311]) +19 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#656] / [Intel XE#7905])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7061])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7905]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2313]) +15 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#7915]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6901])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7283])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7283])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#5021] / [Intel XE#7377])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3309] / [Intel XE#7368])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#7340])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#2029] / [Intel XE#7395])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1489]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2234])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2330] / [Intel XE#5813])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1499]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7636]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#6321]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6540] / [Intel XE#688])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-8/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7136]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6874]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7138])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6964])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2245] / [Intel XE#7590])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#5694] / [Intel XE#7370])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2284] / [Intel XE#7370])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#5937])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@xe_pmu@fn-engine-activity-load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4733] / [Intel XE#7417])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#6569])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][65] -> [ABORT][66] ([Intel XE#7914])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html
- shard-bmg: NOTRUN -> [ABORT][67] ([Intel XE#7914])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][68] ([Intel XE#7445]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@intel_hwmon@hwmon-write.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][70] ([Intel XE#5545]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][72] ([Intel XE#301]) -> [PASS][73] +1 other test pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: [FAIL][74] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][75] +1 other test pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][76] ([Intel XE#7308]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][78] ([Intel XE#7915]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][80] ([Intel XE#7340]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][82] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][84] ([Intel XE#2142]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-lnl: [ABORT][86] -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@xe_copy_basic@mem-page-copy-17.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-lnl-7/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_sriov_admin@sched-priority-vf-write-denied:
- shard-bmg: [SKIP][88] ([Intel XE#6703]) -> [PASS][89] +135 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-6/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][90] ([Intel XE#5937]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][92] ([Intel XE#6569]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][94] ([Intel XE#6703]) -> [SKIP][95] ([Intel XE#7059] / [Intel XE#7085])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [SKIP][97] ([Intel XE#1124]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][98] ([Intel XE#6703]) -> [SKIP][99] ([Intel XE#367])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][100] ([Intel XE#6703]) -> [SKIP][101] ([Intel XE#2887]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][102] ([Intel XE#6703]) -> [SKIP][103] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [SKIP][105] ([Intel XE#2252])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-single.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [SKIP][106] ([Intel XE#6703]) -> [FAIL][107] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#2320])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#4210] / [Intel XE#7467])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#4141]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#7061] / [Intel XE#7356])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#2311]) +11 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][118] ([Intel XE#6703]) -> [SKIP][119] ([Intel XE#7061]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [SKIP][121] ([Intel XE#2313]) +12 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][122] ([Intel XE#3544] / [Intel XE#7916]) -> [SKIP][123] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][124] ([Intel XE#7916]) -> [SKIP][125] ([Intel XE#7915]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#7283])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#1489]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr@psr-basic.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@kms_psr@psr-basic.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#6503])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][134] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][135] ([Intel XE#2426] / [Intel XE#5848])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#7636]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#7136])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority:
- shard-bmg: [SKIP][142] ([Intel XE#6703]) -> [SKIP][143] ([Intel XE#6874]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#7138]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_page_reclaim@binds-1g-partial:
- shard-bmg: [SKIP][146] ([Intel XE#6703]) -> [SKIP][147] ([Intel XE#7793])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_page_reclaim@binds-1g-partial.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@xe_page_reclaim@binds-1g-partial.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#2284] / [Intel XE#7370])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#944])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_query@multigpu-query-topology.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/shard-bmg-4/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15151
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5043-0ce1c813197dfbe15ff14143da97ec11161e1795
IGTPW_15151: b086aebd8efcc20d3090a596d72569fb56a7d63b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5043-0ce1c813197dfbe15ff14143da97ec11161e1795: 0ce1c813197dfbe15ff14143da97ec11161e1795
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15151/index.html
[-- Attachment #2: Type: text/html, Size: 49233 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.Full: failure for tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
2026-05-11 10:29 [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests Pranay Samala
` (2 preceding siblings ...)
2026-05-12 8:30 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-05-12 15:11 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-05-12 15:11 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 150815 bytes --]
== Series Details ==
Series: tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests
URL : https://patchwork.freedesktop.org/series/166306/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18469_full -> IGTPW_15151_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15151_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15151_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15151_full:
### IGT changes ###
#### Possible regressions ####
* {igt@core_debugfs} (NEW):
- shard-snb: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb1/igt@core_debugfs.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][2] -> [TIMEOUT][3] +1 other test timeout
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][4] -> [TIMEOUT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-snb1/igt@i915_pm_rps@reset.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb1/igt@i915_pm_rps@reset.html
* igt@perf_pmu@most-busy-check-all@bcs0:
- shard-mtlp: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@bcs0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@perf_pmu@most-busy-check-all@bcs0.html
New tests
---------
New tests have been introduced between CI_DRM_18469_full and IGTPW_15151_full:
### New IGT tests (26) ###
* igt@core_debugfs:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
* igt@core_debugfs@bad-hsync-end:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@bad-offset:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@basic:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@busy:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@degamma:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbc-2p-primscrn-cur-indfb-onoff:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbc-2p-primscrn-pri-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@hdr-1p-primscrn-pri-shrfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@hdr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@hdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@mock:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@modeset-vs-vblank-race-interruptible:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@multimaster-lease:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@process-exit:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@psr-2p-scndscrn-shrfb-plflip-blt:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@psrhdr-1p-offscreen-pri-indfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@psrhdr-1p-primscrn-spr-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@reset:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@srm:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@wait-for-submit-delayed-submit:
- Statuses :
- Exec time: [None] s
* igt@core_debugfs@writes:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_15151_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][11] -> [INCOMPLETE][12] ([i915#13356])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb5/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#5882]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5882]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_eio@kms:
- shard-rkl: [PASS][17] -> [DMESG-WARN][18] ([i915#13363])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_eio@kms.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_eio@kms.html
- shard-tglu: [PASS][19] -> [DMESG-WARN][20] ([i915#13363])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-4/igt@gem_eio@kms.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-13/igt@gem_exec_balancer@bonded-true-hang.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4036])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4036])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4036])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-6/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][29] -> [FAIL][30] ([i915#15944])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-8/igt@gem_exec_big@single.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@gem_exec_reloc@basic-range.html
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#14544] / [i915#3281]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +6 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#2190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][41] ([i915#2190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613] / [i915#7582])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk3/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@gem_madvise@dontneed-before-pwrite.html
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@gem_madvise@dontneed-before-pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@coherency:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@gem_mmap_wc@copy.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-5/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@gem_mmap_wc@write.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][59] ([i915#14702] / [i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk3/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-12/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#13398])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][69] ([i915#13809])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk2/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][78] +140 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#11527]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#14118])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-12/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#13786])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#8399])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#8399])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#8399]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][90] -> [ABORT][91] ([i915#15131]) +1 other test abort
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][92] ([i915#13356])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk10/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#6245])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#6188])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][96] ([i915#12061]) +1 other test dmesg-fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#4817])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][98] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk11/igt@i915_suspend@sysfs-reader.html
- shard-rkl: [PASS][99] -> [INCOMPLETE][100] ([i915#4817])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [FAIL][102] ([i915#14888]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#12761])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#12761] / [i915#14995])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][105] ([i915#1769])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][108] -> [FAIL][109] ([i915#15662]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#5286]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][115] +10 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][117] +10 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +9 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#6095]) +187 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/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-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544] / [i915#6095]) +11 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6095]) +39 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#12313])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +24 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +113 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-glk11: NOTRUN -> [SKIP][131] +87 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12805])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#12805])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +73 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#6095]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][136] ([i915#15582]) +1 other test incomplete
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +48 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +59 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#3742])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-9/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3742])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#13781]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#14544] / [i915#7828])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][150] -> [SKIP][151] ([i915#12655] / [i915#3555])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-10/igt@kms_color@deep-color.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#15865]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#15865])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#15865]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_content_protection@content-type-change.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#15865]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#15330])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][157] -> [FAIL][158] ([i915#13566]) +3 other tests fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#13049]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13049])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#14544] / [i915#3555]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3555])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#13049]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [PASS][168] -> [FAIL][169] ([i915#13566]) +3 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-3/igt@kms_cursor_crc@cursor-random-64x21.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][174] ([i915#13566]) +2 other tests fail
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#13046] / [i915#5354]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
- shard-dg1: [PASS][179] -> [FAIL][180] ([i915#15999])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-18/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#9067])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#9067])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#9067])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#9067])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9067])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#4103])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#1769] / [i915#3555] / [i915#3804])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3804])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#13749])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#13749])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#13749])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#13749])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#13749])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#13707])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#13707])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#13707])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9688])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-4/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-snb: [PASS][204] -> [ABORT][205] ([i915#15840])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb4/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-tglu: [PASS][206] -> [ABORT][207] ([i915#15840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-5/igt@kms_fbcon_fbt@fbc-suspend.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#9878])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-rkl: [PASS][209] -> [INCOMPLETE][210] ([i915#9878])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3469])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3469])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#658])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9934]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934]) +8 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +6 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3637] / [i915#9934]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-7/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][221] ([i915#12745] / [i915#4839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][222] ([i915#12745])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15643]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#15643] / [i915#5190]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#14544] / [i915#15643])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#15643]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#15643]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#15643]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#15643]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#15643]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#5439]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15989]) +19 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#15989]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#15990]) +18 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15989]) +9 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: [PASS][236] -> [SKIP][237] +6 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15990]) +23 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#15991]) +28 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][240] +36 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15990]) +9 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-dg2: [PASS][242] -> [SKIP][243] ([i915#15989]) +7 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#15989]) +17 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: [PASS][245] -> [SKIP][246] ([i915#15989]) +11 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#15989]) +8 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15990] / [i915#8708]) +13 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#15102]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15104] / [i915#15990])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#15102]) +15 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#15102] / [i915#3023]) +13 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#1825]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15991] / [i915#1825]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#1825]) +26 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15990] / [i915#8708]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][257] +88 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102] / [i915#3458]) +11 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +8 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15102]) +12 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15102]) +23 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#15102]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15989]) +12 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt:
- shard-glk10: NOTRUN -> [SKIP][264] +127 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][265] +45 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][266] +55 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#15102]) +36 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#5439])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#5439])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#5439])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15991]) +16 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15104] / [i915#15990]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#15102] / [i915#3458]) +9 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15991] / [i915#5354]) +17 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544]) +6 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [PASS][277] -> [SKIP][278] ([i915#15725])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-3/igt@kms_hdmi_inject@inject-audio.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#16012]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-4-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#16012]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-4-xrgb16161616f.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#16012]) +5 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#16011] / [i915#3555] / [i915#8228])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#16011]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#16011]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#15459])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#15459])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#14544] / [i915#6301])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#14712])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#15709])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15709]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15709]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15709]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#15608]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15608]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][295] ([i915#13026]) +1 other test incomplete
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][296] ([i915#12178])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][297] ([i915#7862]) +1 other test fail
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][298] ([i915#10647] / [i915#12177])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][299] ([i915#10647]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][300] ([i915#10647] / [i915#12169])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/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][301] ([i915#10647]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8821])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#3555]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#13958])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#13958])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#13958])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#13958])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#14259])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15329]) +9 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#15329]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#15329]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#15329]) +9 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#12343])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#9812]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#5354]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#15948])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#15751])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [FAIL][319] ([i915#15752])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#3361])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][321] ([i915#15752])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#3828])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#8430])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#8430])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#8430])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#8430])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#8430])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#15073]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#15073])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: [PASS][331] -> [SKIP][332] ([i915#15073])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +8 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12316]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#11520]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][338] ([i915#11520])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][339] ([i915#11520]) +3 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#11520]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520] / [i915#14544])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11520]) +5 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][343] ([i915#11520]) +15 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9683])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#9732]) +20 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][346] +651 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#9732]) +7 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9688]) +10 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@psr-primary-blt:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +11 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-18/igt@kms_psr@psr-primary-blt.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +20 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +16 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#14544] / [i915#9732])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#15949])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][354] ([i915#15492])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk9/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#12755] / [i915#15867] / [i915#5190])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#5289])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#15867])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#12755] / [i915#15867]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][359] -> [FAIL][360] ([i915#15106]) +2 other tests fail
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-10/igt@kms_setmode@basic.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-9/igt@kms_setmode@basic.html
- shard-rkl: [PASS][361] -> [FAIL][362] ([i915#15106])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_setmode@basic.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][363] ([i915#15106]) +1 other test fail
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#8623])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#8623])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#8623])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#8623])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#8623])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9906])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#15243] / [i915#3555])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#3555] / [i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-10/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#9906])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#9906])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#8808] / [i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#2433])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#2433])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-15/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: [PASS][378] -> [FAIL][379] ([i915#15997]) +1 other test fail
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@vcs0.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#8516]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#8516])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#9917])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#9917]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-mtlp: NOTRUN -> [FAIL][385] ([i915#12910]) +9 other tests fail
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
#### Possible fixes ####
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][386] ([i915#13356]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: [ABORT][388] ([i915#15131]) -> [PASS][389] +1 other test pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][390] ([i915#15733] / [i915#5138]) -> [PASS][391] +1 other test pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][392] ([i915#13566]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][394] ([i915#13566]) -> [PASS][395] +3 other tests pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [FAIL][396] ([i915#13027]) -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [ABORT][398] ([i915#15132]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [SKIP][400] ([i915#15672]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][402] ([i915#15989]) -> [PASS][403] +16 other tests pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][404] ([i915#15989]) -> [PASS][405] +2 other tests pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-glk: [SKIP][406] -> [PASS][407] +3 other tests pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-glk5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [FAIL][408] ([i915#14867]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][410] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][412] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_hdr@static-toggle.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [SKIP][414] ([i915#16011]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][416] ([i915#12756] / [i915#13476]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][418] ([i915#13476]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [SKIP][420] ([i915#15073]) -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][422] ([i915#15073]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][424] ([i915#15106]) -> [PASS][425] +2 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-17/igt@kms_setmode@basic.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-18/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-c-hdmi-a-3:
- shard-dg2: [FAIL][426] ([i915#15106]) -> [PASS][427] +2 other tests pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-3/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#8411]) -> [SKIP][429] ([i915#8411])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@dmabuf@all-tests:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#15931]) -> [SKIP][431] ([i915#15931])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@dmabuf@all-tests.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@dmabuf@all-tests.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#3281]) -> [SKIP][433] ([i915#3281]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][434] ([i915#3281]) -> [SKIP][435] ([i915#14544] / [i915#3281]) +6 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][436] ([i915#9323]) -> [SKIP][437] ([i915#14544] / [i915#9323])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#7697]) -> [SKIP][439] ([i915#7697])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#6335]) -> [SKIP][441] ([i915#6335])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#280]) -> [SKIP][443] ([i915#280])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][444] ([i915#4613] / [i915#7582]) -> [SKIP][445] ([i915#14544] / [i915#4613] / [i915#7582])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#4613]) -> [SKIP][447] ([i915#4613]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][448] ([i915#4613]) -> [SKIP][449] ([i915#14544] / [i915#4613]) +2 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#3282]) -> [SKIP][451] ([i915#3282]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][452] ([i915#3282]) -> [SKIP][453] ([i915#14544] / [i915#3282]) +4 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][454] ([i915#3297]) -> [SKIP][455] ([i915#14544] / [i915#3297]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#3297]) -> [SKIP][457] ([i915#3297])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][458] ([i915#2527]) -> [SKIP][459] ([i915#14544] / [i915#2527]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#2527]) -> [SKIP][461] ([i915#2527])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#6412]) -> [SKIP][463] ([i915#6412])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@i915_module_load@resize-bar.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][464] ([i915#8399]) -> [SKIP][465] ([i915#14544] / [i915#8399])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#4387]) -> [SKIP][467] ([i915#4387])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][468] ([i915#7707]) -> [SKIP][469] ([i915#14544] / [i915#7707])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#5286]) -> [SKIP][471] ([i915#5286]) +3 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][472] ([i915#5286]) -> [SKIP][473] ([i915#14544] / [i915#5286]) +3 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][474] ([i915#3638]) -> [SKIP][475] ([i915#14544] / [i915#3638]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][476] ([i915#3828]) -> [SKIP][477] ([i915#14544] / [i915#3828])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#3828]) -> [SKIP][479] ([i915#3828])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#3638]) -> [SKIP][481] ([i915#3638])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][482] ([i915#12313] / [i915#14544]) -> [SKIP][483] ([i915#12313])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][484] ([i915#14098] / [i915#6095]) -> [SKIP][485] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][486] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][487] ([i915#14098] / [i915#6095]) +7 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][488] ([i915#6095]) -> [SKIP][489] ([i915#14544] / [i915#6095]) +5 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#6095]) -> [SKIP][491] ([i915#6095]) +3 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][492] ([i915#3742]) -> [SKIP][493] ([i915#14544] / [i915#3742])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-rkl: [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][495] ([i915#11151] / [i915#7828]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-read.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][496] ([i915#11151] / [i915#7828]) -> [SKIP][497] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_chamelium_frames@dp-crc-fast.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][498] ([i915#15330]) -> [SKIP][499] ([i915#14544] / [i915#15330])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15865]) -> [SKIP][501] ([i915#15865]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_content_protection@legacy.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][502] ([i915#9433]) -> [SKIP][503] ([i915#15865])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-16/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][504] ([i915#15865]) -> [SKIP][505] ([i915#14544] / [i915#15865])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@kms_content_protection@type1.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][506] ([i915#3555]) -> [SKIP][507] ([i915#14544] / [i915#3555]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][508] ([i915#13049] / [i915#14544]) -> [SKIP][509] ([i915#13049]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][510] ([i915#13691]) -> [SKIP][511] ([i915#13691] / [i915#14544])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-3/igt@kms_display_modes@extended-mode-basic.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][512] ([i915#4854]) -> [SKIP][513] ([i915#14544] / [i915#4854])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][514] ([i915#658]) -> [SKIP][515] ([i915#14544] / [i915#658])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-4/igt@kms_feature_discovery@psr1.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#9934]) -> [SKIP][517] ([i915#9934]) +4 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][518] ([i915#9934]) -> [SKIP][519] ([i915#14544] / [i915#9934]) +2 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][520] ([i915#15643]) -> [SKIP][521] ([i915#14544] / [i915#15643])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#15643]) -> [SKIP][523] ([i915#15643])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][524] ([i915#15990] / [i915#8708]) -> [SKIP][525] ([i915#15990] / [i915#4423] / [i915#8708]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][526] ([i915#1825]) -> [SKIP][527] ([i915#14544] / [i915#1825]) +18 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][528] ([i915#5439]) -> [SKIP][529] ([i915#14544] / [i915#5439])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][530] -> [SKIP][531] ([i915#14544]) +37 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: [SKIP][532] -> [SKIP][533] ([i915#4423])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-onoff.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][535] ([i915#15102] / [i915#3023]) +9 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][536] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][537] ([i915#15102] / [i915#3458]) +3 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#15102]) -> [SKIP][539] ([i915#15102]) +4 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][540] ([i915#15102]) -> [SKIP][541] ([i915#14544] / [i915#15102]) +12 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-rkl: [SKIP][542] ([i915#15102] / [i915#3023]) -> [SKIP][543] ([i915#14544] / [i915#15102] / [i915#3023]) +11 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-rte.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#1825]) -> [SKIP][545] ([i915#1825]) +13 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][546] ([i915#14544]) -> [SKIP][547] +25 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][548] ([i915#16011] / [i915#3555] / [i915#8228]) -> [ABORT][549] ([i915#15132])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: [SKIP][550] ([i915#16011]) -> [ABORT][551] ([i915#15132])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][552] ([i915#14712]) -> [SKIP][553] ([i915#14544] / [i915#14712])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/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][554] ([i915#15709]) -> [SKIP][555] ([i915#14544] / [i915#15709]) +2 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#15709]) -> [SKIP][557] ([i915#15709])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][558] ([i915#13958] / [i915#14544]) -> [SKIP][559] ([i915#13958]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][560] ([i915#13958]) -> [SKIP][561] ([i915#13958] / [i915#14544])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][562] ([i915#15329]) -> [SKIP][563] ([i915#14544] / [i915#15329]) +7 other tests skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][564] ([i915#5354]) -> [SKIP][565] ([i915#14544] / [i915#5354])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][566] ([i915#14544] / [i915#15948]) -> [SKIP][567] ([i915#15948])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][568] ([i915#9340]) -> [SKIP][569] ([i915#3828])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][570] ([i915#15073]) -> [SKIP][571] ([i915#15073] / [i915#4423])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#6524]) -> [SKIP][573] ([i915#6524])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_prime@d3hot.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][574] ([i915#11520]) -> [SKIP][575] ([i915#11520] / [i915#14544]) +3 other tests skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][576] ([i915#11520] / [i915#14544]) -> [SKIP][577] ([i915#11520]) +3 other tests skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][578] ([i915#9683]) -> [SKIP][579] ([i915#14544] / [i915#9683])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][580] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][581] ([i915#1072] / [i915#9732]) +10 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-8/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][582] ([i915#1072] / [i915#9732]) -> [SKIP][583] ([i915#1072] / [i915#14544] / [i915#9732]) +12 other tests skip
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][584] ([i915#5289]) -> [SKIP][585] ([i915#14544] / [i915#5289]) +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][586] ([i915#15867] / [i915#5190]) -> [SKIP][587] ([i915#12755] / [i915#15867] / [i915#5190])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][588] ([i915#9906]) -> [SKIP][589] ([i915#14544] / [i915#9906]) +1 other test skip
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][590] ([i915#14544] / [i915#2434]) -> [SKIP][591] ([i915#2434])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-6/igt@perf@mi-rpc.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-7/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [ABORT][592] ([i915#15778]) -> [INCOMPLETE][593] ([i915#13520])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-mtlp-8/igt@perf_pmu@module-unload.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-mtlp-4/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][594] ([i915#9917]) -> [SKIP][595] ([i915#14544] / [i915#9917])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18469/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[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#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[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#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
[i915#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[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#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15151
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18469: 0ce1c813197dfbe15ff14143da97ec11161e1795 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15151: b086aebd8efcc20d3090a596d72569fb56a7d63b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15151/index.html
[-- Attachment #2: Type: text/html, Size: 201873 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-05-12 15:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 10:29 [PATCH i-g-t] tests/chamelium/kms_chamelium_color: Add YUYV and NV12 coverage to color subtests Pranay Samala
2026-05-12 2:52 ` ✓ i915.CI.BAT: success for " Patchwork
2026-05-12 3:51 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-12 8:30 ` ✓ Xe.CI.FULL: " Patchwork
2026-05-12 15:11 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox