* [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc
@ 2025-03-11 4:30 Shekhar Chauhan
2025-03-11 5:23 ` ✓ Xe.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Shekhar Chauhan @ 2025-03-11 4:30 UTC (permalink / raw)
To: igt-dev; +Cc: shekhar.chauhan, juha-pekka.heikkila
Check if cursor IOCTLs are behaving in timely manner via CRC.
Test CRC of the display with 2 cursors, separated by a vblank and a
sleep so that the drawing of the cursors only happens when the screen is
active and then compare the CRC of the two cases. This helps validates
that there is no tearing when doing cursor changes midframe. Test
consists of two subtests, one for checking the timely change and the
second test also adds changing position into the first test.
v2: Trim down the description.
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
---
tests/kms_cursor_crc.c | 139 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 139 insertions(+)
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 7c6f61f55..e3de107c8 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -100,6 +100,16 @@
* @max-size: Max supported size
*/
+/**
+ * SUBTEST: async-cursor-crc-framebuffer-change
+ * Description: Validate cursor IOCTLs tearing via framebuffer changes and CRC.
+ */
+
+/**
+ * SUBTEST: async-cursor-crc-position-change
+ * Description: Similar to async-cursor-change, but this test changes position.
+ */
+
IGT_TEST_DESCRIPTION(
"Use the display CRC support to validate cursor plane functionality. "
"The test will position the cursor plane either fully onscreen, "
@@ -123,6 +133,11 @@ enum cursor_buffers {
MAXCURSORBUFFER
};
+enum cursor_change {
+ FIRSTIMAGE,
+ SECONDIMAGE
+};
+
typedef struct {
int x;
int y;
@@ -151,6 +166,7 @@ typedef struct {
double alpha;
int vblank_wait_count; /* because of msm */
cursorarea oldcursorarea[MAXCURSORBUFFER];
+ struct igt_fb timed_fb[2];
} data_t;
static bool extended;
@@ -674,6 +690,78 @@ static void test_cursor_transparent(data_t *data)
data->alpha = 1.0;
}
+static void do_timed_cursor_fb_change(data_t *data, enum cursor_change change)
+{
+ if (change == FIRSTIMAGE) {
+ igt_plane_set_fb(data->cursor, &data->timed_fb[0]);
+ igt_plane_set_position(data->cursor,
+ data->left + data->cursor_max_w - 10,
+ data->bottom - data->cursor_max_h - 10);
+ } else {
+ igt_plane_set_fb(data->cursor, &data->timed_fb[1]);
+ }
+}
+
+static void do_timed_cursor_fb_pos_change(data_t *data, enum cursor_change change)
+{
+ if (change == FIRSTIMAGE) {
+ igt_plane_set_fb(data->cursor, &data->timed_fb[0]);
+ igt_plane_set_position(data->cursor,
+ data->left + data->cursor_max_w - 10,
+ data->bottom - data->cursor_max_h - 10);
+ } else {
+ igt_plane_set_position(data->cursor,
+ data->left + data->cursor_max_w + 20,
+ data->bottom - data->cursor_max_h + 20);
+ }
+}
+
+static void timed_cursor_changes(data_t *data, void (changefunc)(data_t *, enum cursor_change))
+{
+ igt_crc_t crc1, crc2;
+
+ data->cursor = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_CURSOR);
+ changefunc(data, FIRSTIMAGE);
+
+ igt_display_commit(&data->display);
+
+ /* Extra vblank wait is because nonblocking cursor ioctl */
+ igt_wait_for_vblank_count(data->drm_fd,
+ data->display.pipes[data->pipe].crtc_offset,
+ data->vblank_wait_count);
+
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc1);
+
+ /* get the screen refresh rate, then wait for vblank, and
+ * wait for 1/5 of time of screen refresh and change image.
+ * change it mid screen to validate that the change happens
+ * at the end of the current frame.
+ */
+ usleep(1.0f / data->refresh / 5.0f * 1e6);
+
+ changefunc(data, SECONDIMAGE);
+ igt_display_commit(&data->display);
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc2);
+
+ igt_assert_crc_equal(&crc1, &crc2);
+
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc2);
+
+ /* check next frame will be different as expected*/
+ igt_assert_f(igt_find_crc_mismatch(&crc1, &crc2, NULL),
+ "crc values were not supposing to match!\n");
+}
+
+static void test_crc_cursors(data_t *data)
+{
+ timed_cursor_changes(data, do_timed_cursor_fb_change);
+}
+
+static void test_crc_pos_cursors(data_t *data)
+{
+ timed_cursor_changes(data, do_timed_cursor_fb_pos_change);
+}
+
static void test_cursor_opaque(data_t *data)
{
data->alpha = 1.0;
@@ -1013,6 +1101,57 @@ static void run_tests_on_pipe(data_t *data)
}
igt_fixture {
+ igt_create_color_fb(data->drm_fd, data->cursor_max_w, data->cursor_max_h,
+ DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1.f, 1.f, 1.f, &data->timed_fb[0]);
+
+ igt_create_color_fb(data->drm_fd, data->cursor_max_w, data->cursor_max_h,
+ DRM_FORMAT_ARGB8888, DRM_FORMAT_MOD_LINEAR,
+ 1.f, 0.f, 0.f, &data->timed_fb[1]);
+ }
+
+ igt_describe("Validate CRC with two cursors");
+ igt_subtest_with_dynamic("async-cursor-crc-framebuffer-change") {
+ for_each_pipe_with_single_output(&data->display, pipe, data->output) {
+ if (execution_constraint(pipe))
+ continue;
+
+ data->pipe = pipe;
+
+ if (!valid_pipe_output_combo(data))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s",
+ kmstest_pipe_name(pipe),
+ data->output->name)
+ run_test(data, test_crc_cursors,
+ data->cursor_max_w, data->cursor_max_h);
+ }
+ }
+
+ igt_describe("Validate CRC with two cursors and cursor position change");
+ igt_subtest_with_dynamic("async-cursor-crc-position-change") {
+ for_each_pipe_with_single_output(&data->display, pipe, data->output) {
+ if (execution_constraint(pipe))
+ continue;
+
+ data->pipe = pipe;
+
+ if (!valid_pipe_output_combo(data))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s",
+ kmstest_pipe_name(pipe),
+ data->output->name)
+ run_test(data, test_crc_pos_cursors,
+ data->cursor_max_w, data->cursor_max_h);
+ }
+ }
+
+ igt_fixture {
+ igt_remove_fb(data->drm_fd, &data->timed_fb[0]);
+ igt_remove_fb(data->drm_fd, &data->timed_fb[1]);
+
create_cursor_fb(data, data->cursor_max_w, data->cursor_max_h);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
@ 2025-03-11 5:23 ` Patchwork
2025-03-11 5:34 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-03-11 5:23 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3832 bytes --]
== Series Details ==
Series: tests/kms_cursor_crc.: Test async cursor crc (rev2)
URL : https://patchwork.freedesktop.org/series/146062/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8270_BAT -> XEIGTPW_12741_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12741_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_fault_mode@twice-rebind:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_exec_fault_mode@twice-rebind.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: NOTRUN -> [SKIP][3] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#977])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-vf: NOTRUN -> [SKIP][6] ([Intel XE#2838] / [Intel XE#979])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#979])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@xe_vm@bind-execqueues-independent:
- bat-adlp-vf: [ABORT][8] ([Intel XE#4491]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/bat-adlp-vf/igt@xe_vm@bind-execqueues-independent.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/bat-adlp-vf/igt@xe_vm@bind-execqueues-independent.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#4491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4491
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8270 -> IGTPW_12741
* Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034
IGTPW_12741: 12741
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034: 003c44ec0b7d86569bd13d4a810ee24176c3d034
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/index.html
[-- Attachment #2: Type: text/html, Size: 4718 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
2025-03-11 5:23 ` ✓ Xe.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2) Patchwork
@ 2025-03-11 5:34 ` Patchwork
2025-03-11 7:22 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-03-11 5:34 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1643 bytes --]
== Series Details ==
Series: tests/kms_cursor_crc.: Test async cursor crc (rev2)
URL : https://patchwork.freedesktop.org/series/146062/
State : success
== Summary ==
CI Bug Log - changes from IGT_8270 -> IGTPW_12741
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/index.html
Participating hosts (44 -> 42)
------------------------------
Missing (2): bat-arlh-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12741 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [DMESG-WARN][1] ([i915#13494]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8270/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/bat-mtlp-9/igt@i915_module_load@load.html
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8270 -> IGTPW_12741
* Linux: CI_DRM_16259 -> CI_DRM_16261
CI-20190529: 20190529
CI_DRM_16259: fd356d116b876e8778d2a52820c832f95dcdd3d5 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16261: 003c44ec0b7d86569bd13d4a810ee24176c3d034 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12741: 12741
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/index.html
[-- Attachment #2: Type: text/html, Size: 2243 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
2025-03-11 5:23 ` ✓ Xe.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2) Patchwork
2025-03-11 5:34 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-03-11 7:22 ` Patchwork
2025-03-12 11:10 ` Chauhan, Shekhar
2025-03-12 0:03 ` ✗ Xe.CI.Full: " Patchwork
2025-03-12 11:28 ` [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Ville Syrjälä
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-03-11 7:22 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 136683 bytes --]
== Series Details ==
Series: tests/kms_cursor_crc.: Test async cursor crc (rev2)
URL : https://patchwork.freedesktop.org/series/146062/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16261_full -> IGTPW_12741_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12741_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12741_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_12741/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12741_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_draw_crc@draw-method-blt:
- shard-glk: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk3/igt@kms_draw_crc@draw-method-blt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@kms_draw_crc@draw-method-blt.html
* igt@kms_flip@plain-flip-ts-check@a-vga1:
- shard-snb: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb5/igt@kms_flip@plain-flip-ts-check@a-vga1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@plain-flip-ts-check@a-vga1.html
New tests
---------
New tests have been introduced between CI_DRM_16261_full and IGTPW_12741_full:
### New IGT tests (18) ###
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change:
- Statuses : 6 pass(s)
- Exec time: [0.51, 1.85] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.59] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-1:
- Statuses : 4 pass(s)
- Exec time: [0.27, 0.82] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.24, 0.35] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_cursor_crc@async-cursor-crc-position-change:
- Statuses : 6 pass(s)
- Exec time: [0.52, 1.80] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.58] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.27, 0.89] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.47, 0.53] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.39] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.58] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.35] s
Known issues
------------
Here are the changes found in IGTPW_12741_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@debugfs_test@basic-hwmon.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9318])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +9 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +10 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2-9: NOTRUN -> [SKIP][15] ([i915#11527] / [i915#8414]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vecs1:
- shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vecs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_create@hog-create:
- shard-rkl: [PASS][20] -> [DMESG-WARN][21] ([i915#12964]) +23 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-3/igt@gem_create@hog-create.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@gem_create@hog-create.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [PASS][22] -> [INCOMPLETE][23] ([i915#12353])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb6/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@hang:
- shard-dg2-9: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_eio@hibernate:
- shard-tglu-1: NOTRUN -> [ABORT][27] ([i915#7975])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][28] ([i915#7975])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-internal-immediate:
- shard-mtlp: NOTRUN -> [ABORT][29] ([i915#13193])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_eio@in-flight-internal-immediate.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#13390])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@hog:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][36] -> [ABORT][37] ([i915#11713])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-8/igt@gem_exec_big@single.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_fence@submit:
- shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +8 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][47] ([i915#3281]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#7276])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-glk: NOTRUN -> [ABORT][52] ([i915#13661]) +1 other test abort
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_whisper@basic-queues:
- shard-snb: NOTRUN -> [SKIP][53] +73 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb5/igt@gem_exec_whisper@basic-queues.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][59] ([i915#2190])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613] / [i915#7582])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +11 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [DMESG-WARN][66] ([i915#5493]) +1 other test dmesg-warn
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#4613]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-dg2: [PASS][68] -> [ABORT][69] ([i915#13465] / [i915#13571]) +1 other test abort
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@gem_lmem_swapping@verify-random.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +9 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4077]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +8 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][78] ([i915#2658])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_pread@exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_pread@snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][83] ([i915#12964])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@gem_pxp@create-valid-protected-context.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +3 other tests timeout
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#13398])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#13398])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: [PASS][89] -> [TIMEOUT][90] ([i915#12964]) +1 other test timeout
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4270])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#5190] / [i915#8428]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190] / [i915#8428]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4079])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4077]) +14 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][97] ([i915#3323])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4958])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3297])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@reset-fd:
- shard-mtlp: [PASS][105] -> [ABORT][106] ([i915#13193])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-6/igt@gem_workarounds@reset-fd.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][107] +13 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@allowed-single:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#2856]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2856]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#13786])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@i915_fb_tiling@basic-x-tiling.html
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#13786])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#13786])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][120] -> [INCOMPLETE][121] ([i915#12455] / [i915#13820]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6590]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#6590]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6590]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6590]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [PASS][126] -> [DMESG-WARN][127] ([i915#4423]) +1 other test dmesg-warn
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][128] ([i915#8346])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#11681])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#4387])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6245])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#5723])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) +1 other test dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@i915_selftest@mock.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#4817])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7707]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4212])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4212])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#4212]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#4212]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12454] / [i915#12712])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8709]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#8709]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#8709]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#8709]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][147] ([i915#1769])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#1769] / [i915#3555])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +6 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5286]) +9 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#5286])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5286]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#5138])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][156] +29 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][157] +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5190]) +9 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3638]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3638]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5190]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#12313])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#6095]) +139 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#10307] / [i915#6095]) +156 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6095]) +9 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#10307] / [i915#6095]) +34 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#12805])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#12805])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#6095]) +100 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6095]) +59 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#6095]) +11 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12796]) +1 other test incomplete
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#6095]) +64 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13781]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3742])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +5 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu-1: NOTRUN -> [SKIP][183] +28 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +11 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#7118] / [i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#7116] / [i915#9424]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][193] ([i915#7173])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#9424])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3116])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#3299])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3299])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3299])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#7118] / [i915#9424])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9424])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#6944] / [i915#9424])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#7118])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#6944] / [i915#9424]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#7118] / [i915#9424]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8814]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3555]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][207] -> [FAIL][208] ([i915#13566]) +3 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8814]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#13049])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#13049])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: NOTRUN -> [FAIL][212] ([i915#13566]) +3 other tests fail
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3555]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#3555]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#13049]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#13046] / [i915#5354]) +6 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#4213])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- shard-glk: [PASS][219] -> [FAIL][220] ([i915#2346])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-glk: NOTRUN -> [FAIL][221] ([i915#2346])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][222] +87 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#9809]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#13046] / [i915#5354])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#9067])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#4103])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9833])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#9723])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9723])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9833])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#13691])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3804])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#3804])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#13749])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-9: NOTRUN -> [SKIP][235] ([i915#13748])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-9: NOTRUN -> [SKIP][236] ([i915#13707])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840] / [i915#9053])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#3840] / [i915#9053])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3840] / [i915#9053])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#3840] / [i915#9053])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#3840] / [i915#9053])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#13798])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#3469])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#2065] / [i915#4854])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#4854])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#4854])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#4854])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#658])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_feature_discovery@psr1.html
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#658])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#4881])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9934]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3637]) +6 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9934]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#3637]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#9934]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_flip@2x-plain-flip.html
- shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#9934]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#3637]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank@b-hdmi-a1:
- shard-glk: [PASS][264] -> [DMESG-WARN][265] ([i915#118]) +3 other tests dmesg-warn
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk2/igt@kms_flip@absolute-wf_vblank@b-hdmi-a1.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_flip@absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][266] -> [FAIL][267] ([i915#1522]) +5 other tests fail
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][268] ([i915#1522]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#8381])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#12745] / [i915#4839])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#12745])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-snb: [PASS][272] -> [FAIL][273] ([i915#1522])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb5/igt@kms_flip@plain-flip-ts-check.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@plain-flip-ts-check.html
- shard-tglu: NOTRUN -> [FAIL][274] ([i915#1522]) +2 other tests fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [PASS][275] -> [FAIL][276] ([i915#1522]) +1 other test fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-3/igt@kms_flip@plain-flip-ts-check-interruptible.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1:
- shard-glk: NOTRUN -> [DMESG-WARN][277] ([i915#118]) +5 other tests dmesg-warn
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#2672]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2672]) +5 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#8813]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#2672] / [i915#3555] / [i915#5190])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#2672]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#2672] / [i915#3555]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#2587] / [i915#2672]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#2587] / [i915#2672]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#8708]) +22 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#5354]) +22 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#8708]) +9 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#1825]) +34 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [PASS][297] -> [SKIP][298] +8 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#8708]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#5439])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#5439])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3458]) +12 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][303] +39 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][304] +33 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#8708]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#1825]) +52 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][307] ([i915#3458]) +8 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2-9: NOTRUN -> [SKIP][308] ([i915#9766])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#10433] / [i915#3458])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][310] ([i915#5354]) +10 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3023]) +30 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3458]) +15 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [PASS][313] -> [SKIP][314] ([i915#3555] / [i915#8228])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#12713])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#10656]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#10656])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#10656])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#10656])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#10656])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#13688])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#13522])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#6301])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#6301])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#6301])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][326] -> [DMESG-FAIL][327] ([i915#12964]) +1 other test dmesg-fail
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13026]) +1 other test incomplete
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][329] ([i915#10647] / [i915#12177])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][330] ([i915#10647] / [i915#12169])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/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][331] ([i915#10647]) +3 other tests fail
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-256:
- shard-rkl: NOTRUN -> [DMESG-WARN][332] ([i915#12964]) +12 other tests dmesg-warn
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-256.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#11614] / [i915#3582]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#10226] / [i915#11614] / [i915#3582]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][335] ([i915#8821])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#3555]) +5 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#6953])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#6953])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#6953])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#12247] / [i915#9423])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#12247]) +8 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12247]) +14 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#12247]) +13 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#12247]) +17 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#12247]) +8 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#12247] / [i915#6953])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#12247] / [i915#3555] / [i915#9423])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#12247] / [i915#3555])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#12247]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#5354])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#12343])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#9685])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#3828])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#4281])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][355] -> [SKIP][356] ([i915#9340])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#3828])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#8430])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#8430])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#9519])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][361] -> [SKIP][362] ([i915#9519]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9519])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9519])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#6524])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#11520]) +7 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][367] ([i915#11520])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12316]) +9 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#9808]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#11520]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][371] ([i915#11520]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#11520]) +7 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#11520]) +14 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#11520]) +7 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][375] ([i915#11520]) +22 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#9683])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#9683])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#9683])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][379] ([i915#4348])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-9: NOTRUN -> [SKIP][380] ([i915#1072] / [i915#9732]) +9 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9688]) +21 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][382] ([i915#9732]) +22 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +18 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#9732]) +5 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#4077] / [i915#9688]) +3 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][386] +669 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#1072] / [i915#9732]) +26 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_psr@psr2-suspend.html
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#1072] / [i915#9732]) +16 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#9685])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#9685])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#9685])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#12755])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][393] ([i915#12755]) +3 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#5190])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][395] ([i915#5289])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#5289])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][397] ([i915#5289]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][398] ([i915#12755]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#3555])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][400] ([i915#13179]) +1 other test abort
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-5/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][401] ([i915#13179]) +1 other test abort
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#3555] / [i915#8809])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-9: NOTRUN -> [SKIP][403] ([i915#8623])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#8623])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][405] ([i915#9906]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [PASS][406] -> [SKIP][407] ([i915#3555] / [i915#9906])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_vrr@negative-basic.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#9906])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-rkl: NOTRUN -> [SKIP][409] ([i915#9906])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#9906])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][411] ([i915#8808] / [i915#9906])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#2437])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#2437])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#2437] / [i915#9412])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][415] ([i915#2437] / [i915#9412])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][416] ([i915#2437] / [i915#9412]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][417] ([i915#2437] / [i915#9412])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][418] ([i915#2437] / [i915#9412])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][419] ([i915#2437])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-mtlp: [PASS][420] -> [FAIL][421] ([i915#10538])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][422] ([i915#7387])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][423] ([i915#2434])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][424] ([i915#2435])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][425] ([i915#2433])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][426] ([i915#2433])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@invalid-init:
- shard-tglu: NOTRUN -> [FAIL][427] ([i915#13663])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@perf_pmu@invalid-init.html
- shard-glk: NOTRUN -> [FAIL][428] ([i915#13663])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@perf_pmu@invalid-init.html
- shard-dg2-9: NOTRUN -> [FAIL][429] ([i915#13663])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][430] ([i915#8516])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][431] ([i915#3708])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][432] ([i915#3708])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][433] ([i915#9917])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][434] ([i915#9917])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-9: NOTRUN -> [SKIP][435] ([i915#9917])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@drm_fdinfo@busy:
- shard-rkl: [DMESG-WARN][436] ([i915#12964]) -> [PASS][437] +10 other tests pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@drm_fdinfo@busy.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@drm_fdinfo@busy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][438] ([i915#13356]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@gem_ccs@suspend-resume.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][440] ([i915#12392] / [i915#13356]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][442] ([i915#5784]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@gem_eio@kms.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][444] ([i915#12543] / [i915#5784]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-19/igt@gem_eio@reset-stress.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [ABORT][446] ([i915#13193]) -> [PASS][447] +3 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@gem_eio@unwedge-stress.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_eio@unwedge-stress.html
- shard-dg1: [FAIL][448] ([i915#12714] / [i915#5784]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-14/igt@gem_eio@unwedge-stress.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: [TIMEOUT][450] ([i915#12917] / [i915#12964]) -> [PASS][451] +2 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@i915_hangman@detector@vcs1:
- shard-mtlp: [DMESG-WARN][452] -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@i915_hangman@detector@vcs1.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@i915_hangman@detector@vcs1.html
* igt@i915_pm_rps@reset:
- shard-dg2: [FAIL][454] ([i915#13598]) -> [PASS][455]
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-1/igt@i915_pm_rps@reset.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@i915_pm_rps@reset.html
- shard-dg1: [FAIL][456] ([i915#13598]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-14/igt@i915_pm_rps@reset.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][458] ([i915#7984]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@i915_power@sanity.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@i915_power@sanity.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][460] ([i915#12061]) -> [PASS][461] +1 other test pass
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [FAIL][462] ([i915#12518] / [i915#12766]) -> [PASS][463]
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][464] ([i915#5956]) -> [PASS][465] +1 other test pass
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-tglu: [FAIL][466] ([i915#13566]) -> [PASS][467] +3 other tests pass
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][468] ([i915#3555]) -> [PASS][469] +1 other test pass
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-snb: [FAIL][470] ([i915#11832] / [i915#1522]) -> [PASS][471]
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][472] ([i915#11832]) -> [PASS][473] +1 other test pass
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][474] -> [PASS][475] +1 other test pass
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [FAIL][476] ([i915#11832] / [i915#13734]) -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][478] ([i915#1522]) -> [PASS][479] +1 other test pass
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][480] ([i915#6880]) -> [PASS][481]
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][482] ([i915#3555] / [i915#8228]) -> [PASS][483] +1 other test pass
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][484] ([i915#9519]) -> [PASS][485] +1 other test pass
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_setmode@basic:
- shard-dg2: [FAIL][486] ([i915#5465]) -> [PASS][487]
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@kms_setmode@basic.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][488] ([i915#5465]) -> [PASS][489] +2 other tests pass
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-rkl: [DMESG-WARN][490] ([i915#12917] / [i915#12964]) -> [PASS][491]
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-rpm.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [FAIL][492] ([i915#4349]) -> [PASS][493] +2 other tests pass
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@most-busy-check-all:
- shard-dg2: [FAIL][494] ([i915#11943]) -> [PASS][495] +1 other test pass
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@perf_pmu@most-busy-check-all.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@perf_pmu@most-busy-check-all.html
- shard-dg1: [FAIL][496] ([i915#11943]) -> [PASS][497] +1 other test pass
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@perf_pmu@most-busy-check-all.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@most-busy-check-all@bcs0:
- shard-mtlp: [FAIL][498] ([i915#11943]) -> [PASS][499] +1 other test pass
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@bcs0.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@perf_pmu@most-busy-check-all@bcs0.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][500] ([i915#7118] / [i915#9424]) -> [FAIL][501] ([i915#7173])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-6/igt@kms_content_protection@atomic.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [INCOMPLETE][502] ([i915#8816]) -> [SKIP][503] +2 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_content_protection@atomic-dpms.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][504] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][505] ([i915#7118] / [i915#9424])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_content_protection@type1.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][506] ([i915#13566]) -> [DMESG-WARN][507] ([i915#12917] / [i915#12964])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: [SKIP][508] ([i915#9723]) -> [SKIP][509] ([i915#4423] / [i915#9723])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][510] ([i915#4423]) -> [SKIP][511]
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-dg1: [SKIP][512] ([i915#4423] / [i915#8708]) -> [SKIP][513] ([i915#8708]) +1 other test skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][514] ([i915#10433] / [i915#3458]) -> [SKIP][515] ([i915#3458])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][516] ([i915#1187] / [i915#12713]) -> [SKIP][517] ([i915#12713])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr@pr-cursor-render:
- shard-dg1: [SKIP][518] ([i915#1072] / [i915#9732]) -> [SKIP][519] ([i915#1072] / [i915#4423] / [i915#9732])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-15/igt@kms_psr@pr-cursor-render.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_psr@pr-cursor-render.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: [INCOMPLETE][520] ([i915#5493]) -> [WARN][521] ([i915#9351])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@prime_mmap@test_aperture_limit.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][522] ([i915#5493]) -> [CRASH][523] ([i915#9351])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[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#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[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#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12766
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13571]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571
[i915#13598]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13598
[i915#13661]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13661
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#1522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522
[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#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#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#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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8270 -> IGTPW_12741
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16261: 003c44ec0b7d86569bd13d4a810ee24176c3d034 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12741: 12741
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ 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_12741/index.html
[-- Attachment #2: Type: text/html, Size: 174158 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
` (2 preceding siblings ...)
2025-03-11 7:22 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-03-12 0:03 ` Patchwork
2025-03-12 11:10 ` Chauhan, Shekhar
2025-03-12 11:28 ` [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Ville Syrjälä
4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-03-12 0:03 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 81684 bytes --]
== Series Details ==
Series: tests/kms_cursor_crc.: Test async cursor crc (rev2)
URL : https://patchwork.freedesktop.org/series/146062/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12741_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12741_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12741_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12741_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-lnl: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
#### Warnings ####
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [ABORT][5] ([Intel XE#2705]) -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [ABORT][7] ([Intel XE#4502]) -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [ABORT][9] ([Intel XE#4268]) -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_pm@s4-vm-bind-prefetch.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
New tests
---------
New tests have been introduced between XEIGT_8270_full and XEIGTPW_12741_full:
### New IGT tests (14) ###
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change:
- Statuses : 3 pass(s)
- Exec time: [0.97, 2.18] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.57] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.60] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.46] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_cursor_crc@async-cursor-crc-position-change:
- Statuses : 3 pass(s)
- Exec time: [0.90, 2.14] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.60] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.56] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.42] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
Known issues
------------
Here are the changes found in XEIGTPW_12741_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#3768])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3768])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3768])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#664])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3279])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [DMESG-WARN][17] ([Intel XE#324]) +4 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3658])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +13 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +12 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#607])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#607])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1477])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +10 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#367]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +14 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2907])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3432]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#787]) +158 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#3124])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#1727] / [Intel XE#3113])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +20 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +39 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4417]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4417]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#4416]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2724]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#4416]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#306]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2325]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#306]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2252]) +14 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#373]) +11 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3278])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2390])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#3304])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1188])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2321])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#308]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1424]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#323]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2286])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#309]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#309])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2291]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1508])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1340])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4354])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2244])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#2244])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4422])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#776])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#703])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2373])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2374])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1421]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#310]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#301] / [Intel XE#3321])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#301]) +4 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#310])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2316]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bd-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][94] ([Intel XE#2049]) +1 other test incomplete
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bd-hdmi-a2-dp2.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [TIMEOUT][95] ([Intel XE#1504]) +1 other test timeout
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#886]) +2 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
- shard-bmg: [PASS][98] -> [INCOMPLETE][99] ([Intel XE#2049]) +1 other test incomplete
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#301] / [Intel XE#3321])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#301]) +2 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: NOTRUN -> [INCOMPLETE][104] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#455]) +17 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1397] / [Intel XE#1745])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1397])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#651]) +20 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#656]) +40 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][114] -> [SKIP][115] ([Intel XE#656]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#4141]) +10 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#651]) +27 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2311]) +29 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2313]) +35 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2312]) +14 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#656]) +7 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#653]) +29 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2340])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1450] / [Intel XE#2568])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1450]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#346]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#346]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#346])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2934])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- shard-lnl: [PASS][130] -> [DMESG-FAIL][131] ([Intel XE#324])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#599]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2393])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2493])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2493])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][136] ([Intel XE#2566])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#870])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#870]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#718])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1489]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2893]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1489]) +10 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1128])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1406]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2414])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#3414]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1127])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#1127])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1435]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1435]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2-set2: [PASS][160] -> [SKIP][161] ([Intel XE#455])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#330])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#330])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2450])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1499])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2168])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#756])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#756]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1123]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#4497])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_eu_stall@blocking-read.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2905]) +10 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2905] / [Intel XE#3889])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +8 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#688]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2322]) +9 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#1392]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-dg2-set2: [PASS][178] -> [SKIP][179] ([Intel XE#1392]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_exec_basic@multigpu-once-rebind.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1392]) +10 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#288]) +26 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#2905]) +14 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#4045])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203]) -> ([PASS][204], [SKIP][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224]) ([Intel XE#2457])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#979])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#979])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#1061])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@xe_peer2peer@write.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][230] ([Intel XE#1173]) +1 other test fail
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#2284])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#2284] / [Intel XE#366])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#584]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: NOTRUN -> [ABORT][234] ([Intel XE#4268]) +1 other test abort
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html
- shard-dg2-set2: NOTRUN -> [ABORT][235] ([Intel XE#4268])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: NOTRUN -> [ABORT][236] ([Intel XE#4268])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#944]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: NOTRUN -> [SKIP][238] ([Intel XE#944])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#944]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#3342])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#3862]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [SKIP][243] ([Intel XE#309]) -> [PASS][244] +4 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][245] ([Intel XE#2291]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][247] ([Intel XE#4302]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#2049]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][251] ([Intel XE#3321]) -> [PASS][252] +2 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [SKIP][253] ([Intel XE#2316]) -> [PASS][254] +1 other test pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg2-set2: [SKIP][255] ([Intel XE#310]) -> [PASS][256] +2 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][257] ([Intel XE#301]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][259] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][260] +1 other test pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][261] ([Intel XE#656]) -> [PASS][262] +3 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][263] ([Intel XE#4328]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html
- shard-bmg: [SKIP][265] ([Intel XE#3012]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-4:
- shard-lnl: [DMESG-FAIL][267] ([Intel XE#324]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2-set2: [SKIP][269] ([Intel XE#455]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][271] ([Intel XE#1392]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: [FAIL][273] ([Intel XE#1999]) -> [PASS][274] +2 other tests pass
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_oa@buffer-size:
- shard-lnl: [FAIL][275] -> [PASS][276] +1 other test pass
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_oa@buffer-size.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_oa@buffer-size.html
- shard-bmg: [FAIL][277] -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_oa@buffer-size.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_oa@buffer-size.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][279] ([Intel XE#787]) -> [SKIP][280] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][281] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][282] ([Intel XE#787]) +5 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [SKIP][283] ([Intel XE#455]) -> [FAIL][284] ([Intel XE#1178])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][285] ([Intel XE#455]) -> [FAIL][286] ([Intel XE#1188])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@uevent.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][287] ([Intel XE#2312]) -> [SKIP][288] ([Intel XE#2311]) +12 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][289] ([Intel XE#656]) -> [SKIP][290] ([Intel XE#651]) +9 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][291] ([Intel XE#651]) -> [SKIP][292] ([Intel XE#656]) +8 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][293] ([Intel XE#2311]) -> [SKIP][294] ([Intel XE#2312]) +16 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#4141]) +7 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][297] ([Intel XE#4141]) -> [SKIP][298] ([Intel XE#2312]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][299] ([Intel XE#656]) -> [SKIP][300] ([Intel XE#653]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][301] ([Intel XE#2313]) -> [SKIP][302] ([Intel XE#2312]) +9 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][303] ([Intel XE#653]) -> [SKIP][304] ([Intel XE#656]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [SKIP][306] ([Intel XE#2313]) +8 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][307] ([Intel XE#362]) -> [FAIL][308] ([Intel XE#1729])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [ABORT][309] ([Intel XE#4054]) -> [ABORT][310] ([Intel XE#4268])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_pm@s4-basic-exec.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@s4-basic-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045
[Intel XE#4054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4502
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8270 -> IGTPW_12741
* Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 -> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034
IGTPW_12741: 12741
IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2789-714f93e4c086c6e07187597bd446752f5f65b544: 714f93e4c086c6e07187597bd446752f5f65b544
xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034: 003c44ec0b7d86569bd13d4a810ee24176c3d034
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/index.html
[-- Attachment #2: Type: text/html, Size: 96101 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-11 7:22 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-03-12 11:10 ` Chauhan, Shekhar
0 siblings, 0 replies; 8+ messages in thread
From: Chauhan, Shekhar @ 2025-03-12 11:10 UTC (permalink / raw)
To: igt-dev
[-- Attachment #1: Type: text/plain, Size: 170113 bytes --]
Failures unrelated.
On 3/11/2025 12:52, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* tests/kms_cursor_crc.: Test async cursor crc (rev2)
> *URL:* https://patchwork.freedesktop.org/series/146062/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/index.html
>
>
> CI Bug Log - changes from CI_DRM_16261_full -> IGTPW_12741_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_12741_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12741_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_12741/index.html
>
>
> Participating hosts (11 -> 10)
>
> Missing (1): pig-kbl-iris
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_12741_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_draw_crc@draw-method-blt:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk3/igt@kms_draw_crc@draw-method-blt.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@kms_draw_crc@draw-method-blt.html>
> +1 other test dmesg-warn
> *
>
> igt@kms_flip@plain-flip-ts-check@a-vga1:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb5/igt@kms_flip@plain-flip-ts-check@a-vga1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@plain-flip-ts-check@a-vga1.html>
>
>
> New tests
>
> New tests have been introduced between CI_DRM_16261_full and
> IGTPW_12741_full:
>
>
> New IGT tests (18)
>
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change:
>
> o Statuses : 6 pass(s)
> o Exec time: [0.51, 1.85] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.59] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-1:
>
> o Statuses : 4 pass(s)
> o Exec time: [0.27, 0.82] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-4:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.56] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-b-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.40] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-c-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.48] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [1.26] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-1:
>
> o Statuses : 2 pass(s)
> o Exec time: [0.24, 0.35] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-4:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.34] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change:
>
> o Statuses : 6 pass(s)
> o Exec time: [0.52, 1.80] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.58] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-1:
>
> o Statuses : 3 pass(s)
> o Exec time: [0.27, 0.89] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-3:
>
> o Statuses : 2 pass(s)
> o Exec time: [0.47, 0.53] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-b-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.39] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-c-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.58] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [1.22] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.24] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-3:
>
> o Statuses : 2 pass(s)
> o Exec time: [0.35] s
>
>
> Known issues
>
> Here are the changes found in IGTPW_12741_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@api_intel_bb@blit-reloc-keep-cache:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@api_intel_bb@crc32:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@api_intel_bb@crc32.html>
> (i915#6230
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>)
> *
>
> igt@api_intel_bb@object-reloc-purge-cache:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> *
>
> igt@debugfs_test@basic-hwmon:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html>
> (i915#9318
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@debugfs_test@basic-hwmon.html>
> (i915#9318
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@debugfs_test@basic-hwmon.html>
> (i915#9318
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318>)
> *
>
> igt@drm_fdinfo@busy-check-all@bcs0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> +7 other tests skip
> *
>
> igt@drm_fdinfo@busy-check-all@ccs0:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> +9 other tests skip
> *
>
> igt@drm_fdinfo@busy-check-all@vecs1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@drm_fdinfo@busy-check-all@vecs1.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> +10 other tests skip
> *
>
> igt@drm_fdinfo@busy-idle-check-all@vcs0:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vcs0.html>
> (i915#11527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>
> / i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> +6 other tests skip
> *
>
> igt@drm_fdinfo@busy-idle-check-all@vecs1:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@drm_fdinfo@busy-idle-check-all@vecs1.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> *
>
> igt@gem_ccs@block-multicopy-compressed:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_ccs@block-multicopy-inplace:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_ccs@suspend-resume:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_ccs@suspend-resume.html>
> (i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_create@hog-create:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-3/igt@gem_create@hog-create.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@gem_create@hog-create.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +23 other tests dmesg-warn
> *
>
> igt@gem_ctx_isolation@preservation-s3@rcs0:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html>
> (i915#12353
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353>)
> *
>
> igt@gem_ctx_persistence@engines-queued:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb6/igt@gem_ctx_persistence@engines-queued.html>
> (i915#1099
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>)
> +1 other test skip
> *
>
> igt@gem_ctx_persistence@hang:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_ctx_persistence@hang.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
> *
>
> igt@gem_ctx_persistence@heartbeat-close:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-close.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
> *
>
> igt@gem_eio@hibernate:
>
> o shard-tglu-1: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_eio@hibernate.html>
> (i915#7975
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>)
> o shard-dg2: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_eio@hibernate.html>
> (i915#7975
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>)
> *
>
> igt@gem_eio@in-flight-internal-immediate:
>
> o shard-mtlp: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_eio@in-flight-internal-immediate.html>
> (i915#13193
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>)
> *
>
> igt@gem_eio@in-flight-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@gem_eio@in-flight-suspend.html>
> (i915#13390
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390>)
> *
>
> igt@gem_exec_balancer@bonded-false-hang:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +2 other tests skip
> *
>
> igt@gem_exec_balancer@hog:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@gem_exec_balancer@hog.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +2 other tests skip
> *
>
> igt@gem_exec_balancer@noheartbeat:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
> *
>
> igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> *
>
> igt@gem_exec_balancer@parallel-out-fence:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> +1 other test skip
> *
>
> igt@gem_exec_big@single:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-8/igt@gem_exec_big@single.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_exec_big@single.html>
> (i915#11713
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>)
> *
>
> igt@gem_exec_fence@submit:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_fence@submit.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_flush@basic-uc-rw-default:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_flush@basic-uc-rw-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> *
>
> igt@gem_exec_flush@basic-uc-set-default:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>)
> *
>
> igt@gem_exec_flush@basic-wb-rw-before-default:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_exec_flush@basic-wb-rw-before-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> +1 other test skip
> *
>
> igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +8 other tests skip
> *
>
> igt@gem_exec_reloc@basic-softpin:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@gem_exec_reloc@basic-softpin.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +7 other tests skip
> *
>
> igt@gem_exec_reloc@basic-wc-read-noreloc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +10 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +6 other tests skip
> *
>
> igt@gem_exec_reloc@basic-write-wc-noreloc:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_exec_reloc@basic-write-wc-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +5 other tests skip
> *
>
> igt@gem_exec_schedule@semaphore-power:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html>
> (i915#7276
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +2 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +1 other test skip
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_exec_suspend@basic-s4-devices:
>
> o shard-glk: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@gem_exec_suspend@basic-s4-devices.html>
> (i915#13661
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13661>)
> +1 other test abort
> *
>
> igt@gem_exec_whisper@basic-queues:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb5/igt@gem_exec_whisper@basic-queues.html>
> +73 other tests skip
> *
>
> igt@gem_fence_thrash@bo-write-verify-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> +2 other tests skip
> *
>
> igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> *
>
> igt@gem_fenced_exec_thrash@too-many-fences:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> +2 other tests skip
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)
> *
>
> igt@gem_lmem_evict@dontneed-evict-race:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>
> / i915#7582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>)
> *
>
> igt@gem_lmem_swapping@heavy-random:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +4 other tests skip
> *
>
> igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +11 other tests skip
> *
>
> igt@gem_lmem_swapping@parallel-random-verify-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +7 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html>
> (i915#12193
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>)
> *
>
> igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html>
> (i915#4565
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>)
> *
>
> igt@gem_lmem_swapping@smem-oom@lmem0:
>
> o shard-dg2: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html>
> (i915#5493
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
> +1 other test dmesg-warn
> *
>
> igt@gem_lmem_swapping@verify-ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +5 other tests skip
> *
>
> igt@gem_lmem_swapping@verify-random:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@gem_lmem_swapping@verify-random.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@gem_lmem_swapping@verify-random.html>
> (i915#13465
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465>
> / i915#13571
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571>)
> +1 other test abort
> *
>
> igt@gem_mmap_gtt@basic-small-bo:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +9 other tests skip
> *
>
> igt@gem_mmap_gtt@cpuset-big-copy:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_mmap_gtt@cpuset-big-copy.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +7 other tests skip
> *
>
> igt@gem_mmap_gtt@medium-copy-odd:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@gem_mmap_gtt@medium-copy-odd.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +8 other tests skip
> *
>
> igt@gem_mmap_wc@copy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gem_mmap_wc@copy.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +4 other tests skip
> *
>
> igt@gem_mmap_wc@fault-concurrent:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +2 other tests skip
> *
>
> igt@gem_mmap_wc@write-gtt-read-wc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@gem_mmap_wc@write-gtt-read-wc.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +4 other tests skip
> *
>
> igt@gem_mmap_wc@write-read:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@gem_mmap_wc@write-read.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +3 other tests skip
> *
>
> igt@gem_partial_pwrite_pread@reads-uncached:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +1 other test skip
> *
>
> igt@gem_pread@exhaustion:
>
> o shard-glk: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@gem_pread@exhaustion.html>
> (i915#2658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@gem_pread@exhaustion.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +4 other tests skip
> *
>
> igt@gem_pread@snoop:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_pread@snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pread@snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +4 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_pread@snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +3 other tests skip
> *
>
> igt@gem_pxp@create-valid-protected-context:
>
> o shard-rkl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@gem_pxp@create-valid-protected-context.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_pxp@create-valid-protected-context.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +2 other tests skip
> *
>
> igt@gem_pxp@hw-rejects-pxp-context:
>
> o shard-rkl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html>
> (i915#12917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917>
> / i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +3 other tests timeout
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html>
> (i915#13398
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-context.html>
> (i915#13398
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>)
> *
>
> igt@gem_pxp@protected-raw-src-copy-not-readible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +3 other tests skip
> *
>
> igt@gem_pxp@regular-baseline-src-copy-readible:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html>
> -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +1 other test timeout
> *
>
> igt@gem_pxp@reject-modify-context-protection-off-3:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-3.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> *
>
> igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>
> / i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +2 other tests skip
> *
>
> igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html>
> (i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +4 other tests skip
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>
> / i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +4 other tests skip
> *
>
> igt@gem_render_tiled_blits@basic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@gem_render_tiled_blits@basic.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> *
>
> igt@gem_tiled_partial_pwrite_pread@reads:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gem_tiled_partial_pwrite_pread@reads.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +14 other tests skip
> *
>
> igt@gem_userptr_blits@dmabuf-sync:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html>
> (i915#3323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
> *
>
> igt@gem_userptr_blits@sd-probe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@gem_userptr_blits@sd-probe.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>)
> *
>
> igt@gem_userptr_blits@unsync-unmap-after-close:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> +1 other test skip
> *
>
> igt@gem_userptr_blits@unsync-unmap-cycles:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> +3 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_workarounds@reset-fd:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-6/igt@gem_workarounds@reset-fd.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@gem_workarounds@reset-fd.html>
> (i915#13193
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>)
> *
>
> igt@gen3_render_tiledx_blits:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@gen3_render_tiledx_blits.html>
> +13 other tests skip
> *
>
> igt@gen9_exec_parse@allowed-single:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@gen9_exec_parse@allowed-single.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@batch-invalid-length:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +6 other tests skip
> *
>
> igt@gen9_exec_parse@batch-zero-length:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> *
>
> igt@gen9_exec_parse@bb-oversize:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +3 other tests skip
> *
>
> igt@gen9_exec_parse@cmd-crossing-page:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +2 other tests skip
> *
>
> igt@gen9_exec_parse@secure-batches:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@shadow-peek:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +2 other tests skip
> *
>
> igt@i915_fb_tiling@basic-x-tiling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@i915_fb_tiling@basic-x-tiling.html>
> (i915#13786
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@i915_fb_tiling@basic-x-tiling.html>
> (i915#13786
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html>
> (i915#13786
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786>)
> *
>
> igt@i915_pm_freq_api@freq-basic-api:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_freq_api@freq-reset-multiple:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_freq_api@freq-suspend@gt0:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html>
> (i915#12455
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455>
> / i915#13820
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>)
> +1 other test incomplete
> *
>
> igt@i915_pm_freq_mult@media-freq@gt0:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html>
> (i915#6590
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html>
> (i915#6590
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html>
> (i915#6590
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>)
> +1 other test skip
> *
>
> igt@i915_pm_freq_mult@media-freq@gt1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html>
> (i915#6590
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>)
> +2 other tests skip
> *
>
> igt@i915_pm_rpm@system-suspend-execbuf:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> +1 other test dmesg-warn
> *
>
> igt@i915_pm_rps@reset:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@i915_pm_rps@reset.html>
> (i915#8346
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346>)
> *
>
> igt@i915_pm_rps@thresholds-idle:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html>
> (i915#11681
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>)
> *
>
> igt@i915_pm_sseu@full-enable:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_pm_sseu@full-enable.html>
> (i915#4387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>)
> *
>
> igt@i915_query@hwconfig_table:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@i915_query@hwconfig_table.html>
> (i915#6245
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> *
>
> igt@i915_query@test-query-geometry-subslices:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html>
> (i915#5723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
> *
>
> igt@i915_selftest@mock:
>
> o shard-tglu: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@i915_selftest@mock.html>
> (i915#9311
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>)
> +1 other test dmesg-warn
> o shard-glk: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@i915_selftest@mock.html>
> (i915#9311
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>)
> +1 other test dmesg-warn
> *
>
> igt@i915_suspend@sysfs-reader:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@i915_suspend@sysfs-reader.html>
> (i915#4817
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> *
>
> igt@intel_hwmon@hwmon-write:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@intel_hwmon@hwmon-write.html>
> (i915#7707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>)
> +1 other test skip
> *
>
> igt@kms_addfb_basic@basic-x-tiled-legacy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_addfb_basic@basic-x-tiled-legacy.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> *
>
> igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> +1 other test skip
> *
>
> igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html>
> (i915#12454
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454>
> / i915#12712
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html>
> (i915#8709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>)
> +7 other tests skip
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html>
> (i915#8709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>)
> +4 other tests skip
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html>
> (i915#8709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>)
> +3 other tests skip
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html>
> (i915#8709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>)
> +7 other tests skip
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>)
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html>
> (i915#1769
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +6 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +9 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +6 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> (i915#5138
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> *
>
> igt@kms_big_fb@linear-64bpp-rotate-270:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> +29 other tests skip
> *
>
> igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html>
> +5 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-64bpp-rotate-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +9 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +4 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> +4 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +5 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>)
> +3 other tests skip
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html>
> (i915#12313
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> +1 other test skip
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +139 other tests skip
> *
>
> igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +156 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +9 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +34 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html>
> (i915#12805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html>
> (i915#12805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +100 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +59 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +11 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html>
> (i915#12796
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>)
> +1 other test incomplete
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +64 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#10434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +1 other test skip
> *
>
> igt@kms_cdclk@mode-transition:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_cdclk@mode-transition.html>
> (i915#13781
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>)
> +4 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_cdclk@mode-transition.html>
> (i915#3742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
> *
>
> igt@kms_chamelium_audio@dp-audio:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +5 other tests skip
> *
>
> igt@kms_chamelium_color@ctm-0-50:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_chamelium_color@ctm-0-50.html>
> +28 other tests skip
> *
>
> igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +1 other test skip
> *
>
> igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_frames@hdmi-crc-fast:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-fast.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +2 other tests skip
> *
>
> igt@kms_chamelium_hpd@dp-hpd:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +11 other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +8 other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html>
> (i915#11151
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>
> / i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#7116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>
> / i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> +1 other test skip
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_content_protection@atomic-dpms.html>
> (i915#7116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> +1 other test skip
> *
>
> igt@kms_content_protection@atomic@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> *
>
> igt@kms_content_protection@content-type-change:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_content_protection@content-type-change.html>
> (i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@dp-mst-type-0:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#3116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html>
> (i915#3299
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
> *
>
> igt@kms_content_protection@legacy:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_content_protection@legacy.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@lic-type-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_content_protection@lic-type-0.html>
> (i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_content_protection@lic-type-0.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_content_protection@srm.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_content_protection@uevent.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> +3 other tests skip
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_content_protection@uevent.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> +3 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-offscreen-64x21:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-64x21.html>
> (i915#8814
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-offscreen-max-size:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-max-size.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +4 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +3 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-onscreen-32x32:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8814
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> *
>
> igt@kms_cursor_crc@cursor-random-256x85:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> +3 other tests fail
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +6 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-max-size:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x32:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x32.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-512x512:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html>
> (i915#13049
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> +2 other tests skip
> *
>
> igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html>
> (i915#13046
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +6 other tests skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html>
> (i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> *
>
> igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html>
> (i915#2346
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>)
> *
>
> igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html>
> (i915#2346
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html>
> +87 other tests skip
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html>
> (i915#9809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>)
> +5 other tests skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html>
> (i915#13046
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046>
> / i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> *
>
> igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html>
> (i915#9067
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>)
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> *
>
> igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9833
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html>
> (i915#9833
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>)
> *
>
> igt@kms_display_modes@extended-mode-basic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html>
> (i915#13691
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html>
> (i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dp_link_training@non-uhbr-sst:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_dp_link_training@non-uhbr-sst.html>
> (i915#13749
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> *
>
> igt@kms_dp_link_training@uhbr-sst:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html>
> (i915#13748
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> *
>
> igt@kms_dp_linktrain_fallback@dp-fallback:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html>
> (i915#13707
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
> *
>
> igt@kms_dsc@dsc-fractional-bpp-with-bpc:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_dsc@dsc-with-output-formats:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> +1 other test skip
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9053
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9053
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9053
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9053
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9053
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
> *
>
> igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html>
> (i915#13798
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#3469
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>)
> *
>
> igt@kms_feature_discovery@chamelium:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-4/igt@kms_feature_discovery@chamelium.html>
> (i915#2065
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065>
> / i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_feature_discovery@chamelium.html>
> (i915#4854
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
> *
>
> igt@kms_feature_discovery@psr1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_feature_discovery@psr1.html>
> (i915#658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_feature_discovery@psr1.html>
> (i915#658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
> *
>
> igt@kms_fence_pin_leak:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_fence_pin_leak.html>
> (i915#4881
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>)
> *
>
> igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +3 other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>)
> +6 other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-panning:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +4 other tests skip
> *
>
> igt@kms_flip@2x-nonexisting-fb:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>)
> +2 other tests skip
> *
>
> igt@kms_flip@2x-plain-flip:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_flip@2x-plain-flip.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +9 other tests skip
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip@2x-plain-flip.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +1 other test skip
> *
>
> igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>)
> +1 other test skip
> *
>
> igt@kms_flip@absolute-wf_vblank@b-hdmi-a1:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-glk2/igt@kms_flip@absolute-wf_vblank@b-hdmi-a1.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_flip@absolute-wf_vblank@b-hdmi-a1.html>
> (i915#118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118>)
> +3 other tests dmesg-warn
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> +5 other tests fail
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a2.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> +1 other test fail
> *
>
> igt@kms_flip@flip-vs-fences-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html>
> (i915#8381
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
> *
>
> igt@kms_flip@flip-vs-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_flip@flip-vs-suspend.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>
> / i915#4839
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
> *
>
> igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html>
> (i915#12745
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>)
> *
>
> igt@kms_flip@plain-flip-ts-check:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb5/igt@kms_flip@plain-flip-ts-check.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@plain-flip-ts-check.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_flip@plain-flip-ts-check.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> +2 other tests fail
> *
>
> igt@kms_flip@plain-flip-ts-check-interruptible:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-3/igt@kms_flip@plain-flip-ts-check-interruptible.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> +1 other test fail
> *
>
> igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1:
>
> o shard-glk: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk8/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1.html>
> (i915#118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118>)
> +5 other tests dmesg-warn
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> +4 other tests skip
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +5 other tests skip
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#8813
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813>)
> +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +5 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +3 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +22 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +22 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +34 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html>
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html>
> +39 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html>
> +33 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +52 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html>
> (i915#9766
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +30 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +15 other tests skip
> *
>
> igt@kms_hdr@bpc-switch-dpms:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_hdr@brightness-with-hdr:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html>
> (i915#12713
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
> *
>
> igt@kms_joiner@basic-big-joiner:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_joiner@basic-big-joiner.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_joiner@basic-big-joiner.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_joiner@basic-big-joiner.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> *
>
> igt@kms_joiner@basic-max-non-joiner:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html>
> (i915#13688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>)
> *
>
> igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html>
> (i915#13522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
> *
>
> igt@kms_panel_fitting@atomic-fastset:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> *
>
> igt@kms_pipe_crc_basic@suspend-read-crc:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +1 other test dmesg-fail
> *
>
> igt@kms_plane@plane-panning-bottom-right-suspend:
>
> o shard-glk: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend.html>
> (i915#13026
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026>)
> +1 other test incomplete
> *
>
> igt@kms_plane_alpha_blend@alpha-transparent-fb:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>
> / i915#12177
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177>)
> *
>
> igt@kms_plane_alpha_blend@constant-alpha-max:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>
> / i915#12169
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>)
> *
>
> igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html>
> (i915#10647
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>)
> +3 other tests fail
> *
>
> igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-256:
>
> o shard-rkl: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-3/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-2-size-256.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> +12 other tests dmesg-warn
> *
>
> igt@kms_plane_lowres@tiling-none:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_plane_lowres@tiling-none.html>
> (i915#11614
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614>
> / i915#3582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>)
> +3 other tests skip
> *
>
> igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html>
> (i915#10226
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226>
> / i915#11614
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614>
> / i915#3582
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>)
> +5 other tests skip
> *
>
> igt@kms_plane_lowres@tiling-y:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html>
> (i915#8821
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>)
> *
>
> igt@kms_plane_multiple@tiling-yf:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +5 other tests skip
> *
>
> igt@kms_plane_scaling@intel-max-src-size:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html>
> (i915#6953
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html>
> (i915#6953
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size.html>
> (i915#6953
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>)
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>
> / i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +8 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +14 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +13 other tests skip
> *
>
> igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +17 other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +8 other tests skip
> *
>
> igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>
> / i915#6953
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>
> / i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html>
> (i915#12247
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
> +7 other tests skip
> *
>
> igt@kms_pm_backlight@bad-brightness:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> *
>
> igt@kms_pm_backlight@brightness-with-dpms:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_pm_backlight@brightness-with-dpms.html>
> (i915#12343
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>)
> *
>
> igt@kms_pm_dc@dc3co-vpb-simulation:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_pm_dc@dc5-retention-flops:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> *
>
> igt@kms_pm_dc@dc9-dpms:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html>
> (i915#4281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>)
> *
>
> igt@kms_pm_lpsp@kms-lpsp:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html>
> (i915#9340
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html>
> (i915#3828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
> *
>
> igt@kms_pm_lpsp@screens-disabled:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html>
> (i915#8430
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
> *
>
> igt@kms_pm_rpm@dpms-lpsp:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> *
>
> igt@kms_pm_rpm@modeset-lpsp:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> +1 other test skip
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> *
>
> igt@kms_prime@basic-crc-hybrid:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> *
>
> igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +7 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> *
>
> igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html>
> (i915#12316
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>)
> +9 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html>
> (i915#9808
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808>)
> +2 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +1 other test skip
> *
>
> igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +2 other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +7 other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +14 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +7 other tests skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html>
> (i915#11520
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> +22 other tests skip
> *
>
> igt@kms_psr2_su@page_flip-p010:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html>
> (i915#4348
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348>)
> *
>
> igt@kms_psr@fbc-pr-primary-render:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +9 other tests skip
> *
>
> igt@kms_psr@fbc-psr-dpms:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_psr@fbc-psr-dpms.html>
> (i915#9688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
> +21 other tests skip
> *
>
> igt@kms_psr@fbc-psr-sprite-plane-move:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +22 other tests skip
> *
>
> igt@kms_psr@psr-cursor-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_psr@psr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +18 other tests skip
> *
>
> igt@kms_psr@psr-sprite-mmap-cpu:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +5 other tests skip
> *
>
> igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>
> / i915#9688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
> +3 other tests skip
> *
>
> igt@kms_psr@psr2-sprite-plane-onoff:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html>
> +669 other tests skip
> *
>
> igt@kms_psr@psr2-suspend:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@kms_psr@psr2-suspend.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +26 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_psr@psr2-suspend.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +16 other tests skip
> *
>
> igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#9685
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> *
>
> igt@kms_rotation_crc@primary-rotation-270:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-270.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>)
> *
>
> igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>)
> +3 other tests skip
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> +1 other test skip
> *
>
> igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html>
> (i915#12755
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>)
> +1 other test skip
> *
>
> igt@kms_scaling_modes@scaling-mode-full:
>
> o shard-tglu-1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-full.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_selftest@drm_framebuffer:
>
> o shard-tglu: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-5/igt@kms_selftest@drm_framebuffer.html>
> (i915#13179
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>)
> +1 other test abort
> o shard-glk: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk6/igt@kms_selftest@drm_framebuffer.html>
> (i915#13179
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>)
> +1 other test abort
> *
>
> igt@kms_setmode@invalid-clone-single-crtc-stealing:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8809
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809>)
> *
>
> igt@kms_tiled_display@basic-test-pattern:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> *
>
> igt@kms_vrr@max-min:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-9/igt@kms_vrr@max-min.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> +1 other test skip
> *
>
> igt@kms_vrr@negative-basic:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_vrr@negative-basic.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-8/igt@kms_vrr@negative-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@kms_vrr@seamless-rr-switch-virtual:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-virtual.html>
> (i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-virtual.html>
> (i915#8808
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>
> / i915#9906
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> *
>
> igt@kms_writeback@writeback-check-output:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@kms_writeback@writeback-check-output.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> *
>
> igt@kms_writeback@writeback-fb-id:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> *
>
> igt@kms_writeback@writeback-fb-id-xrgb2101010:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>
> / i915#9412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>
> / i915#9412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>
> / i915#9412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>
> / i915#9412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>
> / i915#9412
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> *
>
> igt@perf@gen12-group-concurrent-oa-buffer-read:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html>
> (i915#10538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>)
> *
>
> igt@perf@global-sseu-config-invalid:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html>
> (i915#7387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>)
> *
>
> igt@perf@mi-rpc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@perf@mi-rpc.html>
> (i915#2434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>)
> *
>
> igt@perf@per-context-mode-unprivileged:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html>
> (i915#2435
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@perf@per-context-mode-unprivileged.html>
> (i915#2433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>)
> *
>
> igt@perf@unprivileged-single-ctx-counters:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html>
> (i915#2433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>)
> *
>
> igt@perf_pmu@invalid-init:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-3/igt@perf_pmu@invalid-init.html>
> (i915#13663
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663>)
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-glk1/igt@perf_pmu@invalid-init.html>
> (i915#13663
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663>)
> o shard-dg2-9: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@perf_pmu@invalid-init.html>
> (i915#13663
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663>)
> *
>
> igt@perf_pmu@rc6@other-idle-gt0:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-6/igt@perf_pmu@rc6@other-idle-gt0.html>
> (i915#8516
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>)
> *
>
> igt@prime_vgem@basic-fence-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> *
>
> igt@prime_vgem@fence-read-hang:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-1/igt@prime_vgem@fence-read-hang.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> *
>
> igt@sriov_basic@bind-unbind-vf:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
> *
>
> igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>
> o shard-dg2-9: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html>
> (i915#9917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
>
>
> Possible fixes
>
> *
>
> igt@drm_fdinfo@busy:
>
> o shard-rkl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@drm_fdinfo@busy.html>
> (i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@drm_fdinfo@busy.html>
> +10 other tests pass
> *
>
> igt@gem_ccs@suspend-resume:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@gem_ccs@suspend-resume.html>
> (i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_ccs@suspend-resume.html>
> *
>
> igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html>
> (i915#12392
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392>
> / i915#13356
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html>
> *
>
> igt@gem_eio@kms:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@gem_eio@kms.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_eio@kms.html>
> *
>
> igt@gem_eio@reset-stress:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-19/igt@gem_eio@reset-stress.html>
> (i915#12543
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543>
> / i915#5784
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-19/igt@gem_eio@reset-stress.html>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@gem_eio@unwedge-stress.html>
> (i915#13193
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@gem_eio@unwedge-stress.html>
> +3 other tests pass
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-14/igt@gem_eio@unwedge-stress.html>
> (i915#12714
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714>
> / i915#5784
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@gem_eio@unwedge-stress.html>
> *
>
> igt@gem_pxp@reject-modify-context-protection-on:
>
> o shard-rkl: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html>
> (i915#12917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917>
> / i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html>
> +2 other tests pass
> *
>
> igt@i915_hangman@detector@vcs1:
>
> o shard-mtlp: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@i915_hangman@detector@vcs1.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@i915_hangman@detector@vcs1.html>
> *
>
> igt@i915_pm_rps@reset:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-1/igt@i915_pm_rps@reset.html>
> (i915#13598
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13598>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@i915_pm_rps@reset.html>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-14/igt@i915_pm_rps@reset.html>
> (i915#13598
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13598>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@i915_pm_rps@reset.html>
> *
>
> igt@i915_power@sanity:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@i915_power@sanity.html>
> (i915#7984
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-7/igt@i915_power@sanity.html>
> *
>
> igt@i915_selftest@live@workarounds:
>
> o shard-mtlp: DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-5/igt@i915_selftest@live@workarounds.html>
> (i915#12061
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-8/igt@i915_selftest@live@workarounds.html>
> +1 other test pass
> *
>
> igt@kms_async_flips@alternate-sync-async-flip:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip.html>
> (i915#12518
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518>
> / i915#12766
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12766>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-16/igt@kms_async_flips@alternate-sync-async-flip.html>
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
> (i915#5956
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
> +1 other test pass
> *
>
> igt@kms_cursor_crc@cursor-sliding-64x21:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-64x21.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21.html>
> +3 other tests pass
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html>
> +1 other test pass
> *
>
> igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html>
> (i915#11832
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832>
> / i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html>
> *
>
> igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html>
> (i915#11832
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html>
> +1 other test pass
> *
>
> igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html>
> +1 other test pass
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html>
> (i915#11832
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832>
> / i915#13734
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html>
> *
>
> igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html>
> (i915#1522
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html>
> +1 other test pass
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html>
> (i915#6880
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html>
> *
>
> igt@kms_hdr@static-toggle-dpms:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-8/igt@kms_hdr@static-toggle-dpms.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html>
> +1 other test pass
> *
>
> igt@kms_pm_rpm@modeset-lpsp-stress:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html>
> +1 other test pass
> *
>
> igt@kms_setmode@basic:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@kms_setmode@basic.html>
> (i915#5465
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_setmode@basic.html>
> *
>
> igt@kms_setmode@basic@pipe-b-edp-1:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html>
> (i915#5465
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html>
> +2 other tests pass
> *
>
> igt@kms_vblank@ts-continuation-dpms-rpm:
>
> o shard-rkl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-rpm.html>
> (i915#12917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917>
> / i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-rpm.html>
> *
>
> igt@perf_pmu@busy-double-start@vecs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html>
> +2 other tests pass
> *
>
> igt@perf_pmu@most-busy-check-all:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-5/igt@perf_pmu@most-busy-check-all.html>
> (i915#11943
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-6/igt@perf_pmu@most-busy-check-all.html>
> +1 other test pass
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-16/igt@perf_pmu@most-busy-check-all.html>
> (i915#11943
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-15/igt@perf_pmu@most-busy-check-all.html>
> +1 other test pass
> *
>
> igt@perf_pmu@most-busy-check-all@bcs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@bcs0.html>
> (i915#11943
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-2/igt@perf_pmu@most-busy-check-all@bcs0.html>
> +1 other test pass
>
>
> Warnings
>
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-6/igt@kms_content_protection@atomic.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-10/igt@kms_content_protection@atomic.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-snb: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-snb4/igt@kms_content_protection@atomic-dpms.html>
> (i915#8816
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-snb7/igt@kms_content_protection@atomic-dpms.html>
> +2 other tests skip
> *
>
> igt@kms_content_protection@type1:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@kms_content_protection@type1.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#7162
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-7/igt@kms_content_protection@type1.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-64x21:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html>
> (i915#13566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html>
> (i915#12917
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917>
> / i915#12964
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
> *
>
> igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#9723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html>
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html>
> (i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> *
>
> igt@kms_hdr@brightness-with-hdr:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html>
> (i915#1187
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187>
> / i915#12713
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html>
> (i915#12713
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
> *
>
> igt@kms_psr@pr-cursor-render:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg1-15/igt@kms_psr@pr-cursor-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg1-17/igt@kms_psr@pr-cursor-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#4423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> *
>
> igt@prime_mmap@test_aperture_limit:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@prime_mmap@test_aperture_limit.html>
> (i915#5493
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
> -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html>
> (i915#9351
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351>)
> *
>
> igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16261/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html>
> (i915#5493
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
> -> CRASH
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12741/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html>
> (i915#9351
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351>)
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8270 -> IGTPW_12741
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_16261: 003c44ec0b7d86569bd13d4a810ee24176c3d034 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_12741: 12741
> IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
--
-shekhar
[-- Attachment #2: Type: text/html, Size: 221873 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.Full: failure for tests/kms_cursor_crc.: Test async cursor crc (rev2)
2025-03-12 0:03 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-12 11:10 ` Chauhan, Shekhar
0 siblings, 0 replies; 8+ messages in thread
From: Chauhan, Shekhar @ 2025-03-12 11:10 UTC (permalink / raw)
To: igt-dev
[-- Attachment #1: Type: text/plain, Size: 93039 bytes --]
Failures unrelated to the patch.
On 3/12/2025 5:33, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* tests/kms_cursor_crc.: Test async cursor crc (rev2)
> *URL:* https://patchwork.freedesktop.org/series/146062/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/index.html
>
>
> CI Bug Log - changes from XEIGT_8270_full -> XEIGTPW_12741_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with XEIGTPW_12741_full absolutely need
> to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12741_full, please notify your bug team
> (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives
> in CI.
>
>
> Participating hosts (4 -> 4)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> XEIGTPW_12741_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_bw@linear-tiling-1-displays-3840x2160p:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html>
> *
>
> igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html>
>
>
> Warnings
>
> *
>
> igt@kms_plane_scaling@intel-max-src-size:
>
> o shard-dg2-set2: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html>
> (Intel XE#2705
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) ->
> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html>
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html>
> (Intel XE#4502
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4502>) ->
> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html>
> *
>
> igt@xe_pm@s4-vm-bind-prefetch:
>
> o shard-lnl: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-4/igt@xe_pm@s4-vm-bind-prefetch.html>
> (Intel XE#4268
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>) ->
> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html>
>
>
> New tests
>
> New tests have been introduced between XEIGT_8270_full and
> XEIGTPW_12741_full:
>
>
> New IGT tests (14)
>
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change:
>
> o Statuses : 3 pass(s)
> o Exec time: [0.97, 2.18] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-dp-2:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.57] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.72] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-a-hdmi-a-6:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.60] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-c-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [1.46] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-dp-2:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.42] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-framebuffer-change@pipe-d-hdmi-a-6:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.36] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change:
>
> o Statuses : 3 pass(s)
> o Exec time: [0.90, 2.14] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-dp-2:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.60] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.72] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-a-hdmi-a-6:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.56] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-c-edp-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [1.42] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-dp-2:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.42] s
> *
>
> igt@kms_cursor_crc@async-cursor-crc-position-change@pipe-d-hdmi-a-6:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.33] s
>
>
> Known issues
>
> Here are the changes found in XEIGTPW_12741_full that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html>
> (Intel XE#2550
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550> /
> Intel XE#3767
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767>)
> +15 other tests skip
> *
>
> igt@kms_async_flips@invalid-async-flip-atomic:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_async_flips@invalid-async-flip-atomic.html>
> (Intel XE#3768
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html>
> (Intel XE#3768
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html>
> (Intel XE#3768
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
> *
>
> igt@kms_async_flips@test-cursor:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_async_flips@test-cursor.html>
> (Intel XE#664
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
> *
>
> igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (Intel XE#3279
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279>)
> *
>
> igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
>
> o shard-lnl: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html>
> (Intel XE#324
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) +4
> other tests dmesg-warn
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html>
> (Intel XE#2327
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +5
> other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html>
> (Intel XE#3658
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html>
> (Intel XE#316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +3
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html>
> (Intel XE#1407
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +6
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html>
> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
> +13 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html>
> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
> +12 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html>
> (Intel XE#607
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html>
> (Intel XE#607
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html>
> (Intel XE#1477
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>)
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html>
> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
> +10 other tests skip
> *
>
> igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html>
> (Intel XE#2314
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> /
> Intel XE#2894
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +2
> other tests skip
> *
>
> igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html>
> (Intel XE#2191
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +2
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html>
> (Intel XE#2191
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +4
> other tests skip
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html>
> (Intel XE#1512
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
> *
>
> igt@kms_bw@linear-tiling-2-displays-2560x1440p:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html>
> (Intel XE#367
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1
> other test skip
> *
>
> igt@kms_bw@linear-tiling-3-displays-2560x1440p:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html>
> (Intel XE#367
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1
> other test skip
> *
>
> igt@kms_bw@linear-tiling-4-displays-1920x1080p:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html>
> (Intel XE#367
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4
> other tests skip
> *
>
> igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html>
> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>)
> +14 other tests skip
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html>
> (Intel XE#2652
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> /
> Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +21
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (Intel XE#2907
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>)
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html>
> (Intel XE#3432
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +2
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html>
> (Intel XE#3432
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1
> other test skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html>
> (Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>)
> +158 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html>
> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
> Intel XE#3113
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> /
> Intel XE#3124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html>
> (Intel XE#3124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html>
> (Intel XE#1727
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> /
> Intel XE#3113
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html>
> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>)
> +20 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> /
> Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +39
> other tests skip
> *
>
> igt@kms_cdclk@mode-transition@pipe-b-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html>
> (Intel XE#4417
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417>) +3
> other tests skip
> *
>
> igt@kms_cdclk@mode-transition@pipe-d-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html>
> (Intel XE#4417
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417>) +3
> other tests skip
> *
>
> igt@kms_cdclk@plane-scaling:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_cdclk@plane-scaling.html>
> (Intel XE#4416
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416>) +3
> other tests skip
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_cdclk@plane-scaling.html>
> (Intel XE#2724
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>) +1
> other test skip
> *
>
> igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html>
> (Intel XE#4416
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416>) +3
> other tests skip
> *
>
> igt@kms_chamelium_color@ctm-blue-to-red:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html>
> (Intel XE#306
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1
> other test skip
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html>
> (Intel XE#2325
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1
> other test skip
> *
>
> igt@kms_chamelium_color@ctm-limited-range:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html>
> (Intel XE#306
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1
> other test skip
> *
>
> igt@kms_chamelium_frames@hdmi-aspect-ratio:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html>
> (Intel XE#2252
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>)
> +14 other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html>
> (Intel XE#373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +11
> other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-without-ddc:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html>
> (Intel XE#373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +11
> other tests skip
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html>
> (Intel XE#3278
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-1:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-1.html>
> (Intel XE#2390
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>)
> *
>
> igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
>
> o shard-dg2-set2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html>
> (Intel XE#3304
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>)
> *
>
> igt@kms_content_protection@uevent@pipe-a-dp-4:
>
> o shard-dg2-set2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html>
> (Intel XE#1188
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-32x32:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html>
> (Intel XE#2320
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +4
> other tests skip
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x170:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html>
> (Intel XE#2321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html>
> (Intel XE#308
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1
> other test skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-128x42:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html>
> (Intel XE#1424
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +6
> other tests skip
> *
>
> igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html>
> (Intel XE#2291
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1
> other test skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (Intel XE#323
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1
> other test skip
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html>
> (Intel XE#2286
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html>
> (Intel XE#309
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +4
> other tests skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html>
> (Intel XE#309
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html>
> (Intel XE#2291
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1
> other test skip
> *
>
> igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (Intel XE#1508
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html>
> (Intel XE#1340
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>)
> *
>
> igt@kms_dp_link_training@non-uhbr-sst:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html>
> (Intel XE#4354
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354>)
> *
>
> igt@kms_dsc@dsc-with-bpc-formats:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html>
> (Intel XE#2244
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
> *
>
> igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
> (Intel XE#2244
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
> *
>
> igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html>
> (Intel XE#4422
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html>
> (Intel XE#776
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>)
> *
>
> igt@kms_feature_discovery@display-3x:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_feature_discovery@display-3x.html>
> (Intel XE#703
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_feature_discovery@display-3x.html>
> (Intel XE#2373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
> *
>
> igt@kms_feature_discovery@psr2:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_feature_discovery@psr2.html>
> (Intel XE#2374
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374>)
> *
>
> igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html>
> (Intel XE#1421
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +7
> other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-435/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html>
> (Intel XE#310
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) +2
> other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> /
> Intel XE#3321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +4
> other tests fail
> *
>
> igt@kms_flip@2x-flip-vs-panning:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning.html>
> (Intel XE#2316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3
> other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-wf_vblank:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank.html>
> (Intel XE#310
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>)
> *
>
> igt@kms_flip@2x-nonexisting-fb:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html>
> (Intel XE#2316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +5
> other tests skip
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bd-hdmi-a2-dp2:
>
> o shard-dg2-set2: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bd-hdmi-a2-dp2.html>
> (Intel XE#2049
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) +1
> other test incomplete
> *
>
> igt@kms_flip@bo-too-big-interruptible@a-edp1:
>
> o shard-lnl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@bo-too-big-interruptible@a-edp1.html>
> (Intel XE#1504
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504>) +1
> other test timeout
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html>
> (Intel XE#886
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2
> other tests fail
> *
>
> igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html>
> (Intel XE#2049
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) +1
> other test incomplete
> *
>
> igt@kms_flip@flip-vs-expired-vblank@a-dp4:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> /
> Intel XE#3321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
> *
>
> igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +2
> other tests fail
> *
>
> igt@kms_flip@flip-vs-suspend:
>
> o shard-bmg: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html>
> (Intel XE#2049
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> /
> Intel XE#2597
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1
> other test incomplete
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html>
> (Intel XE#2293
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +2
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +17
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html>
> (Intel XE#1401
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +4
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html>
> (Intel XE#1397
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> /
> Intel XE#1745
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html>
> (Intel XE#1397
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html>
> (Intel XE#2293
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> /
> Intel XE#2380
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +2
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html>
> (Intel XE#1401
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> /
> Intel XE#1745
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +4
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html>
> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +20
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +40
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html>
> (Intel XE#4141
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>)
> +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html>
> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +27
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html>
> (Intel XE#2311
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
> +29 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html>
> (Intel XE#2313
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>)
> +35 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
> +14 other tests skip
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +7
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-slowdraw:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html>
> (Intel XE#653
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +29
> other tests skip
> *
>
> igt@kms_getfb@getfb2-accept-ccs:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html>
> (Intel XE#2340
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>)
> *
>
> igt@kms_invalid_mode@clock-too-high:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_invalid_mode@clock-too-high.html>
> (Intel XE#1450
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450> /
> Intel XE#2568
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568>)
> *
>
> igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html>
> (Intel XE#1450
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450>) +2
> other tests skip
> *
>
> igt@kms_joiner@basic-big-joiner:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html>
> (Intel XE#346
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1
> other test skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html>
> (Intel XE#346
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) +1
> other test skip
> *
>
> igt@kms_joiner@invalid-modeset-big-joiner:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html>
> (Intel XE#346
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
> *
>
> igt@kms_joiner@invalid-modeset-force-ultra-joiner:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html>
> (Intel XE#2934
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
> *
>
> igt@kms_plane@plane-position-covered@pipe-a-plane-3:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html>
> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html>
> (Intel XE#324
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>)
> *
>
> igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html>
> (Intel XE#599
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +4
> other tests skip
> *
>
> igt@kms_plane_lowres@tiling-yf:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html>
> (Intel XE#2393
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393>)
> *
>
> igt@kms_plane_multiple@tiling-y:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html>
> (Intel XE#2493
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html>
> (Intel XE#2493
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493>)
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html>
> (Intel XE#2566
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html>
> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> /
> Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1
> other test skip
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html>
> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html>
> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +7
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html>
> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +9
> other tests skip
> *
>
> igt@kms_pm_backlight@bad-brightness:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html>
> (Intel XE#870
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
> *
>
> igt@kms_pm_backlight@fade-with-suspend:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html>
> (Intel XE#870
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +1
> other test skip
> *
>
> igt@kms_pm_dc@dc5-dpms:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html>
> (Intel XE#718
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
> *
>
> igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html>
> (Intel XE#1489
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +7
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html>
> (Intel XE#2893
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +5
> other tests skip
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html>
> (Intel XE#1489
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>)
> +10 other tests skip
> *
>
> igt@kms_psr2_su@page_flip-xrgb8888:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-8/igt@kms_psr2_su@page_flip-xrgb8888.html>
> (Intel XE#1128
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>)
> *
>
> igt@kms_psr@pr-no-drrs:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_psr@pr-no-drrs.html>
> (Intel XE#1406
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +5
> other tests skip
> *
>
> igt@kms_psr@pr-sprite-blt:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html>
> (Intel XE#2850
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> /
> Intel XE#929
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +13
> other tests skip
> *
>
> igt@kms_psr@psr2-sprite-blt:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html>
> (Intel XE#2234
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> /
> Intel XE#2850
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>)
> +17 other tests skip
> *
>
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html>
> (Intel XE#2414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
> *
>
> igt@kms_rotation_crc@bad-tiling:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html>
> (Intel XE#3414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1
> other test skip
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html>
> (Intel XE#3414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> /
> Intel XE#3904
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +4
> other tests skip
> *
>
> igt@kms_rotation_crc@primary-rotation-270:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html>
> (Intel XE#3414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> /
> Intel XE#3904
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +3
> other tests skip
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
> (Intel XE#1127
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
> (Intel XE#1127
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
> *
>
> igt@kms_setmode@clone-exclusive-crtc:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html>
> (Intel XE#1435
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +2
> other tests skip
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_setmode@clone-exclusive-crtc.html>
> (Intel XE#1435
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +2
> other tests skip
> *
>
> igt@kms_setmode@invalid-clone-single-crtc-stealing:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_setmode@invalid-clone-single-crtc-stealing.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
> *
>
> igt@kms_tv_load_detect@load-detect:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html>
> (Intel XE#330
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html>
> (Intel XE#330
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html>
> (Intel XE#2450
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450>)
> *
>
> igt@kms_vrr@flip-basic:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@kms_vrr@flip-basic.html>
> (Intel XE#1499
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
> *
>
> igt@kms_vrr@lobf:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_vrr@lobf.html>
> (Intel XE#2168
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
> *
>
> igt@kms_writeback@writeback-pixel-formats:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_writeback@writeback-pixel-formats.html>
> (Intel XE#756
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@kms_writeback@writeback-pixel-formats.html>
> (Intel XE#756
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1
> other test skip
> *
>
> igt@xe_compute_preempt@compute-preempt-many:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html>
> (Intel XE#1280
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> /
> Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1
> other test skip
> *
>
> igt@xe_copy_basic@mem-copy-linear-0xfffe:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html>
> (Intel XE#1123
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) +1
> other test skip
> *
>
> igt@xe_eu_stall@blocking-read:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_eu_stall@blocking-read.html>
> (Intel XE#4497
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497>)
> *
>
> igt@xe_eudebug@basic-vm-bind-metadata-discovery:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html>
> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>)
> +10 other tests skip
> *
>
> igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html>
> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905> /
> Intel XE#3889
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889>)
> *
>
> igt@xe_eudebug_online@interrupt-other-debuggable:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@xe_eudebug_online@interrupt-other-debuggable.html>
> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +8
> other tests skip
> *
>
> igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html>
> (Intel XE#688
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +6
> other tests skip
> *
>
> igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html>
> (Intel XE#2322
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +9
> other tests skip
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html>
> (Intel XE#1392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1
> other test skip
> *
>
> igt@xe_exec_basic@multigpu-once-rebind:
>
> o shard-dg2-set2: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_exec_basic@multigpu-once-rebind.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html>
> (Intel XE#1392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +2
> other tests skip
> *
>
> igt@xe_exec_basic@multigpu-once-userptr:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html>
> (Intel XE#1392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>)
> +10 other tests skip
> *
>
> igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html>
> (Intel XE#288
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +26
> other tests skip
> *
>
> igt@xe_exec_sip_eudebug@breakpoint-writesip:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-5/igt@xe_exec_sip_eudebug@breakpoint-writesip.html>
> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>)
> +14 other tests skip
> *
>
> igt@xe_mmap@pci-membarrier-bad-pagesize:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html>
> (Intel XE#4045
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045>)
> *
>
> igt@xe_module_load@load:
>
> o shard-bmg: (PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@xe_module_load@load.html>)
> -> (PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html>,
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@xe_module_load@load.html>)
> (Intel XE#2457
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
> *
>
> igt@xe_oa@invalid-create-userspace-config:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html>
> (Intel XE#2541
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> /
> Intel XE#3573
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +6
> other tests skip
> *
>
> igt@xe_oa@syncs-ufence-wait:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html>
> (Intel XE#2541
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541> /
> Intel XE#3573
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573> /
> Intel XE#4501
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501>)
> *
>
> igt@xe_pat@pat-index-xelpg:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html>
> (Intel XE#979
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html>
> (Intel XE#979
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
> *
>
> igt@xe_peer2peer@write:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@xe_peer2peer@write.html>
> (Intel XE#1061
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>)
> *
>
> igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
>
> o shard-dg2-set2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html>
> (Intel XE#1173
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) +1
> other test fail
> *
>
> igt@xe_pm@d3cold-basic:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@d3cold-basic.html>
> (Intel XE#2284
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
> *
>
> igt@xe_pm@d3cold-mmap-system:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html>
> (Intel XE#2284
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> /
> Intel XE#366
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
> *
>
> igt@xe_pm@s3-basic-exec:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_pm@s3-basic-exec.html>
> (Intel XE#584
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +2
> other tests skip
> *
>
> igt@xe_pm@s4-vm-bind-unbind-all:
>
> o shard-bmg: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html>
> (Intel XE#4268
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>) +1
> other test abort
> o shard-dg2-set2: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html>
> (Intel XE#4268
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>)
> *
>
> igt@xe_pm@s4-vm-bind-userptr:
>
> o shard-lnl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html>
> (Intel XE#4268
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>)
> *
>
> igt@xe_query@multigpu-query-engines:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-1/igt@xe_query@multigpu-query-engines.html>
> (Intel XE#944
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3
> other tests skip
> *
>
> igt@xe_query@multigpu-query-gt-list:
>
> o shard-dg2-set2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html>
> (Intel XE#944
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
> *
>
> igt@xe_query@multigpu-query-invalid-cs-cycles:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html>
> (Intel XE#944
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2
> other tests skip
> *
>
> igt@xe_sriov_flr@flr-vf1-clear:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_sriov_flr@flr-vf1-clear.html>
> (Intel XE#3342
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>)
>
>
> Possible fixes
>
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
>
> o shard-dg2-set2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html>
> (Intel XE#3862
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html>
> *
>
> igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html>
> (Intel XE#309
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html>
> +4 other tests pass
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html>
> (Intel XE#2291
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html>
> +1 other test pass
> *
>
> igt@kms_display_modes@extended-mode-basic:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html>
> (Intel XE#4302
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html>
> *
>
> igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4:
>
> o shard-dg2-set2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html>
> (Intel XE#2049
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-hdmi-a6-dp4.html>
> +1 other test pass
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
>
> o shard-bmg: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html>
> (Intel XE#3321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html>
> +2 other tests pass
> *
>
> igt@kms_flip@2x-flip-vs-wf_vblank:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html>
> (Intel XE#2316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html>
> +1 other test pass
> *
>
> igt@kms_flip@2x-plain-flip-interruptible:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html>
> (Intel XE#310
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_flip@2x-plain-flip-interruptible.html>
> +2 other tests pass
> *
>
> igt@kms_flip@flip-vs-expired-vblank@a-edp1:
>
> o shard-lnl: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html>
> +1 other test pass
> *
>
> igt@kms_flip@flip-vs-expired-vblank@c-edp1:
>
> o shard-lnl: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html>
> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> /
> Intel XE#3149
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html>
> +1 other test pass
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html>
> +3 other tests pass
> *
>
> igt@kms_joiner@basic-force-big-joiner:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html>
> (Intel XE#4328
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html>
> (Intel XE#3012
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html>
> *
>
> igt@kms_plane@plane-position-covered@pipe-a-plane-4:
>
> o shard-lnl: DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html>
> (Intel XE#324
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html>
> *
>
> igt@kms_setmode@invalid-clone-single-crtc:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_setmode@invalid-clone-single-crtc.html>
> *
>
> igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html>
> (Intel XE#1392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html>
> *
>
> igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
>
> o shard-dg2-set2: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html>
> (Intel XE#1999
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html>
> +2 other tests pass
> *
>
> igt@xe_oa@buffer-size:
>
> o shard-lnl: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-lnl-8/igt@xe_oa@buffer-size.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-lnl-7/igt@xe_oa@buffer-size.html>
> +1 other test pass
> o shard-bmg: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@xe_oa@buffer-size.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@xe_oa@buffer-size.html>
>
>
> Warnings
>
> *
>
> igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html>
> (Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> /
> Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +5
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> /
> Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html>
> (Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +5
> other tests skip
> *
>
> igt@kms_content_protection@lic-type-0:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@lic-type-0.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) ->
> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_content_protection@lic-type-0.html>
> (Intel XE#1178
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_content_protection@uevent.html>
> (Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) ->
> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-463/igt@kms_content_protection@uevent.html>
> (Intel XE#1188
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html>
> (Intel XE#2311
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
> +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html>
> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +9
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +8
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#2311
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
> +16 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html>
> (Intel XE#4141
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +7
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html>
> (Intel XE#4141
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html>
> (Intel XE#653
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +4
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html>
> (Intel XE#2313
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html>
> (Intel XE#653
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +3
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#2312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html>
> (Intel XE#2313
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +8
> other tests skip
> *
>
> igt@kms_tiled_display@basic-test-pattern:
>
> o shard-dg2-set2: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html>
> (Intel XE#362
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>) ->
> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html>
> (Intel XE#1729
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>)
> *
>
> igt@xe_pm@s4-basic-exec:
>
> o shard-bmg: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8270/shard-bmg-2/igt@xe_pm@s4-basic-exec.html>
> (Intel XE#4054
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4054>) ->
> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12741/shard-bmg-2/igt@xe_pm@s4-basic-exec.html>
> (Intel XE#4268
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268>)
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * IGT: IGT_8270 -> IGTPW_12741
> * Linux: xe-2789-714f93e4c086c6e07187597bd446752f5f65b544 ->
> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034
>
> IGTPW_12741: 12741
> IGT_8270: 49751c5c11723262ec66e564c76503f74a9fa831 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2789-714f93e4c086c6e07187597bd446752f5f65b544:
> 714f93e4c086c6e07187597bd446752f5f65b544
> xe-2793-003c44ec0b7d86569bd13d4a810ee24176c3d034:
> 003c44ec0b7d86569bd13d4a810ee24176c3d034
>
--
-shekhar
[-- Attachment #2: Type: text/html, Size: 122719 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
` (3 preceding siblings ...)
2025-03-12 0:03 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-12 11:28 ` Ville Syrjälä
4 siblings, 0 replies; 8+ messages in thread
From: Ville Syrjälä @ 2025-03-12 11:28 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev, juha-pekka.heikkila
On Tue, Mar 11, 2025 at 10:00:02AM +0530, Shekhar Chauhan wrote:
> + /* get the screen refresh rate, then wait for vblank, and
> + * wait for 1/5 of time of screen refresh and change image.
> + * change it mid screen to validate that the change happens
> + * at the end of the current frame.
The legacy cursor uapi doesn't specify whether the cursor updates
are synchronized to vblank or not. So this is testing for
hardware/driver specific behaviour.
> + */
> + usleep(1.0f / data->refresh / 5.0f * 1e6);
> +
> + changefunc(data, SECONDIMAGE);
> + igt_display_commit(&data->display);
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc2);
> +
> + igt_assert_crc_equal(&crc1, &crc2);
> +
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc2);
> +
> + /* check next frame will be different as expected*/
> + igt_assert_f(igt_find_crc_mismatch(&crc1, &crc2, NULL),
> + "crc values were not supposing to match!\n");
This could fail due to a false positive. If you really want to test
for CRC inequality I think you'd first have to make sure such an
inequality actually exists.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-03-12 11:28 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-11 4:30 [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Shekhar Chauhan
2025-03-11 5:23 ` ✓ Xe.CI.BAT: success for tests/kms_cursor_crc.: Test async cursor crc (rev2) Patchwork
2025-03-11 5:34 ` ✓ i915.CI.BAT: " Patchwork
2025-03-11 7:22 ` ✗ i915.CI.Full: failure " Patchwork
2025-03-12 11:10 ` Chauhan, Shekhar
2025-03-12 0:03 ` ✗ Xe.CI.Full: " Patchwork
2025-03-12 11:10 ` Chauhan, Shekhar
2025-03-12 11:28 ` [PATCH v2] tests/kms_cursor_crc.: Test async cursor crc Ville Syrjälä
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox