public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing
@ 2026-02-26  9:31 S Sebinraj
  2026-02-26 16:40 ` ✓ Xe.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6) Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: S Sebinraj @ 2026-02-26  9:31 UTC (permalink / raw)
  To: igt-dev
  Cc: carlos.santa, karthik.b.s, krzysztof.karas, kamil.konieczny,
	zbigniew.kempczynski, S Sebinraj

Add a new test to validate explicit fencing.
This test handles multiple planes in a single atomic commit.
This test addresses a critical scenario where drivers must correctly
synchronize planes with mixed fence states.

Test Scenario:
- Creates three planes: one primary, two overlay
- Attaches fences with different states:
   - Primary plane:   signaled fence (simulating completed GPU work)
   - Overlay-1 plane: signaled fence (simulating completed GPU work)
   - Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
- Submits all planes in a single atomic commit with IN_FENCE_FD set
- Validates that display waits for ALL fences before updating ANY plane

Bug Detection:
This test catches driver bugs where:
 - Planes with signaled fences update prematurely before unsignaled
   fences complete, breaking atomic commit semantics
 - Fence states are mismanaged across multiple planes causing visual
   glitches or corruption
 - The driver fails to wait on all IN_FENCE_FDs atomically

The test uses sw_sync timelines to create controllable fence states,
allowing precise validation of fence synchronization behavior. An
OUT_FENCE_PTR is requested to monitor when the display update actually
completes, enabling detection of premature updates.

Implementation Details:
- Uses sw_sync for creating fences with controlled signaling
- Monitors OUT_FENCE to detect premature display updates
- Validates atomic commit integrity across multiple planes

Background:
- A bug regressed for Xe driver on PTL (Android) display handling
  of explicit fences when provided two or more buffers at once,
  with 1+ already-signaled fences and 1+ not-yet-signaled fences.
  https://patchwork.freedesktop.org/patch/662982/
- Adding this test so that IGT contains sufficient testing for the
  use of explicit fencing in the KMS Atomic Modesetting APIs.

Changes:
-v5
  - Make overlay plane validation scalable with
    overlay count.
  - Modify commit message.
-v4
  - Fix build errors as per latest API name
-v3
  - Add crc check on display update
  - Adding proper License entry
  - Reduce test description
-v2
  - Add crc check instead of visual inspection
  - Reduce debug logging which are not needed
  - Add a function for initial modset
  - Make test not specific to Intel drivers alone
  - Sort the included libs in alphabetical order
  - Modify set_output func as we want only one
    output per pipe

Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
---
 tests/kms_explicit_fence.c | 348 +++++++++++++++++++++++++++++++++++++
 tests/meson.build          |   1 +
 2 files changed, 349 insertions(+)
 create mode 100644 tests/kms_explicit_fence.c

diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
new file mode 100644
index 000000000..3d96e0de5
--- /dev/null
+++ b/tests/kms_explicit_fence.c
@@ -0,0 +1,348 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+/**
+ * TEST: kms explicit fence multiplane
+ * Category: Display
+ * Description: Test explicit fencing with multiple planes and mixed fence states
+ * Driver requirement: i915, xe
+ * Mega feature: General Display Features
+ *
+ * This test validates correct handling of explicit fences when multiple planes
+ * are updated in a single atomic commit with different fence states. This is
+ * critical for catching fence synchronization bugs where the driver might:
+ * 1. Prematurely display buffers with signaled fences before unsignaled fences complete
+ * 2. Mismanage fence states across multiple planes causing visual glitches
+ * 3. Fail to wait on all fences atomically before updating the display
+ */
+
+#include <errno.h>
+#include <poll.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/eventfd.h>
+
+#include "igt.h"
+#include "igt_aux.h"
+#include "sw_sync.h"
+
+/**
+ * SUBTEST: multiplane-atomic-fence-wait
+ * Description: Test 3 planes (1 primary, 2 overlay) with mixed fence states:
+ *              2 planes with signaled fences and 1 plane with unsignaled fence.
+ *              Validates that display waits for all fences before updating any plane.
+ */
+
+/* Test configuration macros */
+#define NUM_PLANES 3
+#define PLANE_PRIMARY_IDX 0
+#define PLANE_OVERLAY1_IDX 1
+#define PLANE_OVERLAY2_IDX 2
+#define OVERLAY_COUNT (NUM_PLANES - 1)
+
+#define FENCE_TIMEOUT_MS 2000
+
+#define OVERLAY_SIZE_DIVISOR 3
+#define OVERLAY1_POS_X 100
+#define OVERLAY1_POS_Y 100
+#define OVERLAY2_OFFSET 100
+
+typedef struct {
+	int drm_fd;
+	igt_display_t display;
+	igt_output_t *output;
+	enum pipe pipe;
+	igt_plane_t *primary;
+	igt_plane_t *overlay1;
+	igt_plane_t *overlay2;
+	struct igt_fb primary_fb;
+	struct igt_fb overlay1_fb;
+	struct igt_fb overlay2_fb;
+	drmModeModeInfo *mode;
+	int width, height;
+	igt_pipe_crc_t *pipe_crc;
+} data_t;
+
+static void setup_output(data_t *data)
+{
+	igt_display_t *display = &data->display;
+	igt_crtc_t *crtc;
+	igt_output_t *output;
+
+	for_each_crtc_with_single_output(display, crtc, output) {
+		int overlay_count = 0;
+
+		data->primary = igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY);
+
+		/* Count available overlays - we need at least OVERLAY_COUNT */
+		for (int i = 0; i < OVERLAY_COUNT; i++) {
+			if (igt_crtc_get_plane_type_index(crtc, DRM_PLANE_TYPE_OVERLAY, i))
+				overlay_count++;
+		}
+
+		if (overlay_count >= OVERLAY_COUNT) {
+			data->overlay1 = igt_crtc_get_plane_type_index(crtc,
+									DRM_PLANE_TYPE_OVERLAY,
+									0);
+			data->overlay2 = igt_crtc_get_plane_type_index(crtc,
+									DRM_PLANE_TYPE_OVERLAY,
+									1);
+			data->output = output;
+			data->pipe = crtc->pipe;
+			data->mode = igt_output_get_mode(output);
+			data->width = data->mode->hdisplay;
+			data->height = data->mode->vdisplay;
+			return;
+		}
+	}
+
+	igt_skip("Need at least %d overlay planes for this test\n", OVERLAY_COUNT);
+}
+
+static void cleanup_crtc(data_t *data)
+{
+	igt_display_reset(&data->display);
+
+	igt_remove_fb(data->drm_fd, &data->primary_fb);
+	igt_remove_fb(data->drm_fd, &data->overlay1_fb);
+	igt_remove_fb(data->drm_fd, &data->overlay2_fb);
+}
+
+static void create_fbs(data_t *data)
+{
+	int overlay_width = data->width / OVERLAY_SIZE_DIVISOR;
+	int overlay_height = data->height / OVERLAY_SIZE_DIVISOR;
+
+	/* Primary plane - Blue background */
+	igt_create_color_fb(data->drm_fd, data->width, data->height,
+			    DRM_FORMAT_XRGB8888,
+			    DRM_FORMAT_MOD_LINEAR,
+			    0.0, 0.0, 1.0, /* Blue */
+			    &data->primary_fb);
+
+	/* Overlay 1 - Red square */
+	igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
+			    DRM_FORMAT_XRGB8888,
+			    DRM_FORMAT_MOD_LINEAR,
+			    1.0, 0.0, 0.0, /* Red */
+			    &data->overlay1_fb);
+
+	/* Overlay 2 - Green square */
+	igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
+			    DRM_FORMAT_XRGB8888,
+			    DRM_FORMAT_MOD_LINEAR,
+			    0.0, 1.0, 0.0, /* Green */
+			    &data->overlay2_fb);
+}
+
+static void setup_initial_modeset(data_t *data)
+{
+	/* Initial modeset to establish baseline (no fences) */
+	igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe));
+	igt_plane_set_fb(data->primary, &data->primary_fb);
+	igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
+	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+	igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
+	igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+				data->overlay2_fb.width, OVERLAY1_POS_Y);
+	igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+/**
+ * multiplane_atomic_fence_wait - Test atomic commit with mixed fence states
+ *
+ * This test reproduces the critical scenario where multiple planes are updated
+ * in a single atomic commit with different fence states. The key validation is
+ * that the display does NOT update any plane until ALL fences are signaled.
+ *
+ * Test setup:
+ * - Primary plane: buffer with a signaled fence (already retired)
+ * - Overlay 1 plane: buffer with a signaled fence (already retired)
+ * - Overlay 2 plane: buffer with an UNSIGNALED fence (long-running operation)
+ *
+ * Expected behavior:
+ * - Atomic commit succeeds immediately (non-blocking)
+ * - Display waits internally for ALL fences before updating
+ * - No plane shows its new buffer until the unsignaled fence completes
+ * - After signaling the last fence, all planes update atomically
+ *
+ * Bug detection:
+ * If the driver has a bug, it will either:
+ * 1. Show the primary and overlay1 buffers prematurely (before overlay2's fence signals)
+ * 2. Cause visual glitches from fence mismanagement
+ * 3. Fail the atomic commit
+ */
+static void multiplane_atomic_fence_wait(data_t *data)
+{
+	int timelines[NUM_PLANES];
+	int fences[NUM_PLANES];
+	int ret;
+	int out_fence;
+	igt_plane_t *planes[NUM_PLANES];
+	bool should_signal[NUM_PLANES] = { true, true, false };
+	igt_crc_t crc_before, crc_after, crc_final;
+
+	igt_require_sw_sync();
+
+	setup_initial_modeset(data);
+
+	/* Setup arrays for loop-based processing */
+	planes[PLANE_PRIMARY_IDX] = data->primary;
+	planes[PLANE_OVERLAY1_IDX] = data->overlay1;
+	planes[PLANE_OVERLAY2_IDX] = data->overlay2;
+
+	/* Start CRC capture to verify no premature display updates */
+	igt_pipe_crc_start(data->pipe_crc);
+	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_before);
+
+	/* Create timelines and fences for all planes */
+	for (int i = 0; i < NUM_PLANES; i++) {
+		/* Create timeline */
+		timelines[i] = sw_sync_timeline_create();
+		igt_assert(timelines[i] >= 0);
+
+		/* Create fence at sequence 1 */
+		fences[i] = sw_sync_timeline_create_fence(timelines[i], 1);
+		igt_assert(fences[i] >= 0);
+
+		/* Signal fence (first 2 planes) */
+		if (should_signal[i]) {
+			sw_sync_timeline_inc(timelines[i], 1);
+			igt_assert_eq(sync_fence_status(fences[i]), 1);
+		} else {
+			/* Do not signal this fence yet, 3rd plane */
+			igt_assert_eq(sync_fence_status(fences[i]), 0);
+		}
+
+		/* Attach IN_FENCE_FD to plane */
+		igt_plane_set_fence_fd(planes[i], fences[i]);
+	}
+
+	/* Swap overlay colors to detect scanout changes via CRC */
+	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
+	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
+	igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
+	igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
+				data->overlay1_fb.width, OVERLAY1_POS_Y);
+
+	/* Request OUT_FENCE to track when display update completes */
+	igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe));
+
+	/*
+	 * The atomic commit should succeed immediately (NONBLOCK mode),
+	 * but the display should NOT update any plane until ALL fences
+	 * (including the unsignaled overlay2 fence) are signaled.
+	 *
+	 * A buggy driver might:
+	 * - Show primary and overlay1 immediately
+	 * - Cause visual corruption
+	 * - Fail the commit
+	 */
+	ret = igt_display_try_commit_atomic(&data->display,
+					    DRM_MODE_ATOMIC_NONBLOCK,
+					    NULL);
+	igt_assert_eq(ret, 0);
+
+	/* Get the out fence to monitor completion */
+	out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd;
+	igt_assert(out_fence >= 0);
+
+	/* Verify overlay2 fence (last one) is still unsignaled */
+	igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 0);
+
+	/* Verify out fence is also unsignaled (display hasn't updated yet) */
+	ret = sync_fence_status(out_fence);
+	igt_assert_f(ret != 1,
+		     "OUT_FENCE already signaled while overlay2 fence is unsignaled - "
+		     "driver did not wait for all IN_FENCEs!");
+
+	/*
+	 * Wait briefly and verify display hasn't updated via CRC check.
+	 * In a buggy implementation, the display might update prematurely.
+	 */
+	usleep(100000); /* 100ms */
+
+	/* Check if out fence signaled prematurely */
+	ret = sync_fence_status(out_fence);
+	igt_assert_f(ret != 1,
+		     "OUT_FENCE signaled before overlay2 fence - "
+		     "driver updated display without waiting for all fences");
+
+	/* CRC verify - check if display has not updated prematurely */
+	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_after);
+	igt_assert_crc_equal(&crc_before, &crc_after);
+
+	/* Now signal the blocking fence (overlay2) */
+	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
+
+	/* Wait for overlay2 fence to be signaled */
+	ret = sync_fence_wait(fences[PLANE_OVERLAY2_IDX], FENCE_TIMEOUT_MS);
+	igt_assert_eq(ret, 0);
+	igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 1);
+
+	/* Now wait for the display update to complete (out fence signals) */
+	ret = sync_fence_wait(out_fence, FENCE_TIMEOUT_MS);
+	igt_assert_eq(ret, 0);
+	igt_assert_eq(sync_fence_status(out_fence), 1);
+
+	/* Verify display has now updated (CRC should differ from baseline) */
+	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
+	igt_assert_f(!igt_check_crc_equal(&crc_before, &crc_final),
+		     "Display did not update after all fences signaled");
+
+	igt_pipe_crc_stop(data->pipe_crc);
+
+	/* Cleanup */
+	for (int i = 0; i < NUM_PLANES; i++) {
+		close(fences[i]);
+		close(timelines[i]);
+		igt_plane_set_fence_fd(planes[i], -1);
+	}
+	close(out_fence);
+	igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1;
+}
+
+static void reset_display_state(data_t *data)
+{
+	igt_plane_set_fb(data->primary, NULL);
+	igt_plane_set_fb(data->overlay1, NULL);
+	igt_plane_set_fb(data->overlay2, NULL);
+	igt_output_set_crtc(data->output, NULL);
+	igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+int igt_main()
+{
+	data_t data = {};
+
+	igt_fixture() {
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+		kmstest_set_vt_graphics_mode();
+		igt_display_require(&data.display, data.drm_fd);
+		igt_display_require_output(&data.display);
+
+		setup_output(&data);
+		create_fbs(&data);
+
+		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe,
+						 IGT_PIPE_CRC_SOURCE_AUTO);
+	}
+
+	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
+		     "where 2 planes have signaled fences and 1 plane has an "
+		     "unsignaled fence. Validates that display does not update "
+		     "any plane until all fences are signaled");
+	igt_subtest("multiplane-atomic-fence-wait")
+		multiplane_atomic_fence_wait(&data);
+
+	igt_fixture() {
+		reset_display_state(&data);
+		igt_pipe_crc_free(data.pipe_crc);
+		cleanup_crtc(&data);
+		igt_display_fini(&data.display);
+		drm_close_driver(data.drm_fd);
+	}
+}
diff --git a/tests/meson.build b/tests/meson.build
index 7f356de9b..eb7c8b13b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -36,6 +36,7 @@ test_progs = [
 	'kms_dither',
 	'kms_display_modes',
 	'kms_dp_aux_dev',
+	'kms_explicit_fence',
 	'kms_feature_discovery',
 	'kms_flip',
 	'kms_flip_event_leak',
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* ✓ Xe.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
  2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
@ 2026-02-26 16:40 ` Patchwork
  2026-02-26 17:40 ` ✓ i915.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-26 16:40 UTC (permalink / raw)
  To: S Sebinraj; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 1493 bytes --]

== Series Details ==

Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
URL   : https://patchwork.freedesktop.org/series/160078/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8773_BAT -> XEIGTPW_14624_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 14)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in XEIGTPW_14624_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6520])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
  [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520


Build changes
-------------

  * IGT: IGT_8773 -> IGTPW_14624
  * Linux: xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 -> xe-4622-50b03c02e68b265fb85f3844a4c24e57c5ad3b4f

  IGTPW_14624: 14624
  IGT_8773: 8773
  xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440: f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440
  xe-4622-50b03c02e68b265fb85f3844a4c24e57c5ad3b4f: 50b03c02e68b265fb85f3844a4c24e57c5ad3b4f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/index.html

[-- Attachment #2: Type: text/html, Size: 2069 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✓ i915.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
  2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
  2026-02-26 16:40 ` ✓ Xe.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6) Patchwork
@ 2026-02-26 17:40 ` Patchwork
  2026-02-26 17:57 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-26 17:40 UTC (permalink / raw)
  To: S Sebinraj; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 10926 bytes --]

== Series Details ==

Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
URL   : https://patchwork.freedesktop.org/series/160078/
State : success

== Summary ==

CI Bug Log - changes from IGT_8773 -> IGTPW_14624
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/index.html

Participating hosts (41 -> 39)
------------------------------

  Additional (2): bat-dg2-9 fi-kbl-8809g 
  Missing    (4): bat-dg2-13 bat-arls-6 fi-snb-2520m bat-adls-6 

Known issues
------------

  Here are the changes found in IGTPW_14624 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][1] ([i915#1849])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-8809g/igt@fbdev@info.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][2] ([i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic@lmem0:
    - bat-dg1-6:          [PASS][3] -> [ABORT][4] ([i915#15759]) +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-dg1-6/igt@gem_lmem_swapping@basic@lmem0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg1-6/igt@gem_lmem_swapping@basic@lmem0.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-atsm-1:         [PASS][5] -> [ABORT][6] ([i915#15759]) +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-atsm-1/igt@gem_lmem_swapping@parallel-random-engines.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-atsm-1/igt@gem_lmem_swapping@parallel-random-engines.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_mmap@basic:
    - bat-dg2-9:          NOTRUN -> [SKIP][8] ([i915#4083])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@gem_mmap@basic.html

  * igt@gem_mmap_gtt@basic:
    - bat-dg2-9:          NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@gem_mmap_gtt@basic.html

  * igt@gem_render_tiled_blits@basic:
    - bat-dg2-9:          NOTRUN -> [SKIP][10] ([i915#4079])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-dg2-9:          NOTRUN -> [SKIP][11] ([i915#15657])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_pm_rps@basic-api:
    - bat-dg2-9:          NOTRUN -> [SKIP][12] ([i915#11681] / [i915#6621])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@sanitycheck:
    - fi-kbl-7567u:       [PASS][13] -> [DMESG-WARN][14] ([i915#13735]) +79 other tests dmesg-warn
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-9:          NOTRUN -> [DMESG-FAIL][15] ([i915#12061]) +1 other test dmesg-fail
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@i915_selftest@live@workarounds.html
    - bat-dg2-14:         [PASS][16] -> [DMESG-FAIL][17] ([i915#12061]) +1 other test dmesg-fail
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-9:          NOTRUN -> [SKIP][18] ([i915#5190])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-dg2-9:          NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - bat-dg2-9:          NOTRUN -> [SKIP][20] ([i915#4212]) +7 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-dg2-9:          NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][22] ([i915#11190]) +16 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-dg2-9:          NOTRUN -> [SKIP][23]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-kbl-8809g:       NOTRUN -> [SKIP][24] +18 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-8809g/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-dg2-9:          NOTRUN -> [SKIP][25] ([i915#5354])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - fi-kbl-7567u:       [PASS][26] -> [DMESG-WARN][27] ([i915#13735] / [i915#180]) +53 other tests dmesg-warn
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_psr@psr-primary-page-flip:
    - bat-dg2-9:          NOTRUN -> [SKIP][28] ([i915#1072] / [i915#9732]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-dg2-9:          NOTRUN -> [SKIP][29] ([i915#3555])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-dg2-9:          NOTRUN -> [SKIP][30] ([i915#3708])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-dg2-9:          NOTRUN -> [SKIP][31] ([i915#3708] / [i915#4077]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-write:
    - bat-dg2-9:          NOTRUN -> [SKIP][32] ([i915#3291] / [i915#3708]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-dg2-9/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-arlh-2:         [INCOMPLETE][33] ([i915#15707]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-arlh-2/igt@i915_selftest@live.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-arlh-2/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gem_migrate:
    - bat-arlh-2:         [INCOMPLETE][35] -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-arlh-2/igt@i915_selftest@live@gem_migrate.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-arlh-2/igt@i915_selftest@live@gem_migrate.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [DMESG-FAIL][37] ([i915#12061]) -> [PASS][38] +1 other test pass
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8773/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/bat-arls-5/igt@i915_selftest@live@workarounds.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15707
  [i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
  [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8773 -> IGTPW_14624
  * Linux: CI_DRM_18050 -> CI_DRM_18052

  CI-20190529: 20190529
  CI_DRM_18050: f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18052: 50b03c02e68b265fb85f3844a4c24e57c5ad3b4f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14624: 14624
  IGT_8773: 8773

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/index.html

[-- Attachment #2: Type: text/html, Size: 12855 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✗ Xe.CI.FULL: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
  2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
  2026-02-26 16:40 ` ✓ Xe.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6) Patchwork
  2026-02-26 17:40 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-26 17:57 ` Patchwork
  2026-02-26 21:08 ` ✗ i915.CI.Full: " Patchwork
  2026-03-04  6:06 ` [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing Karthik B S
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-26 17:57 UTC (permalink / raw)
  To: S Sebinraj; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 39323 bytes --]

== Series Details ==

Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
URL   : https://patchwork.freedesktop.org/series/160078/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8773_FULL -> XEIGTPW_14624_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_14624_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_14624_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in XEIGTPW_14624_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3:
    - shard-bmg:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-8/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-3/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3.html

  
New tests
---------

  New tests have been introduced between XEIGT_8773_FULL and XEIGTPW_14624_FULL:

### New IGT tests (1) ###

  * igt@kms_explicit_fence@multiplane-atomic-fence-wait:
    - Statuses : 2 pass(s)
    - Exec time: [0.31, 0.34] s

  

Known issues
------------

  Here are the changes found in XEIGTPW_14624_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#1466])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#2233])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear:
    - shard-lnl:          [PASS][5] -> [FAIL][6] ([Intel XE#5993]) +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#3279])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2327]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1407]) +3 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#3658])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#7059])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +5 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +4 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#2191]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2887]) +7 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#2669]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#2887]) +6 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2724])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2252]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2325])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-9/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#306])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#373]) +4 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#6973])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#307] / [Intel XE#6974])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2390] / [Intel XE#6974])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][28] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_content_protection@legacy.html
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#3278] / [Intel XE#6973])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1:
    - shard-bmg:          NOTRUN -> [FAIL][30] ([Intel XE#6707])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1424]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#2321])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2321])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#309]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][36] -> [DMESG-WARN][37] ([Intel XE#5354])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2286])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#4294])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#2244])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#4422]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#4422]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_feature_discovery@chamelium:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#701])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#1421]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-bmg:          [PASS][45] -> [INCOMPLETE][46] ([Intel XE#6652]) +1 other test incomplete
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][47] -> [INCOMPLETE][48] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#7178]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#7178]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#6312]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#4141]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2352])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2311]) +16 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#7061])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#6312] / [Intel XE#651]) +8 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1469])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2313]) +8 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#656]) +20 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#6901])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-6/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#6901])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#7130]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7283]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#7283]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#4596])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#5021])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#5020])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][69] -> [FAIL][70] ([Intel XE#7340])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#1439] / [Intel XE#836])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#1489]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#2893]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-cursor-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-9/igt@kms_psr@fbc-psr2-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html

  * igt@kms_psr@pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1406]) +5 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@kms_psr@pr-sprite-render.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#2414])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#3414] / [Intel XE#3904])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#1127])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#6503]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#6599]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#1447])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#4837]) +6 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html

  * igt@xe_eudebug@basic-vm-bind-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#4837]) +4 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-7/igt@xe_eudebug_online@set-breakpoint.html
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-8/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_evict@evict-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#6540] / [Intel XE#688]) +6 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#7140]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_exec_balancer@once-parallel-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#7482]) +13 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-1/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2322]) +4 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#1392]) +4 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#7136]) +4 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#7136]) +7 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#6874]) +16 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-4/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#6874]) +13 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr.html

  * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#7138]) +2 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#7138]) +4 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html

  * igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#6964]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-7/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html

  * igt@xe_multigpu_svm@mgpu-migration-basic:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#6964])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-basic.html

  * igt@xe_oa@blocking:
    - shard-bmg:          [PASS][102] -> [ABORT][103] ([Intel XE#5545])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-5/igt@xe_oa@blocking.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@xe_oa@blocking.html

  * igt@xe_peer2peer@write:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1061] / [Intel XE#7326])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@xe_peer2peer@write.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#2284] / [Intel XE#366])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#4650])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-5/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#7174]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-8/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#4273])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-2/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_vm@out-of-memory:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#5745])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-lnl-3/igt@xe_vm@out-of-memory.html

  
#### Possible fixes ####

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          [SKIP][110] ([Intel XE#367]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][112] ([Intel XE#1503]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-7/igt@kms_hdr@invalid-hdr.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [FAIL][114] ([Intel XE#6361]) -> [PASS][115] +5 other tests pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-4/igt@kms_setmode@basic.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_setmode@basic.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][116] -> [FAIL][117] ([Intel XE#7480])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][118] ([Intel XE#2426]) -> [FAIL][119] ([Intel XE#1729])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][120] ([Intel XE#2426]) -> [SKIP][121] ([Intel XE#2509])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8773/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [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#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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [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#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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7480
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836


Build changes
-------------

  * IGT: IGT_8773 -> IGTPW_14624
  * Linux: xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 -> xe-4622-50b03c02e68b265fb85f3844a4c24e57c5ad3b4f

  IGTPW_14624: 14624
  IGT_8773: 8773
  xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440: f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440
  xe-4622-50b03c02e68b265fb85f3844a4c24e57c5ad3b4f: 50b03c02e68b265fb85f3844a4c24e57c5ad3b4f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14624/index.html

[-- Attachment #2: Type: text/html, Size: 43859 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* ✗ i915.CI.Full: failure for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
  2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
                   ` (2 preceding siblings ...)
  2026-02-26 17:57 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-26 21:08 ` Patchwork
  2026-03-04  6:06 ` [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing Karthik B S
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-02-26 21:08 UTC (permalink / raw)
  To: S Sebinraj; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 203666 bytes --]

== Series Details ==

Series: tests/kms_explict_fence: Add Test for Explicit Fencing (rev6)
URL   : https://patchwork.freedesktop.org/series/160078/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18052_full -> IGTPW_14624_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14624_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14624_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_14624/index.html

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_14624_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [PASS][1] -> [SKIP][2] +2 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-dg2:          NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_pm_rpm@package-g7.html

  
#### Warnings ####

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-dg2:          [SKIP][4] ([i915#11078]) -> [SKIP][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@i915_drm_fdinfo@busy-hang:
    - shard-dg2:          [SKIP][6] ([i915#14073]) -> [SKIP][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@i915_drm_fdinfo@busy-hang.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@i915_drm_fdinfo@busy-hang.html

  * igt@perf_pmu@module-unload:
    - shard-mtlp:         [INCOMPLETE][8] ([i915#13520]) -> [ABORT][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-mtlp-2/igt@perf_pmu@module-unload.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@perf_pmu@module-unload.html

  
New tests
---------

  New tests have been introduced between CI_DRM_18052_full and IGTPW_14624_full:

### New IGT tests (7) ###

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - Statuses : 2 skip(s)
    - Exec time: [0.00] s

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - Statuses : 2 skip(s)
    - Exec time: [0.00, 0.02] s

  * igt@kms_explicit_fence@multiplane-atomic-fence-wait:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.45] s

  

Known issues
------------

  Here are the changes found in IGTPW_14624_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][10] ([i915#8411])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@core_setmaster@master-drop-set-user:
    - shard-dg2:          [PASS][11] -> [FAIL][12] ([i915#15689])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@core_setmaster@master-drop-set-user.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@core_setmaster@master-drop-set-user.html

  * igt@fbdev@nullptr:
    - shard-dg2:          [PASS][13] -> [SKIP][14] ([i915#2582])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@fbdev@nullptr.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@fbdev@nullptr.html

  * igt@gem_basic@multigpu-create-close:
    - shard-tglu:         NOTRUN -> [SKIP][15] ([i915#7697])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-7/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html
    - shard-mtlp:         NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][18] ([i915#9323])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
    - shard-tglu:         NOTRUN -> [SKIP][19] ([i915#9323])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-tglu-1:       NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-dg1:          NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#13008])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [PASS][24] -> [INCOMPLETE][25] ([i915#13356])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html

  * igt@gem_ctx_persistence@engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][26] ([i915#1099]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb7/igt@gem_ctx_persistence@engines-queued.html

  * igt@gem_ctx_shared@exec-single-timeline@rcs0:
    - shard-dg1:          [PASS][27] -> [ABORT][28] ([i915#15759]) +7 other tests abort
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-14/igt@gem_ctx_shared@exec-single-timeline@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@gem_ctx_shared@exec-single-timeline@rcs0.html

  * igt@gem_ctx_sseu@engines:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#280])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@gem_ctx_sseu@engines.html

  * igt@gem_exec_balancer@hog:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4812])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_exec_balancer@hog.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-rkl:          NOTRUN -> [SKIP][31] ([i915#4525])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
    - shard-tglu-1:       NOTRUN -> [SKIP][32] ([i915#4525])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
    - shard-tglu:         NOTRUN -> [SKIP][33] ([i915#4525])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-tglu:         NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#6344])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
    - shard-tglu:         NOTRUN -> [SKIP][36] ([i915#6344])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_capture@capture@vecs0-lmem0:
    - shard-dg2:          NOTRUN -> [FAIL][37] ([i915#11965]) +3 other tests fail
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html

  * igt@gem_exec_fence@submit3:
    - shard-mtlp:         NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

  * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-mtlp:         NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#4812]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][47] ([i915#13196] / [i915#13356]) +1 other test incomplete
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@gem_exec_suspend@basic-s3.html
    - shard-rkl:          [PASS][48] -> [INCOMPLETE][49] ([i915#13356]) +2 other tests incomplete
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4860])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#4860])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#12193])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#4613])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#4565])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#14544] / [i915#4613]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
    - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#4613]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-tglu-1:       NOTRUN -> [SKIP][59] ([i915#4613])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][60] ([i915#4613]) +8 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_mmap@bad-offset:
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#4083])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-4/igt@gem_mmap@bad-offset.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][63] ([i915#4077]) +7 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_wc@write-wc-read-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4083])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html
    - shard-dg1:          NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@gem_mmap_wc@write-wc-read-gtt.html

  * igt@gem_pread@exhaustion:
    - shard-glk11:        NOTRUN -> [WARN][66] ([i915#2658])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> [WARN][67] ([i915#14702] / [i915#2658])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk2/igt@gem_pwrite@basic-exhaustion.html
    - shard-snb:          NOTRUN -> [WARN][68] ([i915#2658])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_readwrite@beyond-eob:
    - shard-rkl:          NOTRUN -> [SKIP][71] ([i915#3282]) +7 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@gem_readwrite@beyond-eob.html
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@gem_readwrite@beyond-eob.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#8428]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-4/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#4079])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4885])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][81] ([i915#4885])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#4885])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_spin_batch@spin-each:
    - shard-dg2:          [PASS][83] -> [ABORT][84] ([i915#15759])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@gem_spin_batch@spin-each.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@gem_spin_batch@spin-each.html

  * igt@gem_tiled_pread_basic@basic:
    - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#15657])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_tiled_pread_basic@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#15657])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@gem_tiled_pread_basic@basic.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-mtlp:         NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][88] ([i915#3323])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#3297])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-rkl:          NOTRUN -> [SKIP][90] ([i915#3297] / [i915#3323])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
    - shard-tglu:         NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][93] ([i915#3297])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#3281] / [i915#3297])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@gem_userptr_blits@relocations.html
    - shard-dg1:          NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@gem_userptr_blits@relocations.html
    - shard-mtlp:         NOTRUN -> [SKIP][96] ([i915#3281] / [i915#3297])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-dg2:          [PASS][97] -> [SKIP][98] ([i915#15689] / [i915#2575]) +82 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-4/igt@gem_userptr_blits@sync-unmap.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_workarounds@suspend-resume:
    - shard-rkl:          [PASS][99] -> [ABORT][100] ([i915#15152])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@gem_workarounds@suspend-resume.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-1/igt@gem_workarounds@suspend-resume.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#2856]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html
    - shard-tglu-1:       NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
    - shard-glk:          NOTRUN -> [ABORT][103] ([i915#5566])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk8/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-tglu:         NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +4 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg1:          NOTRUN -> [SKIP][105] ([i915#2527]) +4 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@gen9_exec_parse@bb-large.html
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-rkl:          NOTRUN -> [SKIP][107] ([i915#2527]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_drm_fdinfo@all-busy-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#14123])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@i915_drm_fdinfo@all-busy-check-all.html

  * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#11527]) +6 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html

  * igt@i915_drm_fdinfo@isolation@rcs0:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#14073]) +6 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@i915_drm_fdinfo@isolation@rcs0.html

  * igt@i915_drm_fdinfo@most-busy-check-all@vcs1:
    - shard-dg1:          NOTRUN -> [SKIP][111] ([i915#14073]) +5 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html

  * igt@i915_drm_fdinfo@virtual-busy-hang-all:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#14118])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#14118])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
    - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#14118])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-hang-all.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][115] ([i915#13029] / [i915#14545])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@resize-bar:
    - shard-tglu-1:       NOTRUN -> [SKIP][116] ([i915#6412])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-mtlp:         NOTRUN -> [SKIP][117] +13 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-accuracy@gt0:
    - shard-dg2:          NOTRUN -> [FAIL][118] ([i915#12964])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-glk:          [PASS][119] -> [INCOMPLETE][120] ([i915#13356] / [i915#15172])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_query@hwconfig_table:
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#6245])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@i915_query@hwconfig_table.html
    - shard-tglu:         NOTRUN -> [SKIP][122] ([i915#6245])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-6/igt@i915_query@hwconfig_table.html
    - shard-rkl:          NOTRUN -> [SKIP][123] ([i915#6245])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@i915_query@hwconfig_table.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-rkl:          [PASS][124] -> [INCOMPLETE][125] ([i915#4817])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          NOTRUN -> [SKIP][126] ([i915#7707]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@intel_hwmon@hwmon-read.html

  * igt@intel_hwmon@hwmon-write:
    - shard-tglu:         NOTRUN -> [SKIP][127] ([i915#7707])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-4/igt@intel_hwmon@hwmon-write.html
    - shard-mtlp:         NOTRUN -> [SKIP][128] ([i915#7707])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#4212])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#4215] / [i915#5190])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk:          NOTRUN -> [INCOMPLETE][131] ([i915#12761])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][132] ([i915#12761] / [i915#14995])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-dg2:          [PASS][133] -> [FAIL][134] ([i915#5956])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-glk10:        NOTRUN -> [SKIP][136] ([i915#1769])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [FAIL][137] ([i915#5956])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) +2 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][139] ([i915#5286]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [PASS][140] -> [FAIL][141] ([i915#15733] / [i915#5138])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-tglu:         NOTRUN -> [SKIP][142] ([i915#5286]) +6 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
    - shard-dg1:          NOTRUN -> [SKIP][143] ([i915#5286])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#5286]) +3 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][145] ([i915#14544] / [i915#5286])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][146] ([i915#3638]) +5 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#3638]) +5 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][148] ([i915#3828]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-tglu:         NOTRUN -> [SKIP][149] ([i915#3828])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-mtlp:         NOTRUN -> [SKIP][150] ([i915#3828])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][151] +6 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#15689] / [i915#5190]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][153] ([i915#6187])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +6 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][155] ([i915#4538]) +4 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][156] ([i915#6095]) +201 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#15689]) +78 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][158] ([i915#12313]) +2 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][159] ([i915#12313])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
    - shard-dg2:          NOTRUN -> [SKIP][160] ([i915#12313])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
    - shard-mtlp:         NOTRUN -> [SKIP][161] ([i915#6095]) +34 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][162] +46 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#6095]) +69 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][164] ([i915#6095]) +69 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#12805])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][166] ([i915#12805])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][167] ([i915#12805])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#12805])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][169] ([i915#12805])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][170] ([i915#14694] / [i915#15582]) +1 other test incomplete
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][171] ([i915#15582]) +1 other test incomplete
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][172] ([i915#14098] / [i915#6095]) +48 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#10307] / [i915#6095]) +108 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][174] ([i915#10307] / [i915#10434] / [i915#6095])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#14544] / [i915#6095]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][176] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-tglu-1:       NOTRUN -> [SKIP][177] ([i915#6095]) +29 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#6095]) +40 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-tglu-1:       NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +3 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +7 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#11151] / [i915#14544] / [i915#7828])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-dg1:          NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +5 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-fast.html
    - shard-mtlp:         NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +3 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +7 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +4 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-plane-1:
    - shard-mtlp:         NOTRUN -> [FAIL][186] ([i915#15733]) +25 other tests fail
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-8/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-plane-1.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#6944] / [i915#7116] / [i915#9424]) +2 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_content_protection@atomic-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +2 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][189] ([i915#15330] / [i915#3116] / [i915#3299])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][190] ([i915#15330])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][191] ([i915#15330])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglu:         NOTRUN -> [SKIP][192] ([i915#15330] / [i915#3116] / [i915#3299])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2:          NOTRUN -> [SKIP][193] ([i915#15330] / [i915#3299])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#6944])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][196] ([i915#6944])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_content_protection@legacy-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][197] ([i915#6944])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@kms_content_protection@legacy-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][198] ([i915#6944])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-4/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@suspend-resume:
    - shard-tglu-1:       NOTRUN -> [SKIP][199] ([i915#6944])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@type1:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#6944] / [i915#7118] / [i915#9424]) +2 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-mtlp:         NOTRUN -> [SKIP][201] ([i915#6944] / [i915#9424]) +1 other test skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#13049])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][203] ([i915#13049])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [FAIL][204] ([i915#13566])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
    - shard-tglu-1:       NOTRUN -> [FAIL][205] ([i915#13566]) +1 other test fail
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8814])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#3555]) +3 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu:         NOTRUN -> [SKIP][208] ([i915#3555]) +5 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-tglu-1:       NOTRUN -> [SKIP][209] ([i915#3555]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-rkl:          [PASS][210] -> [FAIL][211] ([i915#13566]) +1 other test fail
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
    - shard-tglu:         [PASS][212] -> [FAIL][213] ([i915#13566]) +3 other tests fail
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][214] ([i915#12358] / [i915#14152] / [i915#7882])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][215] ([i915#12358] / [i915#14152])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#9809]) +3 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][217] +18 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][218] ([i915#14544]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][219] ([i915#13046] / [i915#5354])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#4103])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-dg1:          NOTRUN -> [SKIP][221] ([i915#4103] / [i915#4213])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-tglu:         NOTRUN -> [SKIP][222] ([i915#4103]) +1 other test skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][223] ([i915#4213])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-dg2:          NOTRUN -> [SKIP][224] ([i915#4103] / [i915#4213])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][225] ([i915#9723])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#3804])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-tglu-1:       NOTRUN -> [SKIP][227] ([i915#13707])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg1:          NOTRUN -> [SKIP][228] ([i915#13707])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-tglu:         NOTRUN -> [SKIP][229] ([i915#13707])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#13707])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][231] ([i915#8812])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8812])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_dsc@dsc-with-formats.html
    - shard-dg2:          NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3840])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#3555] / [i915#3840])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#3555] / [i915#3840])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][237] ([i915#3555] / [i915#3840])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][238] ([i915#9878])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-tglu:         NOTRUN -> [SKIP][239] ([i915#3469])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-4/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-4x:
    - shard-rkl:          NOTRUN -> [SKIP][240] ([i915#1839])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#9337])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#9337])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][243] ([i915#3637] / [i915#9934]) +10 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
    - shard-mtlp:         NOTRUN -> [SKIP][244] ([i915#3637] / [i915#9934]) +4 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-modeset:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#9934]) +1 other test skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_flip@2x-flip-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-panning:
    - shard-tglu-1:       NOTRUN -> [SKIP][246] ([i915#3637] / [i915#9934]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][247] ([i915#12745] / [i915#4839])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][248] ([i915#12314] / [i915#12745] / [i915#4839])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][249] ([i915#12314] / [i915#4839])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][250] ([i915#4839])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#9934]) +13 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#9934]) +5 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][253] ([i915#14544] / [i915#9934])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@plain-flip-fb-recreate@a-vga1:
    - shard-snb:          [PASS][254] -> [FAIL][255] ([i915#10826]) +1 other test fail
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html

  * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3:
    - shard-dg2:          NOTRUN -> [FAIL][256] ([i915#14600])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][257] ([i915#15643]) +1 other test skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
    - shard-dg2:          NOTRUN -> [SKIP][258] ([i915#15643]) +1 other test skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][259] ([i915#15643]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][260] ([i915#15643]) +7 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][261] ([i915#15643]) +4 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#15643]) +4 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_force_connector_basic@force-edid:
    - shard-mtlp:         NOTRUN -> [SKIP][263] ([i915#15672])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][264] ([i915#8708]) +6 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-dg2:          NOTRUN -> [SKIP][265] ([i915#5354]) +12 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          [PASS][266] -> [SKIP][267] +12 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][268] ([i915#14544] / [i915#1825]) +2 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#5439])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][270] ([i915#8708]) +8 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-dg2:          NOTRUN -> [SKIP][271] ([i915#10433] / [i915#15102] / [i915#3458])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][272] +37 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][273] +21 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][274] ([i915#8708]) +7 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][275] ([i915#1825]) +35 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#15102] / [i915#3023]) +16 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][277] ([i915#15102]) +3 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#15102]) +5 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#15102] / [i915#3458]) +10 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#14544] / [i915#15102] / [i915#3023])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][281] ([i915#15102]) +11 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][282] ([i915#15102] / [i915#3458]) +12 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][283] ([i915#1825]) +18 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-tglu:         NOTRUN -> [SKIP][284] ([i915#15102]) +29 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          [PASS][285] -> [SKIP][286] ([i915#3555] / [i915#8228])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_hdr@bpc-switch.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_hdr@bpc-switch.html
    - shard-tglu-1:       NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_hdr@static-toggle.html
    - shard-tglu:         NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +2 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_hdr@static-toggle.html
    - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#12713] / [i915#3555] / [i915#8228])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-5/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) +1 other test skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_invalid_mode@bad-hsync-end:
    - shard-dg1:          [PASS][293] -> [DMESG-WARN][294] ([i915#4423]) +3 other tests dmesg-warn
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_invalid_mode@bad-hsync-end.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@kms_invalid_mode@bad-hsync-end.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][295] ([i915#15459])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][296] ([i915#15458])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][297] ([i915#15458])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-7/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][298] ([i915#15459])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][299] ([i915#12756] / [i915#13409] / [i915#13476])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][300] ([i915#13409] / [i915#13476])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-tglu:         NOTRUN -> [SKIP][301] ([i915#14712]) +1 other test skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][302] ([i915#14712])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-rkl:          NOTRUN -> [SKIP][303] ([i915#14712])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-dg1:          NOTRUN -> [SKIP][304] ([i915#14712])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-glk10:        NOTRUN -> [SKIP][305] +84 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#15709]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][307] ([i915#15709]) +4 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][308] ([i915#15709]) +2 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][309] ([i915#15709]) +4 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#15709]) +4 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
    - shard-tglu-1:       NOTRUN -> [SKIP][311] ([i915#15709]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][312] ([i915#14544] / [i915#15709])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#15608]) +1 other test skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][314] ([i915#15608]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][315] ([i915#13026]) +1 other test incomplete
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][316] ([i915#10647] / [i915#12169])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk8/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][317] ([i915#10647]) +1 other test fail
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][318] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][319] ([i915#11614] / [i915#3582]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-tglu-1:       NOTRUN -> [SKIP][320] ([i915#13958])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-rkl:          NOTRUN -> [SKIP][321] ([i915#15329] / [i915#3555])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][322] ([i915#15329]) +6 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][323] ([i915#15329]) +9 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
    - shard-dg2:          [PASS][324] -> [SKIP][325] ([i915#15689] / [i915#9423]) +3 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg1:          NOTRUN -> [SKIP][326] ([i915#15329]) +4 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
    - shard-dg2:          NOTRUN -> [SKIP][327] ([i915#15689] / [i915#9423])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-mtlp:         NOTRUN -> [SKIP][328] ([i915#15329] / [i915#3555] / [i915#6953])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][329] ([i915#15329]) +3 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html

  * igt@kms_pm_backlight@fade:
    - shard-tglu:         NOTRUN -> [SKIP][330] ([i915#9812]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-5/igt@kms_pm_backlight@fade.html
    - shard-rkl:          NOTRUN -> [SKIP][331] ([i915#5354])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-rkl:          NOTRUN -> [SKIP][332] ([i915#9685])
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-tglu-1:       NOTRUN -> [SKIP][333] ([i915#3828])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg1:          NOTRUN -> [SKIP][334] ([i915#15073])
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-rkl:          [PASS][335] -> [SKIP][336] ([i915#15073]) +2 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][337] ([i915#15073])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
    - shard-tglu-1:       NOTRUN -> [SKIP][338] ([i915#15073])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [PASS][339] -> [SKIP][340] ([i915#15073]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglu:         NOTRUN -> [SKIP][341] ([i915#15073])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@package-g7:
    - shard-tglu:         NOTRUN -> [SKIP][342] ([i915#15403])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-7/igt@kms_pm_rpm@package-g7.html
    - shard-mtlp:         NOTRUN -> [SKIP][343] ([i915#15403])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-7/igt@kms_pm_rpm@package-g7.html
    - shard-rkl:          NOTRUN -> [SKIP][344] ([i915#15403])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_pm_rpm@package-g7.html
    - shard-dg1:          NOTRUN -> [SKIP][345] ([i915#15403])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@pm-caching:
    - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#4077] / [i915#4423])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_pm_rpm@pm-caching.html
    - shard-mtlp:         NOTRUN -> [SKIP][347] ([i915#4077]) +5 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_pm_rpm@pm-caching.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          [PASS][348] -> [INCOMPLETE][349] ([i915#10553])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-snb:          NOTRUN -> [SKIP][350] ([i915#11520]) +4 other tests skip
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][351] ([i915#11520]) +6 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
    - shard-tglu:         NOTRUN -> [SKIP][352] ([i915#11520]) +9 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][353] ([i915#11520]) +6 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][354] ([i915#9808])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][355] ([i915#12316]) +4 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][356] ([i915#11520]) +2 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
    - shard-glk11:        NOTRUN -> [SKIP][357] ([i915#11520]) +1 other test skip
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk10:        NOTRUN -> [SKIP][358] ([i915#11520])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][359] ([i915#11520]) +9 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][360] ([i915#11520]) +5 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][361] ([i915#9688]) +11 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_psr@fbc-pr-basic.html

  * igt@kms_psr@fbc-psr-cursor-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-dg2:          NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +7 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-tglu-1:       NOTRUN -> [SKIP][364] ([i915#9732]) +7 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][365] +464 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +15 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +17 other tests skip
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-cursor-plane-onoff:
    - shard-tglu:         NOTRUN -> [SKIP][368] ([i915#9732]) +22 other tests skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglu-1:       NOTRUN -> [SKIP][369] ([i915#9685])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg1:          NOTRUN -> [SKIP][370] ([i915#9685])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-tglu:         NOTRUN -> [SKIP][371] ([i915#9685])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#9685])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-rkl:          NOTRUN -> [SKIP][373] ([i915#14544] / [i915#9685])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-snb:          NOTRUN -> [SKIP][374] +215 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb4/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-mtlp:         NOTRUN -> [SKIP][375] ([i915#12755]) +1 other test skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk:          NOTRUN -> [INCOMPLETE][376] ([i915#15500])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][377] ([i915#12755] / [i915#5190])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2:          NOTRUN -> [SKIP][378] ([i915#5190]) +1 other test skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-rkl:          NOTRUN -> [SKIP][379] ([i915#5289])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-dg1:          NOTRUN -> [SKIP][380] ([i915#5289])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-tglu:         NOTRUN -> [SKIP][381] ([i915#5289])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][382] ([i915#5289])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-tglu-1:       NOTRUN -> [SKIP][383] ([i915#5289])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-1/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][384] ([i915#12755])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][385] ([i915#3555]) +2 other tests skip
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-dg1:          NOTRUN -> [SKIP][386] ([i915#3555]) +2 other tests skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-mtlp:         NOTRUN -> [SKIP][387] ([i915#3555] / [i915#8809])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][388] ([i915#12276]) +1 other test incomplete
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][389] ([i915#12276]) +1 other test incomplete
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@flip-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][390] ([i915#15243] / [i915#3555])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@max-min:
    - shard-dg2:          NOTRUN -> [SKIP][391] ([i915#9906])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_vrr@max-min.html
    - shard-rkl:          NOTRUN -> [SKIP][392] ([i915#9906]) +1 other test skip
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_vrr@max-min.html
    - shard-dg1:          NOTRUN -> [SKIP][393] ([i915#9906])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_vrr@max-min.html
    - shard-tglu:         NOTRUN -> [SKIP][394] ([i915#9906])
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-5/igt@kms_vrr@max-min.html
    - shard-mtlp:         NOTRUN -> [SKIP][395] ([i915#8808] / [i915#9906])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-6/igt@kms_vrr@max-min.html

  * igt@kms_vrr@negative-basic:
    - shard-mtlp:         [PASS][396] -> [FAIL][397] ([i915#15420]) +1 other test fail
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-mtlp-5/igt@kms_vrr@negative-basic.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-3/igt@kms_vrr@negative-basic.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-dg2:          [PASS][398] -> [SKIP][399] ([i915#15607]) +1 other test skip
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@perf@gen12-oa-tlb-invalidate.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-dg2:          NOTRUN -> [SKIP][400] ([i915#2436])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          NOTRUN -> [FAIL][401] ([i915#9100]) +1 other test fail
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html

  * igt@prime_vgem@coherency-blt:
    - shard-dg2:          NOTRUN -> [SKIP][402] ([i915#15689] / [i915#2575]) +26 other tests skip
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@prime_vgem@coherency-blt.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg2:          NOTRUN -> [SKIP][403] ([i915#3708])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
    - shard-rkl:          NOTRUN -> [SKIP][404] ([i915#3708]) +1 other test skip
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][405] ([i915#3708])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][406] ([i915#3708])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@prime_vgem@fence-flip-hang.html

  * igt@prime_vgem@fence-write-hang:
    - shard-tglu:         NOTRUN -> [SKIP][407] +81 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-tglu:         NOTRUN -> [FAIL][408] ([i915#12910]) +9 other tests fail
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
    - shard-mtlp:         NOTRUN -> [FAIL][409] ([i915#12910]) +9 other tests fail
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
    - shard-dg2:          NOTRUN -> [SKIP][410] ([i915#9917])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html
    - shard-dg1:          NOTRUN -> [SKIP][411] ([i915#9917])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
    - shard-dg2:          [PASS][412] -> [SKIP][413] ([i915#15689]) +113 other tests skip
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-4/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html

  
#### Possible fixes ####

  * igt@fbdev@read:
    - shard-dg2:          [SKIP][414] ([i915#2582]) -> [PASS][415]
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@fbdev@read.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@fbdev@read.html

  * igt@gem_softpin@invalid:
    - shard-dg2:          [SKIP][416] ([i915#15689] / [i915#2575]) -> [PASS][417] +97 other tests pass
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_softpin@invalid.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_softpin@invalid.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [INCOMPLETE][418] ([i915#13356]) -> [PASS][419]
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_selftest@live@objects:
    - shard-dg2:          [FAIL][420] ([i915#15689]) -> [PASS][421] +35 other tests pass
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_selftest@live@objects.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@i915_selftest@live@objects.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-rkl:          [ABORT][422] ([i915#15131]) -> [PASS][423]
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg2:          [WARN][424] ([i915#15689]) -> [PASS][425]
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
    - shard-glk:          [INCOMPLETE][426] ([i915#4817]) -> [PASS][427]
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-glk1/igt@i915_suspend@basic-s3-without-i915.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@sysfs-reader:
    - shard-rkl:          [INCOMPLETE][428] ([i915#4817]) -> [PASS][429]
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@i915_suspend@sysfs-reader.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@i915_suspend@sysfs-reader.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear:
    - shard-dg2:          [SKIP][430] ([i915#15689]) -> [PASS][431] +147 other tests pass
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-edp-1:
    - shard-mtlp:         [FAIL][432] ([i915#15733]) -> [PASS][433] +4 other tests pass
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-edp-1.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-edp-1.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [FAIL][434] ([i915#13566]) -> [PASS][435]
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-3:
    - shard-dg2:          [ABORT][436] ([i915#15759]) -> [PASS][437] +3 other tests pass
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-3.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-d-hdmi-a-3.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         [FAIL][438] ([i915#13566]) -> [PASS][439] +1 other test pass
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg1:          [DMESG-WARN][440] ([i915#4423]) -> [PASS][441] +1 other test pass
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-snb:          [SKIP][442] -> [PASS][443] +12 other tests pass
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-rkl:          [SKIP][444] ([i915#3555] / [i915#8228]) -> [PASS][445]
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_hdr@static-toggle-dpms.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-a-plane-0:
    - shard-dg1:          [ABORT][446] ([i915#15759]) -> [PASS][447] +1 other test pass
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-a-plane-0.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-17/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          [SKIP][448] ([i915#6953]) -> [PASS][449]
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-tglu:         [SKIP][450] ([i915#6953]) -> [PASS][451]
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
    - shard-dg2:          [SKIP][452] ([i915#15689] / [i915#9423]) -> [PASS][453] +6 other tests pass
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [SKIP][454] ([i915#9340]) -> [PASS][455]
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          [SKIP][456] ([i915#15073]) -> [PASS][457]
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-rkl:          [ABORT][458] ([i915#15132]) -> [PASS][459]
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@perf@polling:
    - shard-dg2:          [SKIP][460] -> [PASS][461] +1 other test pass
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@perf@polling.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@perf@polling.html

  * igt@perf_pmu@multi-client:
    - shard-dg2:          [SKIP][462] ([i915#15607]) -> [PASS][463]
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@perf_pmu@multi-client.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@perf_pmu@multi-client.html

  * igt@perf_pmu@render-node-busy-idle:
    - shard-mtlp:         [FAIL][464] ([i915#4349]) -> [PASS][465] +1 other test pass
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-mtlp-1/igt@perf_pmu@render-node-busy-idle.html

  
#### Warnings ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg2:          [SKIP][466] ([i915#15689] / [i915#2575]) -> [SKIP][467] ([i915#8411]) +1 other test skip
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@device_reset@cold-reset-bound:
    - shard-dg2:          [SKIP][468] ([i915#15689]) -> [SKIP][469] ([i915#11078])
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@device_reset@cold-reset-bound.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@device_reset@cold-reset-bound.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg2:          [SKIP][470] ([i915#15689] / [i915#2575]) -> [SKIP][471] ([i915#7697])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-rkl:          [SKIP][472] ([i915#14544] / [i915#7697]) -> [SKIP][473] ([i915#7697])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          [SKIP][474] ([i915#15689] / [i915#2575]) -> [SKIP][475] ([i915#8562])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          [SKIP][476] ([i915#15689] / [i915#2575]) -> [SKIP][477] ([i915#8555]) +1 other test skip
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg2:          [SKIP][478] ([i915#8555]) -> [SKIP][479] ([i915#15689] / [i915#2575])
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-many.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          [SKIP][480] ([i915#5882]) -> [SKIP][481] ([i915#15689] / [i915#2575])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          [SKIP][482] ([i915#280]) -> [SKIP][483] ([i915#15689] / [i915#2575])
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          [SKIP][484] ([i915#15689] / [i915#2575]) -> [SKIP][485] ([i915#280])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          [SKIP][486] ([i915#15689] / [i915#2575]) -> [SKIP][487] ([i915#4812]) +1 other test skip
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          [SKIP][488] ([i915#4036]) -> [SKIP][489] ([i915#15689] / [i915#2575])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@gem_exec_balancer@invalid-bonds.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_capture@capture:
    - shard-dg2:          [SKIP][490] ([i915#15689] / [i915#2575]) -> [FAIL][491] ([i915#11965])
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_exec_capture@capture.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_exec_capture@capture.html

  * igt@gem_exec_capture@capture-invisible:
    - shard-dg2:          [SKIP][492] ([i915#6334]) -> [SKIP][493] ([i915#15689] / [i915#2575])
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@gem_exec_capture@capture-invisible.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_exec_capture@capture-invisible.html

  * igt@gem_exec_fence@concurrent:
    - shard-dg2:          [SKIP][494] ([i915#4812]) -> [SKIP][495] ([i915#15689] / [i915#2575])
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@gem_exec_fence@concurrent.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-wb-prw-default:
    - shard-dg2:          [SKIP][496] ([i915#15689] / [i915#2575]) -> [SKIP][497] ([i915#3539] / [i915#4852]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@gem_exec_flush@basic-wb-prw-default.html

  * igt@gem_exec_flush@basic-wb-set-default:
    - shard-dg2:          [SKIP][498] ([i915#3539] / [i915#4852]) -> [SKIP][499] ([i915#15689] / [i915#2575])
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@gem_exec_flush@basic-wb-set-default.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_exec_flush@basic-wb-set-default.html

  * igt@gem_exec_reloc@basic-wc-gtt-active:
    - shard-rkl:          [SKIP][500] ([i915#14544] / [i915#3281]) -> [SKIP][501] ([i915#3281]) +4 other tests skip
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt-active.html

  * igt@gem_exec_reloc@basic-write-cpu:
    - shard-dg2:          [SKIP][502] ([i915#3281]) -> [SKIP][503] ([i915#15689] / [i915#2575]) +8 other tests skip
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gem_exec_reloc@basic-write-cpu.html
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_exec_reloc@basic-write-cpu.html
    - shard-rkl:          [SKIP][504] ([i915#3281]) -> [SKIP][505] ([i915#14544] / [i915#3281]) +1 other test skip
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-3/igt@gem_exec_reloc@basic-write-cpu.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          [SKIP][506] ([i915#15689] / [i915#2575]) -> [SKIP][507] ([i915#3281]) +12 other tests skip
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          [SKIP][508] ([i915#15689] / [i915#2575]) -> [SKIP][509] ([i915#4537] / [i915#4812]) +1 other test skip
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2:          [SKIP][510] ([i915#4860]) -> [SKIP][511] ([i915#15689] / [i915#2575]) +2 other tests skip
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_fence_thrash@bo-write-verify-y:
    - shard-dg2:          [SKIP][512] ([i915#15689] / [i915#2575]) -> [SKIP][513] ([i915#4860])
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-rkl:          [SKIP][514] ([i915#14544] / [i915#4613]) -> [SKIP][515] ([i915#4613]) +1 other test skip
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_media_vme:
    - shard-dg2:          [SKIP][516] ([i915#15689] / [i915#2575]) -> [SKIP][517] ([i915#284])
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_media_vme.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_media_vme.html

  * igt@gem_mmap_gtt@basic-small-bo-tiledx:
    - shard-dg2:          [SKIP][518] ([i915#15689] / [i915#2575]) -> [SKIP][519] ([i915#4077]) +6 other tests skip
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@gem_mmap_gtt@basic-small-bo-tiledx.html

  * igt@gem_mmap_wc@close:
    - shard-dg2:          [SKIP][520] ([i915#4083]) -> [SKIP][521] ([i915#15689] / [i915#2575]) +4 other tests skip
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@gem_mmap_wc@close.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_mmap_wc@close.html

  * igt@gem_mmap_wc@coherency:
    - shard-dg2:          [SKIP][522] ([i915#15689] / [i915#2575]) -> [SKIP][523] ([i915#4083]) +6 other tests skip
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_mmap_wc@coherency.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_mmap_wc@coherency.html

  * igt@gem_partial_pwrite_pread@reads:
    - shard-rkl:          [SKIP][524] ([i915#14544] / [i915#3282]) -> [SKIP][525] ([i915#3282]) +1 other test skip
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html

  * igt@gem_pread@snoop:
    - shard-dg2:          [SKIP][526] ([i915#15689] / [i915#2575]) -> [SKIP][527] ([i915#3282]) +5 other tests skip
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_pread@snoop.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@gem_pread@snoop.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          [SKIP][528] ([i915#15689] / [i915#2575]) -> [SKIP][529] ([i915#4270]) +1 other test skip
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-dg2:          [SKIP][530] ([i915#4270]) -> [SKIP][531] ([i915#15689] / [i915#2575])
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-dg2:          [SKIP][532] ([i915#15689] / [i915#2575] / [i915#5190]) -> [SKIP][533] ([i915#5190] / [i915#8428]) +3 other tests skip
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-dg2:          [SKIP][534] ([i915#5190] / [i915#8428]) -> [SKIP][535] ([i915#15689] / [i915#2575] / [i915#5190]) +4 other tests skip
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          [SKIP][536] ([i915#4079]) -> [SKIP][537] ([i915#15689] / [i915#2575])
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gem_tiled_pread_pwrite.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-dg2:          [SKIP][538] ([i915#3297]) -> [SKIP][539] ([i915#15689] / [i915#2575])
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@gem_userptr_blits@dmabuf-unsync.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          [SKIP][540] ([i915#15689] / [i915#2575]) -> [SKIP][541] ([i915#3297]) +2 other tests skip
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          [SKIP][542] ([i915#3297] / [i915#4880]) -> [SKIP][543] ([i915#15689] / [i915#2575])
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@relocations:
    - shard-dg2:          [SKIP][544] ([i915#15689] / [i915#2575]) -> [SKIP][545] ([i915#3281] / [i915#3297])
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gem_userptr_blits@relocations.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gem_userptr_blits@relocations.html

  * igt@gen3_render_linear_blits:
    - shard-dg2:          [SKIP][546] -> [SKIP][547] ([i915#15689] / [i915#2575]) +3 other tests skip
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@gen3_render_linear_blits.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-rkl:          [SKIP][548] ([i915#2527]) -> [SKIP][549] ([i915#14544] / [i915#2527])
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-dg2:          [SKIP][550] ([i915#2856]) -> [SKIP][551] ([i915#15689] / [i915#2575]) +1 other test skip
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@gen9_exec_parse@bb-start-out.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@gen9_exec_parse@bb-start-out.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-rkl:          [SKIP][552] ([i915#14544] / [i915#2527]) -> [SKIP][553] ([i915#2527])
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@gen9_exec_parse@secure-batches.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          [SKIP][554] ([i915#15689] / [i915#2575]) -> [SKIP][555] ([i915#2856]) +4 other tests skip
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_drm_fdinfo@busy-idle-check-all:
    - shard-dg2:          [SKIP][556] ([i915#15607]) -> [SKIP][557] ([i915#11527])
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_drm_fdinfo@busy-idle-check-all.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle-check-all.html

  * igt@i915_drm_fdinfo@isolation:
    - shard-dg2:          [SKIP][558] ([i915#15689]) -> [SKIP][559] ([i915#14073])
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_drm_fdinfo@isolation.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@i915_drm_fdinfo@isolation.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-rkl:          [SKIP][560] ([i915#15479]) -> [SKIP][561] ([i915#14544] / [i915#15479]) +4 other tests skip
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-dg2:          [SKIP][562] ([i915#15689] / [i915#2575]) -> [FAIL][563] ([i915#12964])
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg2:          [SKIP][564] ([i915#11681] / [i915#6621]) -> [SKIP][565] ([i915#15689] / [i915#2575])
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@i915_pm_rps@basic-api.html
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@thresholds:
    - shard-dg2:          [SKIP][566] ([i915#11681]) -> [SKIP][567] ([i915#15689] / [i915#2575]) +1 other test skip
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@i915_pm_rps@thresholds.html
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@i915_pm_rps@thresholds.html

  * igt@i915_selftest@live@workarounds:
    - shard-dg2:          [FAIL][568] ([i915#15689]) -> [DMESG-FAIL][569] ([i915#12061]) +1 other test dmesg-fail
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@i915_selftest@live@workarounds.html
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-dg2:          [SKIP][570] ([i915#4077]) -> [SKIP][571] ([i915#15689] / [i915#2575]) +6 other tests skip
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-4/igt@i915_suspend@fence-restore-untiled.html
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          [SKIP][572] ([i915#4212]) -> [SKIP][573] ([i915#15689])
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@bo-too-small-due-to-tiling:
    - shard-dg2:          [SKIP][574] ([i915#15689]) -> [SKIP][575] ([i915#4212])
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][576] ([i915#9531]) -> [SKIP][577] ([i915#15689])
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-dg1:          [SKIP][578] ([i915#9531]) -> [SKIP][579] ([i915#4423] / [i915#9531])
   [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-rkl:          [SKIP][580] ([i915#14544] / [i915#5286]) -> [SKIP][581] ([i915#5286])
   [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          [SKIP][582] ([i915#5286]) -> [SKIP][583] ([i915#14544] / [i915#5286])
   [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg1:          [SKIP][584] ([i915#3638]) -> [SKIP][585] ([i915#3638] / [i915#4423])
   [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-12/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-dg2:          [SKIP][586] ([i915#4538] / [i915#5190]) -> [SKIP][587] ([i915#15689] / [i915#5190]) +6 other tests skip
   [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][588] ([i915#15689] / [i915#5190]) -> [SKIP][589] ([i915#4538] / [i915#5190]) +7 other tests skip
   [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
    - shard-rkl:          [SKIP][590] ([i915#14544] / [i915#3638]) -> [SKIP][591] ([i915#3638])
   [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          [SKIP][592] ([i915#5190]) -> [SKIP][593] ([i915#15689] / [i915#5190]) +1 other test skip
   [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-rkl:          [SKIP][594] -> [SKIP][595] ([i915#14544]) +4 other tests skip
   [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
   [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2:          [SKIP][596] ([i915#15689] / [i915#5190]) -> [SKIP][597] ([i915#5190])
   [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][598] ([i915#14544] / [i915#6095]) -> [SKIP][599] ([i915#6095]) +1 other test skip
   [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
   [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          [SKIP][600] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][601] ([i915#14098] / [i915#6095]) +4 other tests skip
   [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
   [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2:          [SKIP][602] ([i915#15689]) -> [SKIP][603] ([i915#10307] / [i915#6095]) +13 other tests skip
   [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
   [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2:          [SKIP][604] ([i915#15689]) -> [SKIP][605] ([i915#12313])
   [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
    - shard-rkl:          [SKIP][606] ([i915#12313] / [i915#14544]) -> [SKIP][607] ([i915#12313])
   [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
    - shard-dg2:          [SKIP][608] ([i915#10307] / [i915#6095]) -> [SKIP][609] ([i915#15689]) +8 other tests skip
   [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
   [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-dg2:          [SKIP][610] ([i915#10307] / [i915#10434] / [i915#6095]) -> [SKIP][611] ([i915#15689])
   [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
   [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][612] ([i915#6095]) -> [SKIP][613] ([i915#14544] / [i915#6095]) +2 other tests skip
   [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][614] ([i915#14098] / [i915#6095]) -> [SKIP][615] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
   [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-dg2:          [SKIP][616] ([i915#15689]) -> [SKIP][617] ([i915#6095]) +4 other tests skip
   [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
   [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2:          [SKIP][618] ([i915#6095]) -> [SKIP][619] ([i915#15689]) +3 other tests skip
   [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2:          [SKIP][620] ([i915#12313]) -> [SKIP][621] ([i915#15689]) +2 other tests skip
   [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2:          [SKIP][622] ([i915#13784]) -> [SKIP][623] ([i915#15689])
   [622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html
   [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2:          [SKIP][624] ([i915#15689]) -> [SKIP][625] +6 other tests skip
   [624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_chamelium_color@ctm-negative.html
   [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          [SKIP][626] -> [SKIP][627] ([i915#15689]) +5 other tests skip
   [626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_chamelium_color@degamma.html
   [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-dg2:          [SKIP][628] ([i915#15689]) -> [SKIP][629] ([i915#11151] / [i915#7828]) +7 other tests skip
   [628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html
   [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-rkl:          [SKIP][630] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][631] ([i915#11151] / [i915#7828])
   [630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
   [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2:          [SKIP][632] ([i915#11151] / [i915#7828]) -> [SKIP][633] ([i915#15689]) +4 other tests skip
   [632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
    - shard-rkl:          [SKIP][634] ([i915#11151] / [i915#7828]) -> [SKIP][635] ([i915#11151] / [i915#14544] / [i915#7828])
   [634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          [SKIP][636] ([i915#15689]) -> [SKIP][637] ([i915#15330] / [i915#3299])
   [636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
   [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg2:          [SKIP][638] ([i915#15330] / [i915#3299]) -> [SKIP][639] ([i915#15689])
   [638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html
   [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          [SKIP][640] ([i915#6944] / [i915#9424]) -> [SKIP][641] ([i915#15689])
   [640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_content_protection@lic-type-1.html
   [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_content_protection@lic-type-1.html
    - shard-rkl:          [SKIP][642] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][643] ([i915#6944] / [i915#9424])
   [642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
   [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][644] ([i915#9433]) -> [SKIP][645] ([i915#6944] / [i915#9424])
   [644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_content_protection@mei-interface.html
   [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-16/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          [SKIP][646] ([i915#15689]) -> [SKIP][647] ([i915#6944] / [i915#7118])
   [646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_content_protection@srm.html
   [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_content_protection@srm.html
    - shard-rkl:          [SKIP][648] ([i915#14544] / [i915#6944] / [i915#7118]) -> [SKIP][649] ([i915#6944] / [i915#7118])
   [648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_content_protection@srm.html
   [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-3/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][650] ([i915#15689]) -> [SKIP][651] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
   [650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_content_protection@type1.html
   [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-rkl:          [SKIP][652] ([i915#14544] / [i915#3555]) -> [SKIP][653] ([i915#3555])
   [652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-dg2:          [SKIP][654] ([i915#3555]) -> [SKIP][655] ([i915#15689]) +4 other tests skip
   [654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-dg1:          [ABORT][656] ([i915#15759]) -> [SKIP][657] ([i915#3555])
   [656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html
   [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          [SKIP][658] ([i915#13049]) -> [SKIP][659] ([i915#15689]) +1 other test skip
   [658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
   [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-dg1:          [SKIP][660] ([i915#3555]) -> [SKIP][661] ([i915#3555] / [i915#4423])
   [660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-32x32.html
   [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2:          [SKIP][662] ([i915#15689]) -> [SKIP][663] ([i915#13049]) +2 other tests skip
   [662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-dg2:          [SKIP][664] ([i915#15689]) -> [SKIP][665] ([i915#13046] / [i915#5354]) +4 other tests skip
   [664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-dg2:          [SKIP][666] ([i915#13046] / [i915#5354]) -> [SKIP][667] ([i915#15689]) +2 other tests skip
   [666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
   [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          [SKIP][668] ([i915#14544] / [i915#4103]) -> [SKIP][669] ([i915#4103])
   [668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2:          [SKIP][670] ([i915#4103] / [i915#4213]) -> [SKIP][671] ([i915#15689])
   [670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          [SKIP][672] ([i915#15689]) -> [SKIP][673] ([i915#4103] / [i915#4213]) +1 other test skip
   [672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2:          [SKIP][674] ([i915#15689]) -> [SKIP][675] ([i915#9833]) +1 other test skip
   [674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          [SKIP][676] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][677] ([i915#3555] / [i915#3804])
   [676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-dg2:          [SKIP][678] ([i915#13748]) -> [SKIP][679] ([i915#15689])
   [678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_dp_link_training@uhbr-mst.html
   [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2:          [SKIP][680] ([i915#15689]) -> [SKIP][681] ([i915#13707])
   [680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          [SKIP][682] ([i915#15689]) -> [SKIP][683] ([i915#8812])
   [682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
   [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2:          [SKIP][684] ([i915#15689]) -> [SKIP][685] ([i915#3555] / [i915#3840])
   [684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html
   [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2:          [SKIP][686] ([i915#3469]) -> [SKIP][687] ([i915#15689])
   [686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_fbcon_fbt@psr.html
   [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2:          [SKIP][688] ([i915#4854]) -> [SKIP][689] ([i915#15689])
   [688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_feature_discovery@chamelium.html
   [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_feature_discovery@chamelium.html
    - shard-rkl:          [SKIP][690] ([i915#14544] / [i915#4854]) -> [SKIP][691] ([i915#4854])
   [690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
   [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          [SKIP][692] ([i915#15689]) -> [SKIP][693] ([i915#1839]) +1 other test skip
   [692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_feature_discovery@display-3x.html
   [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2:          [SKIP][694] ([i915#15689]) -> [SKIP][695] ([i915#9337])
   [694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html
   [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2:          [SKIP][696] ([i915#15689]) -> [SKIP][697] ([i915#658])
   [696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_feature_discovery@psr1.html
   [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2:          [SKIP][698] ([i915#658]) -> [SKIP][699] ([i915#15689])
   [698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_feature_discovery@psr2.html
   [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_feature_discovery@psr2.html

  * igt@kms_fence_pin_leak:
    - shard-dg2:          [SKIP][700] ([i915#15689] / [i915#2575]) -> [SKIP][701] ([i915#4881])
   [700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_fence_pin_leak.html
   [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          [SKIP][702] ([i915#15689]) -> [SKIP][703] ([i915#9934]) +8 other tests skip
   [702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
   [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-rkl:          [SKIP][704] ([i915#14544] / [i915#9934]) -> [SKIP][705] ([i915#9934]) +2 other tests skip
   [704]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
   [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-dg2:          [SKIP][706] ([i915#9934]) -> [SKIP][707] ([i915#15689]) +4 other tests skip
   [706]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
   [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-dg2:          [SKIP][708] ([i915#8381]) -> [SKIP][709] ([i915#15689])
   [708]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html
   [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-dg2:          [SKIP][710] ([i915#15689]) -> [FAIL][711] ([i915#14600])
   [710]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_flip@wf_vblank-ts-check.html
   [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-dg2:          [SKIP][712] ([i915#15643]) -> [SKIP][713] ([i915#15689]) +1 other test skip
   [712]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2:          [SKIP][714] ([i915#15689] / [i915#5190]) -> [SKIP][715] ([i915#15643] / [i915#5190]) +2 other tests skip
   [714]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2:          [SKIP][716] ([i915#15643] / [i915#5190]) -> [SKIP][717] ([i915#15689] / [i915#5190])
   [716]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-dg2:          [SKIP][718] ([i915#15689]) -> [SKIP][719] ([i915#15643]) +3 other tests skip
   [718]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
    - shard-dg2:          [SKIP][720] ([i915#8708]) -> [SKIP][721] ([i915#15689]) +17 other tests skip
   [720]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
   [721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2:          [SKIP][722] ([i915#15102]) -> [SKIP][723] ([i915#15689]) +1 other test skip
   [722]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
   [723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][724] ([i915#15689]) -> [SKIP][725] ([i915#15102]) +2 other tests skip
   [724]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
   [725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-dg1:          [SKIP][726] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][727] ([i915#15102] / [i915#3458])
   [726]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][728] ([i915#15102] / [i915#3458]) -> [SKIP][729] ([i915#15689]) +6 other tests skip
   [728]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][730] ([i915#15102] / [i915#3023]) -> [SKIP][731] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [730]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
   [731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][732] ([i915#14544] / [i915#1825]) -> [SKIP][733] ([i915#1825]) +8 other tests skip
   [732]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
   [733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][734] ([i915#15689]) -> [SKIP][735] ([i915#8708]) +16 other tests skip
   [734]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          [SKIP][736] ([i915#15689]) -> [SKIP][737] ([i915#5354]) +26 other tests skip
   [736]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
   [737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-rkl:          [SKIP][738] ([i915#1825]) -> [SKIP][739] ([i915#14544] / [i915#1825]) +1 other test skip
   [738]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][740] ([i915#15102] / [i915#3458]) -> [SKIP][741] ([i915#10433] / [i915#15102] / [i915#3458])
   [740]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
   [741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-dg1:          [SKIP][742] ([i915#8708]) -> [SKIP][743] ([i915#4423] / [i915#8708]) +1 other test skip
   [742]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
   [743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
    - shard-dg2:          [SKIP][744] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][745] ([i915#15102] / [i915#3458])
   [744]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
   [745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          [SKIP][746] ([i915#10055]) -> [SKIP][747] ([i915#15689])
   [746]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-rkl:          [SKIP][748] ([i915#14544] / [i915#9766]) -> [SKIP][749] ([i915#9766])
   [748]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
   [749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][750] ([i915#15104]) -> [SKIP][751] ([i915#15689])
   [750]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
   [751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          [SKIP][752] ([i915#15689]) -> [SKIP][753] ([i915#15104]) +1 other test skip
   [752]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][754] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][755] ([i915#15102] / [i915#3023]) +8 other tests skip
   [754]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
   [755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-dg2:          [SKIP][756] ([i915#15689]) -> [SKIP][757] ([i915#15102] / [i915#3458]) +14 other tests skip
   [756]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-rte.html
   [757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-dg2:          [SKIP][758] ([i915#5354]) -> [SKIP][759] ([i915#15689]) +22 other tests skip
   [758]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          [SKIP][760] ([i915#15689]) -> [SKIP][761] ([i915#12713])
   [760]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
   [761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html
    - shard-rkl:          [SKIP][762] ([i915#13331] / [i915#14544]) -> [SKIP][763] ([i915#12713])
   [762]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
   [763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          [SKIP][764] ([i915#12713]) -> [SKIP][765] ([i915#1187] / [i915#12713])
   [764]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html
   [765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
    - shard-tglu:         [SKIP][766] ([i915#1187] / [i915#12713]) -> [SKIP][767] ([i915#12713])
   [766]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
   [767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2:          [SKIP][768] ([i915#3555] / [i915#8228]) -> [SKIP][769] ([i915#15689])
   [768]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_hdr@invalid-hdr.html
   [769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_hdr@invalid-hdr.html
    - shard-rkl:          [SKIP][770] ([i915#3555] / [i915#8228]) -> [SKIP][771] ([i915#14544] / [i915#3555] / [i915#8228])
   [770]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
   [771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          [SKIP][772] ([i915#15689]) -> [SKIP][773] ([i915#3555] / [i915#8228])
   [772]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_hdr@static-swap.html
   [773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2:          [SKIP][774] ([i915#13688]) -> [SKIP][775] ([i915#15689])
   [774]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_joiner@basic-max-non-joiner.html
   [775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-dg2:          [SKIP][776] ([i915#15459]) -> [SKIP][777] ([i915#15689])
   [776]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2:          [SKIP][778] ([i915#15689]) -> [SKIP][779] ([i915#15458])
   [778]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2:          [SKIP][780] ([i915#15689]) -> [SKIP][781] ([i915#15638] / [i915#15722])
   [780]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [781]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2:          [SKIP][782] ([i915#15689]) -> [SKIP][783] ([i915#4816])
   [782]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [783]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          [SKIP][784] ([i915#14544] / [i915#1839] / [i915#4816]) -> [SKIP][785] ([i915#1839] / [i915#4816])
   [784]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [785]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          [SKIP][786] ([i915#6301]) -> [SKIP][787] ([i915#15689])
   [786]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_panel_fitting@legacy.html
   [787]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-dg2:          [SKIP][788] ([i915#15689] / [i915#2575]) -> [SKIP][789] +2 other tests skip
   [788]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
   [789]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
    - shard-rkl:          [SKIP][790] ([i915#14544]) -> [SKIP][791] +8 other tests skip
   [790]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
   [791]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-dg2:          [SKIP][792] ([i915#15709]) -> [SKIP][793] ([i915#15689]) +2 other tests skip
   [792]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
   [793]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-dg2:          [SKIP][794] ([i915#15689]) -> [SKIP][795] ([i915#15709]) +3 other tests skip
   [794]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
   [795]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2:          [SKIP][796] ([i915#15689]) -> [SKIP][797] ([i915#8821])
   [796]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html
   [797]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          [SKIP][798] ([i915#15689]) -> [SKIP][799] ([i915#3555] / [i915#8821])
   [798]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html
   [799]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2:          [SKIP][800] ([i915#15689]) -> [SKIP][801] ([i915#13958])
   [800]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-y.html
   [801]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-dg2:          [SKIP][802] ([i915#13046] / [i915#5354] / [i915#9423]) -> [SKIP][803] ([i915#15689] / [i915#9423])
   [802]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [803]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          [SKIP][804] ([i915#6953] / [i915#9423]) -> [SKIP][805] ([i915#15689] / [i915#9423])
   [804]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
   [805]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2:          [SKIP][806] ([i915#15689]) -> [SKIP][807] ([i915#15751])
   [806]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
   [807]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
    - shard-tglu:         [SKIP][808] ([i915#15128]) -> [FAIL][809] ([i915#15752])
   [808]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
   [809]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][810] ([i915#9340]) -> [SKIP][811] ([i915#3828])
   [810]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
   [811]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          [SKIP][812] ([i915#15689]) -> [SKIP][813] ([i915#8430])
   [812]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_pm_lpsp@screens-disabled.html
   [813]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [SKIP][814] ([i915#15689]) -> [SKIP][815] ([i915#15073])
   [814]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html
   [815]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-dg1:          [ABORT][816] ([i915#15759]) -> [SKIP][817] ([i915#15073])
   [816]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [817]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-dg2:          [SKIP][818] -> [SKIP][819] ([i915#15693])
   [818]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@kms_pm_rpm@pc8-residency.html
   [819]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-dg1:          [SKIP][820] ([i915#11520] / [i915#4423]) -> [SKIP][821] ([i915#11520])
   [820]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
   [821]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2:          [SKIP][822] ([i915#15689]) -> [SKIP][823] ([i915#11520]) +6 other tests skip
   [822]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
   [823]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          [SKIP][824] ([i915#11520]) -> [SKIP][825] ([i915#15689]) +2 other tests skip
   [824]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
   [825]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][826] ([i915#11520] / [i915#14544]) -> [SKIP][827] ([i915#11520]) +4 other tests skip
   [826]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
   [827]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-rkl:          [SKIP][828] ([i915#11520]) -> [SKIP][829] ([i915#11520] / [i915#14544])
   [828]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [829]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-dg1:          [SKIP][830] ([i915#11520]) -> [SKIP][831] ([i915#11520] / [i915#4423]) +1 other test skip
   [830]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
   [831]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          [SKIP][832] ([i915#9683]) -> [SKIP][833] ([i915#15689])
   [832]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [833]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr-primary-blt:
    - shard-dg2:          [SKIP][834] ([i915#15689]) -> [SKIP][835] ([i915#1072] / [i915#9732]) +21 other tests skip
   [834]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html
   [835]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-7/igt@kms_psr@fbc-psr-primary-blt.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          [SKIP][836] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][837] ([i915#1072] / [i915#9732]) +5 other tests skip
   [836]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
   [837]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-rkl:          [SKIP][838] ([i915#1072] / [i915#9732]) -> [SKIP][839] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
   [838]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html
   [839]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg2:          [SKIP][840] ([i915#1072] / [i915#9732]) -> [SKIP][841] ([i915#15689]) +15 other tests skip
   [840]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-7/igt@kms_psr@psr-cursor-render.html
   [841]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_psr@psr-cursor-render.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-dg2:          [SKIP][842] ([i915#15689]) -> [ABORT][843] ([i915#15759])
   [842]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [843]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          [SKIP][844] ([i915#14544] / [i915#5289]) -> [SKIP][845] ([i915#5289])
   [844]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [845]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2:          [SKIP][846] ([i915#15689]) -> [SKIP][847] ([i915#12755])
   [846]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html
   [847]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-dg2:          [SKIP][848] ([i915#15689]) -> [SKIP][849] ([i915#3555]) +3 other tests skip
   [848]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc.html
   [849]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-5/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2:          [SKIP][850] ([i915#8623]) -> [SKIP][851] ([i915#15689])
   [850]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
   [851]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
    - shard-rkl:          [SKIP][852] ([i915#8623]) -> [SKIP][853] ([i915#14544] / [i915#8623])
   [852]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
   [853]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flipline:
    - shard-dg2:          [SKIP][854] ([i915#15243] / [i915#3555]) -> [SKIP][855] ([i915#15689]) +1 other test skip
   [854]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-5/igt@kms_vrr@flipline.html
   [855]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          [SKIP][856] ([i915#14544] / [i915#9906]) -> [SKIP][857] ([i915#9906])
   [856]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html
   [857]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@perf@global-sseu-config-invalid:
    - shard-dg2:          [SKIP][858] ([i915#15689]) -> [SKIP][859] ([i915#7387])
   [858]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@perf@global-sseu-config-invalid.html
   [859]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-4/igt@perf@global-sseu-config-invalid.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-dg2:          [SKIP][860] ([i915#15689]) -> [SKIP][861] ([i915#8516])
   [860]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
   [861]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html

  * igt@prime_vgem@basic-fence-flip:
    - shard-dg2:          [SKIP][862] ([i915#3708]) -> [SKIP][863] ([i915#15689] / [i915#2575])
   [862]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html
   [863]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          [SKIP][864] ([i915#3291] / [i915#3708]) -> [SKIP][865] ([i915#15689] / [i915#2575])
   [864]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
   [865]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-11/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-read:
    - shard-dg2:          [SKIP][866] ([i915#15689] / [i915#2575]) -> [SKIP][867] ([i915#3291] / [i915#3708])
   [866]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-dg2-11/igt@prime_vgem@basic-read.html
   [867]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-dg2-6/igt@prime_vgem@basic-read.html
    - shard-rkl:          [SKIP][868] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][869] ([i915#3291] / [i915#3708])
   [868]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18052/shard-rkl-6/igt@prime_vgem@basic-read.html
   [869]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/shard-rkl-1/igt@prime_vgem@basic-read.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
  [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
  [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
  [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
  [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15607]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15607
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15689]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15689
  [i915#15693]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15693
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#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#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
  [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [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#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [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#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8773 -> IGTPW_14624
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18052: 50b03c02e68b265fb85f3844a4c24e57c5ad3b4f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14624: 14624
  IGT_8773: 8773
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14624/index.html

[-- Attachment #2: Type: text/html, Size: 281784 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing
  2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
                   ` (3 preceding siblings ...)
  2026-02-26 21:08 ` ✗ i915.CI.Full: " Patchwork
@ 2026-03-04  6:06 ` Karthik B S
  2026-03-04 12:02   ` Sebinraj, S
  4 siblings, 1 reply; 7+ messages in thread
From: Karthik B S @ 2026-03-04  6:06 UTC (permalink / raw)
  To: S Sebinraj, igt-dev
  Cc: carlos.santa, krzysztof.karas, kamil.konieczny,
	zbigniew.kempczynski

Hi Sebinraj,

On 2/26/2026 3:01 PM, S Sebinraj wrote:
> Add a new test to validate explicit fencing.
> This test handles multiple planes in a single atomic commit.
> This test addresses a critical scenario where drivers must correctly
> synchronize planes with mixed fence states.
>
> Test Scenario:
> - Creates three planes: one primary, two overlay
> - Attaches fences with different states:
>     - Primary plane:   signaled fence (simulating completed GPU work)
>     - Overlay-1 plane: signaled fence (simulating completed GPU work)
>     - Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
> - Submits all planes in a single atomic commit with IN_FENCE_FD set
> - Validates that display waits for ALL fences before updating ANY plane
>
> Bug Detection:
> This test catches driver bugs where:
>   - Planes with signaled fences update prematurely before unsignaled
>     fences complete, breaking atomic commit semantics
>   - Fence states are mismanaged across multiple planes causing visual
>     glitches or corruption
>   - The driver fails to wait on all IN_FENCE_FDs atomically
>
> The test uses sw_sync timelines to create controllable fence states,
> allowing precise validation of fence synchronization behavior. An
> OUT_FENCE_PTR is requested to monitor when the display update actually
> completes, enabling detection of premature updates.
>
> Implementation Details:
> - Uses sw_sync for creating fences with controlled signaling
> - Monitors OUT_FENCE to detect premature display updates
> - Validates atomic commit integrity across multiple planes
>
> Background:
> - A bug regressed for Xe driver on PTL (Android) display handling
>    of explicit fences when provided two or more buffers at once,
>    with 1+ already-signaled fences and 1+ not-yet-signaled fences.
>    https://patchwork.freedesktop.org/patch/662982/
> - Adding this test so that IGT contains sufficient testing for the
>    use of explicit fencing in the KMS Atomic Modesetting APIs.
>
> Changes:
> -v5
>    - Make overlay plane validation scalable with
>      overlay count.
>    - Modify commit message.
> -v4
>    - Fix build errors as per latest API name
> -v3
>    - Add crc check on display update
>    - Adding proper License entry
>    - Reduce test description
> -v2
>    - Add crc check instead of visual inspection
>    - Reduce debug logging which are not needed
>    - Add a function for initial modset
>    - Make test not specific to Intel drivers alone
>    - Sort the included libs in alphabetical order
>    - Modify set_output func as we want only one
>      output per pipe
>
> Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
> ---
>   tests/kms_explicit_fence.c | 348 +++++++++++++++++++++++++++++++++++++
>   tests/meson.build          |   1 +
>   2 files changed, 349 insertions(+)
>   create mode 100644 tests/kms_explicit_fence.c
>
> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
> new file mode 100644
> index 000000000..3d96e0de5
> --- /dev/null
> +++ b/tests/kms_explicit_fence.c
> @@ -0,0 +1,348 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms explicit fence multiplane
> + * Category: Display
> + * Description: Test explicit fencing with multiple planes and mixed fence states
> + * Driver requirement: i915, xe
> + * Mega feature: General Display Features
> + *
> + * This test validates correct handling of explicit fences when multiple planes
> + * are updated in a single atomic commit with different fence states. This is
> + * critical for catching fence synchronization bugs where the driver might:
> + * 1. Prematurely display buffers with signaled fences before unsignaled fences complete
> + * 2. Mismanage fence states across multiple planes causing visual glitches
> + * 3. Fail to wait on all fences atomically before updating the display
> + */
> +
> +#include <errno.h>
> +#include <poll.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +#include <sys/eventfd.h>
> +
> +#include "igt.h"
> +#include "igt_aux.h"
> +#include "sw_sync.h"
> +
> +/**
> + * SUBTEST: multiplane-atomic-fence-wait
> + * Description: Test 3 planes (1 primary, 2 overlay) with mixed fence states:
> + *              2 planes with signaled fences and 1 plane with unsignaled fence.
> + *              Validates that display waits for all fences before updating any plane.
> + */
> +
> +/* Test configuration macros */
> +#define NUM_PLANES 3
> +#define PLANE_PRIMARY_IDX 0
> +#define PLANE_OVERLAY1_IDX 1
> +#define PLANE_OVERLAY2_IDX 2
> +#define OVERLAY_COUNT (NUM_PLANES - 1)
> +
> +#define FENCE_TIMEOUT_MS 2000
> +
> +#define OVERLAY_SIZE_DIVISOR 3
> +#define OVERLAY1_POS_X 100
> +#define OVERLAY1_POS_Y 100
> +#define OVERLAY2_OFFSET 100
> +
> +typedef struct {
> +	int drm_fd;
> +	igt_display_t display;
> +	igt_output_t *output;
> +	enum pipe pipe;
> +	igt_plane_t *primary;
> +	igt_plane_t *overlay1;
> +	igt_plane_t *overlay2;
> +	struct igt_fb primary_fb;
> +	struct igt_fb overlay1_fb;
> +	struct igt_fb overlay2_fb;
> +	drmModeModeInfo *mode;
> +	int width, height;
> +	igt_pipe_crc_t *pipe_crc;
> +} data_t;
> +
> +static void setup_output(data_t *data)
> +{
> +	igt_display_t *display = &data->display;
> +	igt_crtc_t *crtc;
> +	igt_output_t *output;
> +
> +	for_each_crtc_with_single_output(display, crtc, output) {
> +		int overlay_count = 0;
> +
> +		data->primary = igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY);
> +
> +		/* Count available overlays - we need at least OVERLAY_COUNT */
> +		for (int i = 0; i < OVERLAY_COUNT; i++) {
> +			if (igt_crtc_get_plane_type_index(crtc, DRM_PLANE_TYPE_OVERLAY, i))
> +				overlay_count++;
> +		}
> +
> +		if (overlay_count >= OVERLAY_COUNT) {
> +			data->overlay1 = igt_crtc_get_plane_type_index(crtc,
> +									DRM_PLANE_TYPE_OVERLAY,
> +									0);
> +			data->overlay2 = igt_crtc_get_plane_type_index(crtc,
> +									DRM_PLANE_TYPE_OVERLAY,
> +									1);
Please fix the alignment here.
> +			data->output = output;
> +			data->pipe = crtc->pipe;
> +			data->mode = igt_output_get_mode(output);
> +			data->width = data->mode->hdisplay;
> +			data->height = data->mode->vdisplay;
> +			return;
> +		}
> +	}
> +
> +	igt_skip("Need at least %d overlay planes for this test\n", OVERLAY_COUNT);
> +}
> +
> +static void cleanup_crtc(data_t *data)
> +{
> +	igt_display_reset(&data->display);
> +
> +	igt_remove_fb(data->drm_fd, &data->primary_fb);
> +	igt_remove_fb(data->drm_fd, &data->overlay1_fb);
> +	igt_remove_fb(data->drm_fd, &data->overlay2_fb);
> +}
> +
> +static void create_fbs(data_t *data)
> +{
> +	int overlay_width = data->width / OVERLAY_SIZE_DIVISOR;
> +	int overlay_height = data->height / OVERLAY_SIZE_DIVISOR;
> +
> +	/* Primary plane - Blue background */
> +	igt_create_color_fb(data->drm_fd, data->width, data->height,
> +			    DRM_FORMAT_XRGB8888,
> +			    DRM_FORMAT_MOD_LINEAR,
> +			    0.0, 0.0, 1.0, /* Blue */
> +			    &data->primary_fb);
> +
> +	/* Overlay 1 - Red square */
> +	igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> +			    DRM_FORMAT_XRGB8888,
> +			    DRM_FORMAT_MOD_LINEAR,
> +			    1.0, 0.0, 0.0, /* Red */
> +			    &data->overlay1_fb);
> +
> +	/* Overlay 2 - Green square */
> +	igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> +			    DRM_FORMAT_XRGB8888,
> +			    DRM_FORMAT_MOD_LINEAR,
> +			    0.0, 1.0, 0.0, /* Green */
> +			    &data->overlay2_fb);
> +}
> +
> +static void setup_initial_modeset(data_t *data)
> +{
> +	/* Initial modeset to establish baseline (no fences) */
> +	igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe));
> +	igt_plane_set_fb(data->primary, &data->primary_fb);
> +	igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
> +	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> +	igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
> +	igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> +				data->overlay2_fb.width, OVERLAY1_POS_Y);
> +	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +/**
> + * multiplane_atomic_fence_wait - Test atomic commit with mixed fence states
> + *
> + * This test reproduces the critical scenario where multiple planes are updated
> + * in a single atomic commit with different fence states. The key validation is
> + * that the display does NOT update any plane until ALL fences are signaled.
> + *
> + * Test setup:
> + * - Primary plane: buffer with a signaled fence (already retired)
> + * - Overlay 1 plane: buffer with a signaled fence (already retired)
> + * - Overlay 2 plane: buffer with an UNSIGNALED fence (long-running operation)
> + *
> + * Expected behavior:
> + * - Atomic commit succeeds immediately (non-blocking)
> + * - Display waits internally for ALL fences before updating
> + * - No plane shows its new buffer until the unsignaled fence completes
> + * - After signaling the last fence, all planes update atomically
> + *
> + * Bug detection:
> + * If the driver has a bug, it will either:
> + * 1. Show the primary and overlay1 buffers prematurely (before overlay2's fence signals)
> + * 2. Cause visual glitches from fence mismanagement
> + * 3. Fail the atomic commit
> + */
> +static void multiplane_atomic_fence_wait(data_t *data)
> +{
> +	int timelines[NUM_PLANES];
> +	int fences[NUM_PLANES];
> +	int ret;
> +	int out_fence;
> +	igt_plane_t *planes[NUM_PLANES];
> +	bool should_signal[NUM_PLANES] = { true, true, false };
> +	igt_crc_t crc_before, crc_after, crc_final;
> +
> +	igt_require_sw_sync();
> +
> +	setup_initial_modeset(data);
> +
> +	/* Setup arrays for loop-based processing */
> +	planes[PLANE_PRIMARY_IDX] = data->primary;
> +	planes[PLANE_OVERLAY1_IDX] = data->overlay1;
> +	planes[PLANE_OVERLAY2_IDX] = data->overlay2;
> +
> +	/* Start CRC capture to verify no premature display updates */
> +	igt_pipe_crc_start(data->pipe_crc);
> +	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_before);
> +
> +	/* Create timelines and fences for all planes */
> +	for (int i = 0; i < NUM_PLANES; i++) {
> +		/* Create timeline */
> +		timelines[i] = sw_sync_timeline_create();
> +		igt_assert(timelines[i] >= 0);
> +
> +		/* Create fence at sequence 1 */
> +		fences[i] = sw_sync_timeline_create_fence(timelines[i], 1);
> +		igt_assert(fences[i] >= 0);
> +
> +		/* Signal fence (first 2 planes) */
> +		if (should_signal[i]) {
> +			sw_sync_timeline_inc(timelines[i], 1);
> +			igt_assert_eq(sync_fence_status(fences[i]), 1);
> +		} else {
> +			/* Do not signal this fence yet, 3rd plane */
> +			igt_assert_eq(sync_fence_status(fences[i]), 0);
> +		}
> +
> +		/* Attach IN_FENCE_FD to plane */
> +		igt_plane_set_fence_fd(planes[i], fences[i]);
> +	}
> +
> +	/* Swap overlay colors to detect scanout changes via CRC */
> +	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
> +	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> +	igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
> +	igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> +				data->overlay1_fb.width, OVERLAY1_POS_Y);
> +
> +	/* Request OUT_FENCE to track when display update completes */
> +	igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe));
> +
> +	/*
> +	 * The atomic commit should succeed immediately (NONBLOCK mode),
> +	 * but the display should NOT update any plane until ALL fences
> +	 * (including the unsignaled overlay2 fence) are signaled.
> +	 *
> +	 * A buggy driver might:
> +	 * - Show primary and overlay1 immediately
> +	 * - Cause visual corruption
> +	 * - Fail the commit
> +	 */
> +	ret = igt_display_try_commit_atomic(&data->display,
> +					    DRM_MODE_ATOMIC_NONBLOCK,
> +					    NULL);
> +	igt_assert_eq(ret, 0);
> +
> +	/* Get the out fence to monitor completion */
> +	out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd;
> +	igt_assert(out_fence >= 0);
> +
> +	/* Verify overlay2 fence (last one) is still unsignaled */
> +	igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 0);
> +
> +	/* Verify out fence is also unsignaled (display hasn't updated yet) */
> +	ret = sync_fence_status(out_fence);
> +	igt_assert_f(ret != 1,
> +		     "OUT_FENCE already signaled while overlay2 fence is unsignaled - "
> +		     "driver did not wait for all IN_FENCEs!");
> +
> +	/*
> +	 * Wait briefly and verify display hasn't updated via CRC check.
> +	 * In a buggy implementation, the display might update prematurely.
> +	 */
> +	usleep(100000); /* 100ms */
> +
> +	/* Check if out fence signaled prematurely */
> +	ret = sync_fence_status(out_fence);
> +	igt_assert_f(ret != 1,
> +		     "OUT_FENCE signaled before overlay2 fence - "
> +		     "driver updated display without waiting for all fences");
> +
> +	/* CRC verify - check if display has not updated prematurely */
> +	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_after);
> +	igt_assert_crc_equal(&crc_before, &crc_after);
> +
> +	/* Now signal the blocking fence (overlay2) */
> +	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
> +
> +	/* Wait for overlay2 fence to be signaled */
> +	ret = sync_fence_wait(fences[PLANE_OVERLAY2_IDX], FENCE_TIMEOUT_MS);
> +	igt_assert_eq(ret, 0);
> +	igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 1);
> +
> +	/* Now wait for the display update to complete (out fence signals) */
> +	ret = sync_fence_wait(out_fence, FENCE_TIMEOUT_MS);
> +	igt_assert_eq(ret, 0);
> +	igt_assert_eq(sync_fence_status(out_fence), 1);
> +
> +	/* Verify display has now updated (CRC should differ from baseline) */
> +	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
> +	igt_assert_f(!igt_check_crc_equal(&crc_before, &crc_final),
> +		     "Display did not update after all fences signaled");

This does confirm that the CRC changed after fence is signaled, but IMHO 
it would be better to do a positive check with the reference CRC of the 
expected frame after signaling, to ensure that we don't have any 
corruptions?

Thanks and Regards,
Karthik.B.S
> +
> +	igt_pipe_crc_stop(data->pipe_crc);
> +
> +	/* Cleanup */
> +	for (int i = 0; i < NUM_PLANES; i++) {
> +		close(fences[i]);
> +		close(timelines[i]);
> +		igt_plane_set_fence_fd(planes[i], -1);
> +	}
> +	close(out_fence);
> +	igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1;
> +}
> +
> +static void reset_display_state(data_t *data)
> +{
> +	igt_plane_set_fb(data->primary, NULL);
> +	igt_plane_set_fb(data->overlay1, NULL);
> +	igt_plane_set_fb(data->overlay2, NULL);
> +	igt_output_set_crtc(data->output, NULL);
> +	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +int igt_main()
> +{
> +	data_t data = {};
> +
> +	igt_fixture() {
> +		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> +		kmstest_set_vt_graphics_mode();
> +		igt_display_require(&data.display, data.drm_fd);
> +		igt_display_require_output(&data.display);
> +
> +		setup_output(&data);
> +		create_fbs(&data);
> +
> +		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe,
> +						 IGT_PIPE_CRC_SOURCE_AUTO);
> +	}
> +
> +	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
> +		     "where 2 planes have signaled fences and 1 plane has an "
> +		     "unsignaled fence. Validates that display does not update "
> +		     "any plane until all fences are signaled");
> +	igt_subtest("multiplane-atomic-fence-wait")
> +		multiplane_atomic_fence_wait(&data);
> +
> +	igt_fixture() {
> +		reset_display_state(&data);
> +		igt_pipe_crc_free(data.pipe_crc);
> +		cleanup_crtc(&data);
> +		igt_display_fini(&data.display);
> +		drm_close_driver(data.drm_fd);
> +	}
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 7f356de9b..eb7c8b13b 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -36,6 +36,7 @@ test_progs = [
>   	'kms_dither',
>   	'kms_display_modes',
>   	'kms_dp_aux_dev',
> +	'kms_explicit_fence',
>   	'kms_feature_discovery',
>   	'kms_flip',
>   	'kms_flip_event_leak',

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing
  2026-03-04  6:06 ` [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing Karthik B S
@ 2026-03-04 12:02   ` Sebinraj, S
  0 siblings, 0 replies; 7+ messages in thread
From: Sebinraj, S @ 2026-03-04 12:02 UTC (permalink / raw)
  To: B S, Karthik, igt-dev@lists.freedesktop.org
  Cc: Santa, Carlos, Karas, Krzysztof, Konieczny, Kamil,
	Kempczynski, Zbigniew

[-- Attachment #1: Type: text/plain, Size: 18963 bytes --]




________________________________
From: B S, Karthik <karthik.b.s@intel.com>
Sent: Wednesday, March 4, 2026 11:36 AM
To: Sebinraj, S <s.sebinraj@intel.com>; igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Cc: Santa, Carlos <carlos.santa@intel.com>; Karas, Krzysztof <krzysztof.karas@intel.com>; Konieczny, Kamil <kamil.konieczny@intel.com>; Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
Subject: Re: [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing

Hi Sebinraj,

On 2/26/2026 3:01 PM, S Sebinraj wrote:
> Add a new test to validate explicit fencing.
> This test handles multiple planes in a single atomic commit.
> This test addresses a critical scenario where drivers must correctly
> synchronize planes with mixed fence states.
>
> Test Scenario:
> - Creates three planes: one primary, two overlay
> - Attaches fences with different states:
>     - Primary plane:   signaled fence (simulating completed GPU work)
>     - Overlay-1 plane: signaled fence (simulating completed GPU work)
>     - Overlay-2 plane: unsignaled fence (simulating long-running GPU job)
> - Submits all planes in a single atomic commit with IN_FENCE_FD set
> - Validates that display waits for ALL fences before updating ANY plane
>
> Bug Detection:
> This test catches driver bugs where:
>   - Planes with signaled fences update prematurely before unsignaled
>     fences complete, breaking atomic commit semantics
>   - Fence states are mismanaged across multiple planes causing visual
>     glitches or corruption
>   - The driver fails to wait on all IN_FENCE_FDs atomically
>
> The test uses sw_sync timelines to create controllable fence states,
> allowing precise validation of fence synchronization behavior. An
> OUT_FENCE_PTR is requested to monitor when the display update actually
> completes, enabling detection of premature updates.
>
> Implementation Details:
> - Uses sw_sync for creating fences with controlled signaling
> - Monitors OUT_FENCE to detect premature display updates
> - Validates atomic commit integrity across multiple planes
>
> Background:
> - A bug regressed for Xe driver on PTL (Android) display handling
>    of explicit fences when provided two or more buffers at once,
>    with 1+ already-signaled fences and 1+ not-yet-signaled fences.
>    https://patchwork.freedesktop.org/patch/662982/
> - Adding this test so that IGT contains sufficient testing for the
>    use of explicit fencing in the KMS Atomic Modesetting APIs.
>
> Changes:
> -v5
>    - Make overlay plane validation scalable with
>      overlay count.
>    - Modify commit message.
> -v4
>    - Fix build errors as per latest API name
> -v3
>    - Add crc check on display update
>    - Adding proper License entry
>    - Reduce test description
> -v2
>    - Add crc check instead of visual inspection
>    - Reduce debug logging which are not needed
>    - Add a function for initial modset
>    - Make test not specific to Intel drivers alone
>    - Sort the included libs in alphabetical order
>    - Modify set_output func as we want only one
>      output per pipe
>
> Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
> ---
>   tests/kms_explicit_fence.c | 348 +++++++++++++++++++++++++++++++++++++
>   tests/meson.build          |   1 +
>   2 files changed, 349 insertions(+)
>   create mode 100644 tests/kms_explicit_fence.c
>
> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
> new file mode 100644
> index 000000000..3d96e0de5
> --- /dev/null
> +++ b/tests/kms_explicit_fence.c
> @@ -0,0 +1,348 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms explicit fence multiplane
> + * Category: Display
> + * Description: Test explicit fencing with multiple planes and mixed fence states
> + * Driver requirement: i915, xe
> + * Mega feature: General Display Features
> + *
> + * This test validates correct handling of explicit fences when multiple planes
> + * are updated in a single atomic commit with different fence states. This is
> + * critical for catching fence synchronization bugs where the driver might:
> + * 1. Prematurely display buffers with signaled fences before unsignaled fences complete
> + * 2. Mismanage fence states across multiple planes causing visual glitches
> + * 3. Fail to wait on all fences atomically before updating the display
> + */
> +
> +#include <errno.h>
> +#include <poll.h>
> +#include <stdbool.h>
> +#include <stdio.h>
> +#include <string.h>
> +#include <sys/eventfd.h>
> +
> +#include "igt.h"
> +#include "igt_aux.h"
> +#include "sw_sync.h"
> +
> +/**
> + * SUBTEST: multiplane-atomic-fence-wait
> + * Description: Test 3 planes (1 primary, 2 overlay) with mixed fence states:
> + *              2 planes with signaled fences and 1 plane with unsignaled fence.
> + *              Validates that display waits for all fences before updating any plane.
> + */
> +
> +/* Test configuration macros */
> +#define NUM_PLANES 3
> +#define PLANE_PRIMARY_IDX 0
> +#define PLANE_OVERLAY1_IDX 1
> +#define PLANE_OVERLAY2_IDX 2
> +#define OVERLAY_COUNT (NUM_PLANES - 1)
> +
> +#define FENCE_TIMEOUT_MS 2000
> +
> +#define OVERLAY_SIZE_DIVISOR 3
> +#define OVERLAY1_POS_X 100
> +#define OVERLAY1_POS_Y 100
> +#define OVERLAY2_OFFSET 100
> +
> +typedef struct {
> +     int drm_fd;
> +     igt_display_t display;
> +     igt_output_t *output;
> +     enum pipe pipe;
> +     igt_plane_t *primary;
> +     igt_plane_t *overlay1;
> +     igt_plane_t *overlay2;
> +     struct igt_fb primary_fb;
> +     struct igt_fb overlay1_fb;
> +     struct igt_fb overlay2_fb;
> +     drmModeModeInfo *mode;
> +     int width, height;
> +     igt_pipe_crc_t *pipe_crc;
> +} data_t;
> +
> +static void setup_output(data_t *data)
> +{
> +     igt_display_t *display = &data->display;
> +     igt_crtc_t *crtc;
> +     igt_output_t *output;
> +
> +     for_each_crtc_with_single_output(display, crtc, output) {
> +             int overlay_count = 0;
> +
> +             data->primary = igt_crtc_get_plane_type(crtc, DRM_PLANE_TYPE_PRIMARY);
> +
> +             /* Count available overlays - we need at least OVERLAY_COUNT */
> +             for (int i = 0; i < OVERLAY_COUNT; i++) {
> +                     if (igt_crtc_get_plane_type_index(crtc, DRM_PLANE_TYPE_OVERLAY, i))
> +                             overlay_count++;
> +             }
> +
> +             if (overlay_count >= OVERLAY_COUNT) {
> +                     data->overlay1 = igt_crtc_get_plane_type_index(crtc,
> +                                                                     DRM_PLANE_TYPE_OVERLAY,
> +                                                                     0);
> +                     data->overlay2 = igt_crtc_get_plane_type_index(crtc,
> +                                                                     DRM_PLANE_TYPE_OVERLAY,
> +                                                                     1);
Please fix the alignment here.
> +                     data->output = output;
> +                     data->pipe = crtc->pipe;
> +                     data->mode = igt_output_get_mode(output);
> +                     data->width = data->mode->hdisplay;
> +                     data->height = data->mode->vdisplay;
> +                     return;
> +             }
> +     }
> +
> +     igt_skip("Need at least %d overlay planes for this test\n", OVERLAY_COUNT);
> +}
> +
> +static void cleanup_crtc(data_t *data)
> +{
> +     igt_display_reset(&data->display);
> +
> +     igt_remove_fb(data->drm_fd, &data->primary_fb);
> +     igt_remove_fb(data->drm_fd, &data->overlay1_fb);
> +     igt_remove_fb(data->drm_fd, &data->overlay2_fb);
> +}
> +
> +static void create_fbs(data_t *data)
> +{
> +     int overlay_width = data->width / OVERLAY_SIZE_DIVISOR;
> +     int overlay_height = data->height / OVERLAY_SIZE_DIVISOR;
> +
> +     /* Primary plane - Blue background */
> +     igt_create_color_fb(data->drm_fd, data->width, data->height,
> +                         DRM_FORMAT_XRGB8888,
> +                         DRM_FORMAT_MOD_LINEAR,
> +                         0.0, 0.0, 1.0, /* Blue */
> +                         &data->primary_fb);
> +
> +     /* Overlay 1 - Red square */
> +     igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> +                         DRM_FORMAT_XRGB8888,
> +                         DRM_FORMAT_MOD_LINEAR,
> +                         1.0, 0.0, 0.0, /* Red */
> +                         &data->overlay1_fb);
> +
> +     /* Overlay 2 - Green square */
> +     igt_create_color_fb(data->drm_fd, overlay_width, overlay_height,
> +                         DRM_FORMAT_XRGB8888,
> +                         DRM_FORMAT_MOD_LINEAR,
> +                         0.0, 1.0, 0.0, /* Green */
> +                         &data->overlay2_fb);
> +}
> +
> +static void setup_initial_modeset(data_t *data)
> +{
> +     /* Initial modeset to establish baseline (no fences) */
> +     igt_output_set_crtc(data->output, igt_crtc_for_pipe(&data->display, data->pipe));
> +     igt_plane_set_fb(data->primary, &data->primary_fb);
> +     igt_plane_set_fb(data->overlay1, &data->overlay1_fb);
> +     igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> +     igt_plane_set_fb(data->overlay2, &data->overlay2_fb);
> +     igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> +                             data->overlay2_fb.width, OVERLAY1_POS_Y);
> +     igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +/**
> + * multiplane_atomic_fence_wait - Test atomic commit with mixed fence states
> + *
> + * This test reproduces the critical scenario where multiple planes are updated
> + * in a single atomic commit with different fence states. The key validation is
> + * that the display does NOT update any plane until ALL fences are signaled.
> + *
> + * Test setup:
> + * - Primary plane: buffer with a signaled fence (already retired)
> + * - Overlay 1 plane: buffer with a signaled fence (already retired)
> + * - Overlay 2 plane: buffer with an UNSIGNALED fence (long-running operation)
> + *
> + * Expected behavior:
> + * - Atomic commit succeeds immediately (non-blocking)
> + * - Display waits internally for ALL fences before updating
> + * - No plane shows its new buffer until the unsignaled fence completes
> + * - After signaling the last fence, all planes update atomically
> + *
> + * Bug detection:
> + * If the driver has a bug, it will either:
> + * 1. Show the primary and overlay1 buffers prematurely (before overlay2's fence signals)
> + * 2. Cause visual glitches from fence mismanagement
> + * 3. Fail the atomic commit
> + */
> +static void multiplane_atomic_fence_wait(data_t *data)
> +{
> +     int timelines[NUM_PLANES];
> +     int fences[NUM_PLANES];
> +     int ret;
> +     int out_fence;
> +     igt_plane_t *planes[NUM_PLANES];
> +     bool should_signal[NUM_PLANES] = { true, true, false };
> +     igt_crc_t crc_before, crc_after, crc_final;
> +
> +     igt_require_sw_sync();
> +
> +     setup_initial_modeset(data);
> +
> +     /* Setup arrays for loop-based processing */
> +     planes[PLANE_PRIMARY_IDX] = data->primary;
> +     planes[PLANE_OVERLAY1_IDX] = data->overlay1;
> +     planes[PLANE_OVERLAY2_IDX] = data->overlay2;
> +
> +     /* Start CRC capture to verify no premature display updates */
> +     igt_pipe_crc_start(data->pipe_crc);
> +     igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_before);
> +
> +     /* Create timelines and fences for all planes */
> +     for (int i = 0; i < NUM_PLANES; i++) {
> +             /* Create timeline */
> +             timelines[i] = sw_sync_timeline_create();
> +             igt_assert(timelines[i] >= 0);
> +
> +             /* Create fence at sequence 1 */
> +             fences[i] = sw_sync_timeline_create_fence(timelines[i], 1);
> +             igt_assert(fences[i] >= 0);
> +
> +             /* Signal fence (first 2 planes) */
> +             if (should_signal[i]) {
> +                     sw_sync_timeline_inc(timelines[i], 1);
> +                     igt_assert_eq(sync_fence_status(fences[i]), 1);
> +             } else {
> +                     /* Do not signal this fence yet, 3rd plane */
> +                     igt_assert_eq(sync_fence_status(fences[i]), 0);
> +             }
> +
> +             /* Attach IN_FENCE_FD to plane */
> +             igt_plane_set_fence_fd(planes[i], fences[i]);
> +     }
> +
> +     /* Swap overlay colors to detect scanout changes via CRC */
> +     igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
> +     igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> +     igt_plane_set_fb(data->overlay2, &data->overlay1_fb);
> +     igt_plane_set_position(data->overlay2, data->width - OVERLAY2_OFFSET -
> +                             data->overlay1_fb.width, OVERLAY1_POS_Y);
> +
> +     /* Request OUT_FENCE to track when display update completes */
> +     igt_crtc_request_out_fence(igt_crtc_for_pipe(&data->display, data->pipe));
> +
> +     /*
> +      * The atomic commit should succeed immediately (NONBLOCK mode),
> +      * but the display should NOT update any plane until ALL fences
> +      * (including the unsignaled overlay2 fence) are signaled.
> +      *
> +      * A buggy driver might:
> +      * - Show primary and overlay1 immediately
> +      * - Cause visual corruption
> +      * - Fail the commit
> +      */
> +     ret = igt_display_try_commit_atomic(&data->display,
> +                                         DRM_MODE_ATOMIC_NONBLOCK,
> +                                         NULL);
> +     igt_assert_eq(ret, 0);
> +
> +     /* Get the out fence to monitor completion */
> +     out_fence = igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd;
> +     igt_assert(out_fence >= 0);
> +
> +     /* Verify overlay2 fence (last one) is still unsignaled */
> +     igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 0);
> +
> +     /* Verify out fence is also unsignaled (display hasn't updated yet) */
> +     ret = sync_fence_status(out_fence);
> +     igt_assert_f(ret != 1,
> +                  "OUT_FENCE already signaled while overlay2 fence is unsignaled - "
> +                  "driver did not wait for all IN_FENCEs!");
> +
> +     /*
> +      * Wait briefly and verify display hasn't updated via CRC check.
> +      * In a buggy implementation, the display might update prematurely.
> +      */
> +     usleep(100000); /* 100ms */
> +
> +     /* Check if out fence signaled prematurely */
> +     ret = sync_fence_status(out_fence);
> +     igt_assert_f(ret != 1,
> +                  "OUT_FENCE signaled before overlay2 fence - "
> +                  "driver updated display without waiting for all fences");
> +
> +     /* CRC verify - check if display has not updated prematurely */
> +     igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_after);
> +     igt_assert_crc_equal(&crc_before, &crc_after);
> +
> +     /* Now signal the blocking fence (overlay2) */
> +     sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
> +
> +     /* Wait for overlay2 fence to be signaled */
> +     ret = sync_fence_wait(fences[PLANE_OVERLAY2_IDX], FENCE_TIMEOUT_MS);
> +     igt_assert_eq(ret, 0);
> +     igt_assert_eq(sync_fence_status(fences[PLANE_OVERLAY2_IDX]), 1);
> +
> +     /* Now wait for the display update to complete (out fence signals) */
> +     ret = sync_fence_wait(out_fence, FENCE_TIMEOUT_MS);
> +     igt_assert_eq(ret, 0);
> +     igt_assert_eq(sync_fence_status(out_fence), 1);
> +
> +     /* Verify display has now updated (CRC should differ from baseline) */
> +     igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
> +     igt_assert_f(!igt_check_crc_equal(&crc_before, &crc_final),
> +                  "Display did not update after all fences signaled");

>This does confirm that the CRC changed after fence is signaled, but IMHO
it would be better to do a positive check with the reference CRC of the
expected frame after signaling, to ensure that we don't have any
corruptions?

>Thanks and Regards,
>Karthik.B.S

Okay got it, I'll add the change accordingly.
Thanks for pointing out.

With Regards,
Sebin

> +
> +     igt_pipe_crc_stop(data->pipe_crc);
> +
> +     /* Cleanup */
> +     for (int i = 0; i < NUM_PLANES; i++) {
> +             close(fences[i]);
> +             close(timelines[i]);
> +             igt_plane_set_fence_fd(planes[i], -1);
> +     }
> +     close(out_fence);
> +     igt_crtc_for_pipe(&data->display, data->pipe)->out_fence_fd = -1;
> +}
> +
> +static void reset_display_state(data_t *data)
> +{
> +     igt_plane_set_fb(data->primary, NULL);
> +     igt_plane_set_fb(data->overlay1, NULL);
> +     igt_plane_set_fb(data->overlay2, NULL);
> +     igt_output_set_crtc(data->output, NULL);
> +     igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +int igt_main()
> +{
> +     data_t data = {};
> +
> +     igt_fixture() {
> +             data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> +             kmstest_set_vt_graphics_mode();
> +             igt_display_require(&data.display, data.drm_fd);
> +             igt_display_require_output(&data.display);
> +
> +             setup_output(&data);
> +             create_fbs(&data);
> +
> +             data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.pipe,
> +                                              IGT_PIPE_CRC_SOURCE_AUTO);
> +     }
> +
> +     igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
> +                  "where 2 planes have signaled fences and 1 plane has an "
> +                  "unsignaled fence. Validates that display does not update "
> +                  "any plane until all fences are signaled");
> +     igt_subtest("multiplane-atomic-fence-wait")
> +             multiplane_atomic_fence_wait(&data);
> +
> +     igt_fixture() {
> +             reset_display_state(&data);
> +             igt_pipe_crc_free(data.pipe_crc);
> +             cleanup_crtc(&data);
> +             igt_display_fini(&data.display);
> +             drm_close_driver(data.drm_fd);
> +     }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 7f356de9b..eb7c8b13b 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -36,6 +36,7 @@ test_progs = [
>        'kms_dither',
>        'kms_display_modes',
>        'kms_dp_aux_dev',
> +     'kms_explicit_fence',
>        'kms_feature_discovery',
>        'kms_flip',
>        'kms_flip_event_leak',

[-- Attachment #2: Type: text/html, Size: 36176 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-03-04 12:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26  9:31 [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing S Sebinraj
2026-02-26 16:40 ` ✓ Xe.CI.BAT: success for tests/kms_explict_fence: Add Test for Explicit Fencing (rev6) Patchwork
2026-02-26 17:40 ` ✓ i915.CI.BAT: " Patchwork
2026-02-26 17:57 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-26 21:08 ` ✗ i915.CI.Full: " Patchwork
2026-03-04  6:06 ` [PATCH i-g-t v5] tests/kms_explict_fence: Add Test for Explicit Fencing Karthik B S
2026-03-04 12:02   ` Sebinraj, S

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox