public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
@ 2026-04-11 17:59 Naladala Ramanaidu
  2026-04-11 19:08 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (10 more replies)
  0 siblings, 11 replies; 19+ messages in thread
From: Naladala Ramanaidu @ 2026-04-11 17:59 UTC (permalink / raw)
  To: igt-dev
  Cc: karthik.b.s, mitulkumar.ajitkumar.golani, ankit.k.nautiyal,
	swati2.sharma, Naladala Ramanaidu

Remove the CMRR subtest due to a change in test approach requiring
a complete rewrite. The subtest will be reintroduced in a future
patch with a revised test methodology.

Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
 tests/kms_vrr.c | 132 +-----------------------------------------------
 1 file changed, 1 insertion(+), 131 deletions(-)

diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index ec0692b2f..01f078d2c 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -36,10 +36,6 @@
 #include <signal.h>
 
 /**
- * SUBTEST: cmrr
- * Description: Test to validate the content rate to exactly match with the
- * 		requested rate without any frame drops.
- *
  * SUBTEST: flip-basic
  * Description: Tests that VRR is enabled and that the difference between flip
  *              timestamps converges to the requested rate
@@ -90,9 +86,6 @@
  */
 #define TEST_DURATION_NS (5000000000ull)
 
-#define CMRR_PRECISION_TOLERANCE	10
-#define VREFRESH_MODIFIER	0.1
-
 enum {
 	TEST_BASIC = 1 << 0,
 	TEST_DPMS = 1 << 1,
@@ -103,7 +96,6 @@ enum {
 	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
 	TEST_FASTSET = 1 << 7,
 	TEST_MAXMIN = 1 << 8,
-	TEST_CMRR = 1 << 9,
 	TEST_LINK_OFF = 1 << 10,
 	TEST_NEGATIVE = 1 << 11,
 	TEST_FORCE_RR = 1 << 12,
@@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
 	mode->vrefresh = virtual_refresh_rate;
 }
 
-static bool
-is_cmrr_mode(drmModeModeInfoPtr mode)
-{
-	int calculated_refresh, actual_refresh, pixel_clock_per_line;
-
-	actual_refresh = mode->vrefresh * 100;
-	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
-	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
-
-	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
-		return false;
-
-	return true;
-}
-
 /* Read min and max vrr range from the connector debugfs. */
 static range_t
 get_vrr_range(data_t *data, igt_output_t *output)
@@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
 	return 0;
 }
 
-static uint32_t
-flip_and_measure_cmrr(data_t *data, igt_output_t *output,
-		      uint64_t duration_ns)
-{
-	uint64_t start_ns, last_event_ns, event_ns;
-	uint32_t total_flip = 0, total_pass = 0;
-	bool front = false;
-	drmModeModeInfoPtr mode = igt_output_get_mode(output);
-	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
-	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
-	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
-
-	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
-		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
-		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
-		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
-
-	do_flip(data, &data->fb[0]);
-	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-	do {
-		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
-
-		front = !front;
-		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
-
-		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
-			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
-
-		diff_ns -= event_ns - last_event_ns;
-		if (llabs(diff_ns) <= threshold_ns)
-			total_pass += 1;
-
-		last_event_ns = event_ns;
-		total_flip += 1;
-
-		diff_ns = event_ns - start_ns;
-		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
-		wait_ns -= diff_ns;
-		target_ns = event_ns + wait_ns;
-		while (get_time_ns() < target_ns - 10);
-	} while (event_ns - start_ns <= duration_ns);
-
-	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
-		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
-
-	return total_flip ? ((total_pass * 100) / total_flip) : 0;
-}
-
 /* Basic VRR flip functionality test - enable, measure, disable, measure */
 static void
 test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
@@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
 	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
 }
 
-static void
-test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
-	  uint32_t flags)
-{
-	uint32_t result;
-	int i;
-	bool found = false;
-	drmModeConnectorPtr connector = output->config.connector;
-	drmModeModeInfo mode = *igt_output_get_mode(output);
-
-	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
-		 output->name, igt_crtc_name(crtc), data->range.min,
-		 data->range.max);
-
-	for (i = 0; i < connector->count_modes; i++) {
-		if (is_cmrr_mode(&connector->modes[i])) {
-			mode = connector->modes[i];
-
-			found = true;
-			break;
-		}
-	}
-
-	igt_info("Selected mode: ");
-	kmstest_dump_mode(&mode);
-
-	if (!found) {
-		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
-
-		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
-
-		igt_info("Tweaked mode: ");
-		kmstest_dump_mode(&mode);
-	}
-
-	igt_output_override_mode(output, &mode);
-
-	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
-		prepare_test(data, output,
-			     crtc);
-		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
-		igt_assert_f(result > 75,
-			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
-			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
-			     result);
-	}
-}
-
 static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 {
 	igt_crtc_set_prop_value(crtc,
@@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
 {
 
-	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
+	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
 	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
 		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
 		return false;
@@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
 		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
 			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
 
-		igt_describe("Test to validate the content rate exactly matches with the "
-			     "requested rate without any frame drops.");
-		igt_subtest_with_dynamic("cmrr") {
-			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
-
-			run_vrr_test(&data, test_cmrr, TEST_CMRR);
-		}
-
 		igt_describe("Test to validate the link-off between active frames in "
 			     "non-PSR operation.");
 		igt_subtest_with_dynamic("lobf") {
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
@ 2026-04-11 19:08 ` Patchwork
  2026-04-11 19:27 ` ✓ i915.CI.BAT: " Patchwork
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-11 19:08 UTC (permalink / raw)
  To: Naladala Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8854_BAT -> XEIGTPW_14966_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8854 -> IGTPW_14966
  * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15

  IGTPW_14966: e6dcfb3b2862bd99b745fa227a4333bc9ed7d7be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
  xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15: dcbfa16156e0733d93e1039011bcbc28e4f9ee15

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
  2026-04-11 19:08 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-11 19:27 ` Patchwork
  2026-04-11 19:57 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-11 19:27 UTC (permalink / raw)
  To: Naladala Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from IGT_8854 -> IGTPW_14966
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 40)
------------------------------

  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_auth@basic-auth:
    - fi-bsw-n3050:       [PASS][1] -> [DMESG-WARN][2] ([i915#15498])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-bsw-n3050/igt@core_auth@basic-auth.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/fi-bsw-n3050/igt@core_auth@basic-auth.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-tgl-1115g4:      [PASS][3] -> [FAIL][4] ([i915#14867])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html

  
#### Possible fixes ####

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

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
  [i915#15498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15498


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8854 -> IGTPW_14966
  * Linux: CI_DRM_18313 -> CI_DRM_18315

  CI-20190529: 20190529
  CI_DRM_18313: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18315: dcbfa16156e0733d93e1039011bcbc28e4f9ee15 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14966: e6dcfb3b2862bd99b745fa227a4333bc9ed7d7be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
  2026-04-11 19:08 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-04-11 19:27 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-11 19:57 ` Patchwork
  2026-04-12  0:55 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-11 19:57 UTC (permalink / raw)
  To: Naladala Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8854_FULL -> XEIGTPW_14966_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#1124])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#3432])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2887]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#306] / [Intel XE#7358])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-4/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2252])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2320]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#309] / [Intel XE#7343])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][10] -> [DMESG-WARN][11] ([Intel XE#5354])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1508])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][14] -> [FAIL][15] ([Intel XE#301]) +2 other tests fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#7179])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#6312])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#4141])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2311]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2313]) +3 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#656]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#6911] / [Intel XE#7378])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-9/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#6900] / [Intel XE#7362])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#7591])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#7283])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html

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

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][28] -> [FAIL][29] ([Intel XE#7340]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2234] / [Intel XE#2850])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-10/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@pr-sprite-render:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1406])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-4/igt@kms_psr@pr-sprite-render.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-5/igt@kms_rotation_crc@bad-tiling.html

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

  * igt@kms_sharpness_filter@filter-scaler-upscale:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#6503])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-7/igt@kms_sharpness_filter@filter-scaler-upscale.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1447] / [Intel XE#7471])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-4/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#7636])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html

  * igt@xe_evict@evict-beng-cm-threads-small:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7140])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-10/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#7482]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-6/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#1392])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7136]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html

  * igt@xe_exec_multi_queue@many-queues-close-fd:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#6874]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-close-fd.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#6874]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-8/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7138]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html

  * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#7138]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#7599])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-6/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#944]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-bmg:          [PASS][49] -> [FAIL][50] ([Intel XE#5937]) +2 other tests fail
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#4130] / [Intel XE#7366])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][52] ([Intel XE#7571]) -> [PASS][53] +1 other test pass
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@xe_configfs@engines-allowed:
    - shard-bmg:          [DMESG-WARN][54] ([Intel XE#7725]) -> [PASS][55] +3 other tests pass
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_configfs@engines-allowed.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-3/igt@xe_configfs@engines-allowed.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][56] ([Intel XE#6321]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [FAIL][58] ([Intel XE#5625]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][60] ([Intel XE#2312]) -> [SKIP][61] ([Intel XE#2313])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][62] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][63] ([Intel XE#2509] / [Intel XE#7437])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14966/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
  [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
  [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8854 -> IGTPW_14966
  * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15

  IGTPW_14966: e6dcfb3b2862bd99b745fa227a4333bc9ed7d7be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
  xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15: dcbfa16156e0733d93e1039011bcbc28e4f9ee15

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (2 preceding siblings ...)
  2026-04-11 19:57 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-12  0:55 ` Patchwork
  2026-04-13 15:21 ` [PATCH i-g-t v1] " Sharma, Swati2
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-12  0:55 UTC (permalink / raw)
  To: Naladala Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign
URL   : https://patchwork.freedesktop.org/series/164742/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18315_full -> IGTPW_14966_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14966_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14966_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_14966/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_14966_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_big@single:
    - shard-mtlp:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-1/igt@gem_exec_big@single.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@gem_exec_big@single.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_bad_reloc@negative-reloc-bltcopy:
    - shard-mtlp:         NOTRUN -> [SKIP][3] ([i915#3281]) +6 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-bltcopy.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#3936])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@gem_busy@semaphore.html
    - shard-dg1:          NOTRUN -> [SKIP][5] ([i915#3936])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@gem_busy@semaphore.html
    - shard-mtlp:         NOTRUN -> [SKIP][6] ([i915#3936])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-1/igt@gem_busy@semaphore.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          NOTRUN -> [SKIP][7] ([i915#9323])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-tglu:         NOTRUN -> [SKIP][8] ([i915#9323])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

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

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][10] ([i915#13356]) +1 other test incomplete
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@gem_ccs@suspend-resume.html
    - shard-rkl:          NOTRUN -> [SKIP][11] ([i915#14544] / [i915#9323])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_ccs@suspend-resume.html
    - shard-dg1:          NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@gem_ccs@suspend-resume.html
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#9323]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@gem_ccs@suspend-resume.html

  * igt@gem_ctx_freq@sysfs@gt0:
    - shard-dg2:          [PASS][14] -> [FAIL][15] ([i915#9561]) +1 other test fail
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][16] ([i915#13356]) +1 other test incomplete
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg1:          NOTRUN -> [SKIP][17] ([i915#8555])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8555])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#5882]) +7 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#280])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-mtlp:         NOTRUN -> [SKIP][21] ([i915#280])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#280])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][23] ([i915#13390])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk3/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglu:         NOTRUN -> [SKIP][25] ([i915#4525])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#4525])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [FAIL][27] ([i915#15816])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-4/igt@gem_exec_big@single.html

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

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

  * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
    - shard-snb:          NOTRUN -> [SKIP][31] +112 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-snb4/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_flush@basic-batch-kernel-default-uc:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-uc.html

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html

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

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

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg1:          NOTRUN -> [SKIP][37] ([i915#3281]) +5 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-glk:          [PASS][40] -> [INCOMPLETE][41] ([i915#13196] / [i915#13356]) +1 other test incomplete
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-glk5/igt@gem_exec_suspend@basic-s3.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk4/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_fenced_exec_thrash@2-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#12193]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#4565]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html

  * igt@gem_lmem_swapping@massive-random:
    - shard-rkl:          NOTRUN -> [SKIP][46] ([i915#4613])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@gem_lmem_swapping@massive-random.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-tglu-1:       NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@verify:
    - shard-glk:          NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk3/igt@gem_lmem_swapping@verify.html

  * igt@gem_media_fill@media-fill:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#8289])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@gem_media_fill@media-fill.html
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#8289])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap_gtt@basic-read-write-distinct:
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@gem_mmap_gtt@basic-read-write-distinct.html

  * igt@gem_mmap_gtt@medium-copy-xy:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@gem_mmap_gtt@medium-copy-xy.html

  * igt@gem_mmap_wc@coherency:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4083]) +4 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@gem_mmap_wc@coherency.html
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-17/igt@gem_mmap_wc@coherency.html
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@gem_mmap_wc@coherency.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_pread@snoop:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@gem_pread@snoop.html

  * igt@gem_pwrite@basic-random:
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@gem_pwrite@basic-random.html

  * igt@gem_pxp@display-protected-crc:
    - shard-dg1:          NOTRUN -> [SKIP][60] ([i915#4270])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#13717])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html
    - shard-tglu:         NOTRUN -> [SKIP][62] ([i915#13398])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-rkl:          [PASS][63] -> [SKIP][64] ([i915#4270]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_readwrite@beyond-eob:
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@gem_readwrite@beyond-eob.html

  * igt@gem_render_copy@y-tiled-ccs-to-x-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#8428]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html

  * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +4 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4079])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@gem_render_tiled_blits@basic.html
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#4079])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@gem_render_tiled_blits@basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4079])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@gem_render_tiled_blits@basic.html

  * igt@gem_softpin@evict-snoop:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#4885])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@gem_softpin@evict-snoop.html

  * igt@gem_tiled_pread_basic@basic:
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#15657])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-17/igt@gem_tiled_pread_basic@basic.html

  * igt@gem_tiling_max_stride:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4077]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@gem_tiling_max_stride.html

  * igt@gem_unfence_active_buffers:
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#4879])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#3297])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][76] ([i915#3297])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-tglu:         NOTRUN -> [SKIP][77] ([i915#3297])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#3297])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#3297])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-glk:          [PASS][80] -> [INCOMPLETE][81] ([i915#13356] / [i915#14586])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-glk2/igt@gem_workarounds@suspend-resume-fd.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-mtlp:         NOTRUN -> [SKIP][82] +11 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-5/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([i915#2856])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected.html
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@gen9_exec_parse@basic-rejected.html
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#2527])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@gen9_exec_parse@basic-rejected.html

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

  * igt@gen9_exec_parse@secure-batches:
    - shard-rkl:          NOTRUN -> [SKIP][87] ([i915#2527]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#14073]) +7 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html

  * igt@i915_drm_fdinfo@virtual-busy-idle:
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([i915#14118])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-idle.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#13786])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
    - shard-dg1:          NOTRUN -> [INCOMPLETE][91] ([i915#15481])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-dg1:          NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-tglu:         NOTRUN -> [SKIP][94] ([i915#6590]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#6590]) +2 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_sseu@full-enable:
    - shard-mtlp:         NOTRUN -> [SKIP][97] ([i915#8437])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@hwconfig_table:
    - shard-dg1:          NOTRUN -> [SKIP][98] ([i915#6245])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@i915_query@hwconfig_table.html
    - shard-tglu:         NOTRUN -> [SKIP][99] ([i915#6245])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-2/igt@i915_query@hwconfig_table.html

  * igt@i915_selftest@live@workarounds:
    - shard-dg2:          [PASS][100] -> [DMESG-FAIL][101] ([i915#12061]) +1 other test dmesg-fail
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-6/igt@i915_selftest@live@workarounds.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@i915_selftest@live@workarounds.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#5190])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
    - shard-mtlp:         NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          [PASS][106] -> [INCOMPLETE][107] ([i915#12761]) +1 other test incomplete
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
    - shard-glk10:        NOTRUN -> [INCOMPLETE][108] ([i915#12761]) +1 other test incomplete
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#9531])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-tglu:         NOTRUN -> [FAIL][110] ([i915#15662]) +1 other test fail
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-mtlp:         NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-tglu:         NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

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

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#5286]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-tglu:         NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-rkl:          NOTRUN -> [SKIP][117] ([i915#14544] / [i915#5286])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][118] ([i915#3638]) +2 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html

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

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#3638])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][122] +10 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

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

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#4538]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5190]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#6095]) +19 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][127] ([i915#12313])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][129] ([i915#6095]) +34 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][130] ([i915#6095]) +39 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +3 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#12313])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][134] +100 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +96 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#12805])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#12805])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

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

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#6095]) +67 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][141] ([i915#6095]) +193 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#14098] / [i915#6095]) +42 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][143] ([i915#12313])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-tglu:         NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +7 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +6 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-2/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2:          NOTRUN -> [SKIP][147] +7 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_frames@hdmi-crc-multiple:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +7 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-multiple.html
    - shard-rkl:          NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +8 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +5 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-multiple.html

  * igt@kms_content_protection@atomic:
    - shard-rkl:          NOTRUN -> [SKIP][152] ([i915#15865]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_content_protection@atomic.html

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

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

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-3:
    - shard-dg2:          NOTRUN -> [FAIL][155] ([i915#7173])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-10/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-3.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#15865]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@kms_content_protection@type1.html
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#14544] / [i915#15865])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_content_protection@type1.html
    - shard-dg1:          NOTRUN -> [SKIP][158] ([i915#15865])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-17/igt@kms_content_protection@type1.html
    - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#15865]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@kms_content_protection@type1.html
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#15865]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-2/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3555]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#3555]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html
    - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#3555])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x10.html
    - shard-tglu:         NOTRUN -> [SKIP][164] ([i915#3555])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
    - shard-mtlp:         NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#13049])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-rkl:          [PASS][167] -> [FAIL][168] ([i915#13566]) +2 other tests fail
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
    - shard-tglu:         [PASS][169] -> [FAIL][170] ([i915#13566]) +3 other tests fail
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][171] ([i915#13566])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html

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

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][173] ([i915#13049]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][174] ([i915#3555]) +2 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][175] ([i915#8814])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][176] ([i915#13049])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][177] ([i915#4213]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#13046] / [i915#5354]) +3 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-mtlp:         NOTRUN -> [SKIP][179] ([i915#9809])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          NOTRUN -> [FAIL][180] ([i915#15804])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][181] ([i915#4103])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][182] ([i915#4103] / [i915#4213])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#4103])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-dg1:          NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#4103])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#9723])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-tglu:         NOTRUN -> [SKIP][187] ([i915#9723])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#13749])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-tglu-1:       NOTRUN -> [SKIP][189] ([i915#13749])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html

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

  * igt@kms_feature_discovery@display-3x:
    - shard-tglu:         NOTRUN -> [SKIP][191] ([i915#1839])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-8/igt@kms_feature_discovery@display-3x.html

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

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#658])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-2/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2:          NOTRUN -> [SKIP][194] ([i915#658])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#9934]) +2 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-rkl:          NOTRUN -> [SKIP][196] ([i915#9934]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-dg1:          NOTRUN -> [SKIP][197] ([i915#9934]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-14/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-tglu:         NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +4 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-2/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][199] ([i915#3637] / [i915#9934]) +3 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-tglu-1:       NOTRUN -> [SKIP][200] ([i915#3637] / [i915#9934])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][201] ([i915#15643]) +1 other test skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#14544] / [i915#15643])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#15643]) +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][204] ([i915#15643]) +3 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#15643]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][208] ([i915#15643])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#15643] / [i915#5190])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-mtlp:         [PASS][210] -> [SKIP][211] ([i915#15672])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-7/igt@kms_force_connector_basic@force-connector-state.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][212] +43 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][213] ([i915#1825]) +18 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][214] ([i915#10056])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk11/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#5439])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-tglu:         NOTRUN -> [SKIP][216] ([i915#5439])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][217] ([i915#15102]) +2 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
    - shard-dg1:          NOTRUN -> [SKIP][218] ([i915#15102]) +2 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][219] ([i915#15102] / [i915#3458]) +6 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][220] ([i915#15102] / [i915#3458]) +12 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][221] ([i915#14544] / [i915#15102] / [i915#3023])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html

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

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][224] +18 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][225] ([i915#15102]) +11 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][226] ([i915#8708]) +4 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][227] ([i915#15102] / [i915#3023]) +18 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#15102]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][229] ([i915#8708]) +11 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
    - shard-rkl:          NOTRUN -> [SKIP][230] ([i915#1825]) +19 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#5354]) +14 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][232] ([i915#8708]) +6 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

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

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][237] ([i915#15436])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          NOTRUN -> [SKIP][238] ([i915#13331])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          [PASS][239] -> [SKIP][240] ([i915#3555] / [i915#8228])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-6/igt@kms_hdr@static-toggle.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-mtlp:         NOTRUN -> [SKIP][242] ([i915#3555] / [i915#6403] / [i915#8826])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][243] ([i915#9457]) +2 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][244] ([i915#8826] / [i915#9457])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#15460])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@kms_joiner@invalid-modeset-big-joiner.html

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

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglu:         NOTRUN -> [SKIP][247] ([i915#15815])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-tglu-1:       NOTRUN -> [SKIP][248] ([i915#14712])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-dg2:          NOTRUN -> [SKIP][249] ([i915#14712])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#15709])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html

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

  * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#15709]) +2 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#15709]) +2 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][254] ([i915#15709]) +2 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
    - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#15709]) +3 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#15608]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][257] ([i915#15709]) +2 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-modifier.html

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

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][261] ([i915#14259])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][262] ([i915#6953])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#15329]) +14 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#15329]) +11 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#15329]) +14 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#15329] / [i915#6953]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
    - shard-mtlp:         NOTRUN -> [SKIP][267] ([i915#15329]) +12 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#12343])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-13/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#12343])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-10/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-tglu-1:       NOTRUN -> [SKIP][270] ([i915#9685])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
    - shard-mtlp:         NOTRUN -> [SKIP][271] ([i915#15740])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-1/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#9685])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#8430])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html
    - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#8430])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
    - shard-tglu:         NOTRUN -> [SKIP][275] ([i915#8430])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html
    - shard-mtlp:         NOTRUN -> [SKIP][276] ([i915#8430])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-glk10:        NOTRUN -> [SKIP][277] +69 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk10/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-dg2:          NOTRUN -> [SKIP][278] ([i915#15073])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][279] ([i915#15073])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#15073])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-rkl:          [PASS][281] -> [INCOMPLETE][282] ([i915#14419])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][283] ([i915#14419])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html

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

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#11520]) +4 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

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

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-mtlp:         NOTRUN -> [SKIP][287] ([i915#12316]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

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

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#11520]) +6 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][290] ([i915#11520]) +16 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-glk11:        NOTRUN -> [SKIP][291] ([i915#11520]) +2 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk11/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-snb:          NOTRUN -> [SKIP][292] ([i915#11520]) +2 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
    - shard-dg1:          NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-16/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
    - shard-glk10:        NOTRUN -> [SKIP][294] ([i915#11520]) +2 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
    - shard-rkl:          NOTRUN -> [SKIP][295] ([i915#11520] / [i915#14544])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-dg2:          NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +15 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-plane-move.html
    - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +13 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@kms_psr@fbc-psr-cursor-plane-move.html
    - shard-dg1:          NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +11 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#9732]) +15 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html

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

  * igt@kms_psr@fbc-psr2-no-drrs:
    - shard-rkl:          NOTRUN -> [SKIP][301] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_psr@fbc-psr2-no-drrs.html

  * igt@kms_psr@fbc-psr2-primary-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][302] ([i915#9688]) +14 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html

  * igt@kms_psr@psr2-sprite-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][303] ([i915#9732]) +8 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html

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

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][305] ([i915#15492])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-mtlp:         NOTRUN -> [SKIP][306] ([i915#12755] / [i915#15867])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-90.html
    - shard-dg2:          NOTRUN -> [SKIP][307] ([i915#12755] / [i915#15867])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-mtlp:         NOTRUN -> [SKIP][308] ([i915#5289])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#5289])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk11:        NOTRUN -> [FAIL][311] ([i915#10959])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk11/igt@kms_tiled_display@basic-test-pattern.html

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

  * igt@perf@blocking:
    - shard-mtlp:         [PASS][313] -> [FAIL][314] ([i915#10538]) +2 other tests fail
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-5/igt@perf@blocking.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@perf@blocking.html

  * igt@perf@global-sseu-config:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#7387])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@perf@global-sseu-config.html

  * igt@perf@mi-rpc:
    - shard-rkl:          NOTRUN -> [SKIP][316] ([i915#2434])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@perf@mi-rpc.html

  * igt@perf_pmu@busy-idle:
    - shard-mtlp:         [PASS][317] -> [FAIL][318] ([i915#4349]) +2 other tests fail
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-5/igt@perf_pmu@busy-idle.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-8/igt@perf_pmu@busy-idle.html

  * igt@perf_pmu@busy-idle@vecs1:
    - shard-dg2:          [PASS][319] -> [FAIL][320] ([i915#4349]) +2 other tests fail
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-1/igt@perf_pmu@busy-idle@vecs1.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-1/igt@perf_pmu@busy-idle@vecs1.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         NOTRUN -> [ABORT][321] ([i915#15778])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@basic-fence-flip:
    - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#3708])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-read:
    - shard-dg2:          NOTRUN -> [SKIP][323] ([i915#3291] / [i915#3708])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-4/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@fence-read-hang:
    - shard-dg2:          NOTRUN -> [SKIP][324] ([i915#3708]) +1 other test skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-6/igt@prime_vgem@fence-read-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-rkl:          NOTRUN -> [SKIP][325] ([i915#9917])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-dg2:          NOTRUN -> [SKIP][326] ([i915#4818])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          [DMESG-WARN][327] ([i915#13029] / [i915#14545]) -> [PASS][328]
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-7/igt@i915_module_load@reload-no-display.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-8/igt@i915_module_load@reload-no-display.html
    - shard-dg1:          [DMESG-WARN][329] ([i915#13029] / [i915#14545]) -> [PASS][330]
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-19/igt@i915_module_load@reload-no-display.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-14/igt@i915_module_load@reload-no-display.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-rkl:          [ABORT][331] ([i915#15131]) -> [PASS][332]
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-rkl:          [INCOMPLETE][333] ([i915#4817]) -> [PASS][334]
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_3d@basic:
    - shard-mtlp:         [SKIP][335] ([i915#15726]) -> [PASS][336]
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-1/igt@kms_3d@basic.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_3d@basic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
    - shard-dg2:          [FAIL][337] ([i915#5956]) -> [PASS][338] +1 other test pass
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [FAIL][339] ([i915#15733] / [i915#5138]) -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-rkl:          [FAIL][341] ([i915#13566]) -> [PASS][342] +1 other test pass
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][343] ([i915#13566]) -> [PASS][344] +1 other test pass
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-snb:          [FAIL][345] ([i915#14600]) -> [PASS][346] +1 other test pass
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-rkl:          [INCOMPLETE][347] ([i915#6113]) -> [PASS][348] +1 other test pass
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-mtlp:         [SKIP][349] ([i915#15725]) -> [PASS][350]
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-dg1:          [SKIP][351] ([i915#15073]) -> [PASS][352]
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][353] ([i915#15073]) -> [PASS][354] +1 other test pass
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk10:        [INCOMPLETE][355] ([i915#12276]) -> [PASS][356]
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@perf_pmu@rc6-suspend:
    - shard-dg2:          [ABORT][357] ([i915#15131]) -> [PASS][358]
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-10/igt@perf_pmu@rc6-suspend.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-3/igt@perf_pmu@rc6-suspend.html

  
#### Warnings ####

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-rkl:          [SKIP][359] ([i915#14544] / [i915#6335]) -> [SKIP][360] ([i915#6335])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_exec_reloc@basic-cpu-gtt:
    - shard-rkl:          [SKIP][361] ([i915#3281]) -> [SKIP][362] ([i915#14544] / [i915#3281]) +1 other test skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html

  * igt@gem_exec_reloc@basic-wc-gtt:
    - shard-rkl:          [SKIP][363] ([i915#14544] / [i915#3281]) -> [SKIP][364] ([i915#3281]) +2 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@gem_exec_reloc@basic-wc-gtt.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          [SKIP][365] ([i915#7276]) -> [SKIP][366] ([i915#14544] / [i915#7276])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          [SKIP][367] ([i915#4613] / [i915#7582]) -> [SKIP][368] ([i915#14544] / [i915#4613] / [i915#7582])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@verify:
    - shard-rkl:          [SKIP][369] ([i915#4613]) -> [SKIP][370] ([i915#14544] / [i915#4613])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@gem_lmem_swapping@verify.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_lmem_swapping@verify.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-rkl:          [SKIP][371] ([i915#14544] / [i915#4613]) -> [SKIP][372] ([i915#4613])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_pread@display:
    - shard-rkl:          [SKIP][373] ([i915#14544] / [i915#3282]) -> [SKIP][374] ([i915#3282])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@gem_pread@display.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@gem_pread@display.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-rkl:          [SKIP][375] ([i915#3282]) -> [SKIP][376] ([i915#14544] / [i915#3282])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-8/igt@gem_readwrite@read-bad-handle.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-rkl:          [SKIP][377] ([i915#8411]) -> [SKIP][378] ([i915#14544] / [i915#8411]) +2 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-rkl:          [SKIP][379] ([i915#3297]) -> [SKIP][380] ([i915#14544] / [i915#3297])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-rkl:          [SKIP][381] ([i915#14544] / [i915#2527]) -> [SKIP][382] ([i915#2527]) +1 other test skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@fault-injection:
    - shard-dg1:          [ABORT][383] -> [ABORT][384] ([i915#15481]) +1 other test abort
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-14/igt@i915_module_load@fault-injection.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@i915_module_load@fault-injection.html

  * igt@i915_power@sanity:
    - shard-rkl:          [SKIP][385] ([i915#7984]) -> [SKIP][386] ([i915#14544] / [i915#7984])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@i915_power@sanity.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@i915_power@sanity.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][387] ([i915#14544] / [i915#7707]) -> [SKIP][388] ([i915#7707])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@intel_hwmon@hwmon-read.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-rkl:          [SKIP][389] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][390] ([i915#1769] / [i915#3555])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-rkl:          [SKIP][391] ([i915#5286]) -> [SKIP][392] ([i915#14544] / [i915#5286])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-rkl:          [SKIP][393] ([i915#3638]) -> [SKIP][394] ([i915#14544] / [i915#3638])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_big_fb@linear-16bpp-rotate-270.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-rkl:          [SKIP][395] ([i915#14544] / [i915#3638]) -> [SKIP][396] ([i915#3638]) +1 other test skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-rkl:          [SKIP][397] ([i915#14544]) -> [SKIP][398] +4 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
    - shard-rkl:          [SKIP][399] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][400] ([i915#14098] / [i915#6095])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][401] ([i915#6095]) -> [SKIP][402] ([i915#14544] / [i915#6095]) +4 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][403] ([i915#12313] / [i915#14544]) -> [SKIP][404] ([i915#12313])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

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

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-rkl:          [SKIP][407] ([i915#11151] / [i915#7828]) -> [SKIP][408] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-rkl:          [SKIP][409] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][410] ([i915#11151] / [i915#7828])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-rkl:          [SKIP][411] ([i915#15330]) -> [SKIP][412] ([i915#14544] / [i915#15330])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-rkl:          [SKIP][413] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][414] ([i915#15330] / [i915#3116])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-dg2:          [SKIP][415] ([i915#15865]) -> [FAIL][416] ([i915#7173])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg2-3/igt@kms_content_protection@lic-type-0-hdcp14.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg2-10/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-rkl:          [SKIP][417] ([i915#13049]) -> [SKIP][418] ([i915#13049] / [i915#14544])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-rkl:          [SKIP][419] ([i915#3555]) -> [SKIP][420] ([i915#14544] / [i915#3555])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-rkl:          [SKIP][421] -> [SKIP][422] ([i915#14544]) +9 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-rkl:          [SKIP][423] ([i915#3840] / [i915#9053]) -> [SKIP][424] ([i915#14544] / [i915#3840] / [i915#9053])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_flip@2x-dpms-vs-vblank-race:
    - shard-rkl:          [SKIP][425] ([i915#9934]) -> [SKIP][426] ([i915#14544] / [i915#9934])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-dg1:          [SKIP][427] ([i915#4423] / [i915#9934]) -> [SKIP][428] ([i915#9934])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-rkl:          [SKIP][429] ([i915#14544] / [i915#9934]) -> [SKIP][430] ([i915#9934]) +1 other test skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][431] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][432] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-glk2/igt@kms_flip@flip-vs-suspend.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          [INCOMPLETE][433] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][434] ([i915#12314] / [i915#12745] / [i915#6113])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-rkl:          [SKIP][435] ([i915#15643]) -> [SKIP][436] ([i915#14544] / [i915#15643])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#15643]) -> [SKIP][438] ([i915#15643])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-mtlp:         [SKIP][439] ([i915#15672]) -> [SKIP][440]
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-mtlp-3/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][441] ([i915#1825]) -> [SKIP][442] ([i915#14544] / [i915#1825]) +10 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][443] ([i915#14544] / [i915#15102]) -> [SKIP][444] ([i915#15102]) +1 other test skip
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-rkl:          [SKIP][445] ([i915#15102]) -> [SKIP][446] ([i915#14544] / [i915#15102])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][447] ([i915#15102] / [i915#3023]) -> [SKIP][448] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
    - shard-rkl:          [SKIP][449] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][450] ([i915#15102] / [i915#3023]) +2 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][453] ([i915#14544] / [i915#1825]) -> [SKIP][454] ([i915#1825]) +5 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-rkl:          [SKIP][455] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][456] ([i915#15436])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          [SKIP][457] ([i915#1187] / [i915#12713]) -> [SKIP][458] ([i915#12713])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          [SKIP][459] ([i915#1187] / [i915#12713]) -> [SKIP][460] ([i915#12713])
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          [SKIP][461] ([i915#3555] / [i915#8228]) -> [SKIP][462] ([i915#14544] / [i915#3555] / [i915#8228])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          [SKIP][463] ([i915#14544] / [i915#15458]) -> [SKIP][464] ([i915#15458])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#15815]) -> [SKIP][466] ([i915#15815])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-rkl:          [SKIP][467] ([i915#14544] / [i915#15709]) -> [SKIP][468] ([i915#15709]) +2 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-rkl:          [SKIP][469] ([i915#13958] / [i915#14544]) -> [SKIP][470] ([i915#13958])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          [SKIP][471] ([i915#14259]) -> [SKIP][472] ([i915#14259] / [i915#14544])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          [SKIP][473] ([i915#5354]) -> [SKIP][474] ([i915#14544] / [i915#5354])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-rkl:          [SKIP][475] ([i915#9685]) -> [SKIP][476] ([i915#14544] / [i915#9685])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][477] ([i915#9340]) -> [SKIP][478] ([i915#14544] / [i915#9340])
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg1:          [SKIP][479] ([i915#9340]) -> [SKIP][480] ([i915#3828])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@pm-caching:
    - shard-dg1:          [SKIP][481] ([i915#4077]) -> [SKIP][482] ([i915#4077] / [i915#4423])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-dg1-12/igt@kms_pm_rpm@pm-caching.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-dg1-19/igt@kms_pm_rpm@pm-caching.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][483] ([i915#11520]) -> [SKIP][484] ([i915#11520] / [i915#14544]) +2 other tests skip
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
    - shard-rkl:          [SKIP][485] ([i915#11520] / [i915#14544]) -> [SKIP][486] ([i915#11520]) +1 other test skip
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-rkl:          [SKIP][487] ([i915#9683]) -> [SKIP][488] ([i915#14544] / [i915#9683])
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@pr-no-drrs:
    - shard-rkl:          [SKIP][489] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][490] ([i915#1072] / [i915#9732])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_psr@pr-no-drrs.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-7/igt@kms_psr@pr-no-drrs.html

  * igt@kms_psr@psr2-sprite-mmap-cpu:
    - shard-rkl:          [SKIP][491] ([i915#1072] / [i915#9732]) -> [SKIP][492] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-rkl:          [SKIP][493] ([i915#14544] / [i915#5289]) -> [SKIP][494] ([i915#5289])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-rkl:          [SKIP][495] ([i915#5289]) -> [SKIP][496] ([i915#14544] / [i915#5289])
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-rkl:          [SKIP][497] ([i915#14544] / [i915#3555]) -> [SKIP][498] ([i915#3555])
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_vrr@flip-suspend:
    - shard-rkl:          [SKIP][499] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][500] ([i915#15243] / [i915#3555])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-6/igt@kms_vrr@flip-suspend.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-4/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-rkl:          [SKIP][501] ([i915#9906]) -> [SKIP][502] ([i915#14544] / [i915#9906])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18315/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14966/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html

  
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [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#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [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#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
  [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15740]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15740
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
  [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#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#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [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_8854 -> IGTPW_14966
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18315: dcbfa16156e0733d93e1039011bcbc28e4f9ee15 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14966: e6dcfb3b2862bd99b745fa227a4333bc9ed7d7be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (3 preceding siblings ...)
  2026-04-12  0:55 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-04-13 15:21 ` Sharma, Swati2
  2026-04-14 13:41   ` Naladala, Ramanaidu
  2026-04-17  5:36 ` [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR" Naladala Ramanaidu
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 19+ messages in thread
From: Sharma, Swati2 @ 2026-04-13 15:21 UTC (permalink / raw)
  To: Naladala Ramanaidu, igt-dev
  Cc: karthik.b.s, mitulkumar.ajitkumar.golani, ankit.k.nautiyal,
	Kamil Konieczny

Hi Ramanaidu,

Shouldn't we revert 7f0a262891b7888a09e4a1838eb688ad9c676324 ?

commit 7f0a262891b7888a09e4a1838eb688ad9c676324
Author: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Date:   Tue Jun 18 13:12:25 2024 +0530

     tests/kms_vrr: New subtest for CMRR

++Kamil

On 11-04-2026 11:29 pm, Naladala Ramanaidu wrote:
> Remove the CMRR subtest due to a change in test approach requiring
> a complete rewrite. The subtest will be reintroduced in a future
> patch with a revised test methodology.
>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
>   tests/kms_vrr.c | 132 +-----------------------------------------------
>   1 file changed, 1 insertion(+), 131 deletions(-)
>
> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
> index ec0692b2f..01f078d2c 100644
> --- a/tests/kms_vrr.c
> +++ b/tests/kms_vrr.c
> @@ -36,10 +36,6 @@
>   #include <signal.h>
>   
>   /**
> - * SUBTEST: cmrr
> - * Description: Test to validate the content rate to exactly match with the
> - * 		requested rate without any frame drops.
> - *
>    * SUBTEST: flip-basic
>    * Description: Tests that VRR is enabled and that the difference between flip
>    *              timestamps converges to the requested rate
> @@ -90,9 +86,6 @@
>    */
>   #define TEST_DURATION_NS (5000000000ull)
>   
> -#define CMRR_PRECISION_TOLERANCE	10
> -#define VREFRESH_MODIFIER	0.1
> -
>   enum {
>   	TEST_BASIC = 1 << 0,
>   	TEST_DPMS = 1 << 1,
> @@ -103,7 +96,6 @@ enum {
>   	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
>   	TEST_FASTSET = 1 << 7,
>   	TEST_MAXMIN = 1 << 8,
> -	TEST_CMRR = 1 << 9,
>   	TEST_LINK_OFF = 1 << 10,
>   	TEST_NEGATIVE = 1 << 11,
>   	TEST_FORCE_RR = 1 << 12,
> @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
>   	mode->vrefresh = virtual_refresh_rate;
>   }
>   
> -static bool
> -is_cmrr_mode(drmModeModeInfoPtr mode)
> -{
> -	int calculated_refresh, actual_refresh, pixel_clock_per_line;
> -
> -	actual_refresh = mode->vrefresh * 100;
> -	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
> -	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
> -
> -	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
> -		return false;
> -
> -	return true;
> -}
> -
>   /* Read min and max vrr range from the connector debugfs. */
>   static range_t
>   get_vrr_range(data_t *data, igt_output_t *output)
> @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
>   	return 0;
>   }
>   
> -static uint32_t
> -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
> -		      uint64_t duration_ns)
> -{
> -	uint64_t start_ns, last_event_ns, event_ns;
> -	uint32_t total_flip = 0, total_pass = 0;
> -	bool front = false;
> -	drmModeModeInfoPtr mode = igt_output_get_mode(output);
> -	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
> -	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
> -	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
> -
> -	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
> -		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
> -		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
> -		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
> -
> -	do_flip(data, &data->fb[0]);
> -	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -	do {
> -		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
> -
> -		front = !front;
> -		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> -
> -		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
> -			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
> -
> -		diff_ns -= event_ns - last_event_ns;
> -		if (llabs(diff_ns) <= threshold_ns)
> -			total_pass += 1;
> -
> -		last_event_ns = event_ns;
> -		total_flip += 1;
> -
> -		diff_ns = event_ns - start_ns;
> -		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
> -		wait_ns -= diff_ns;
> -		target_ns = event_ns + wait_ns;
> -		while (get_time_ns() < target_ns - 10);
> -	} while (event_ns - start_ns <= duration_ns);
> -
> -	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
> -		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
> -
> -	return total_flip ? ((total_pass * 100) / total_flip) : 0;
> -}
> -
>   /* Basic VRR flip functionality test - enable, measure, disable, measure */
>   static void
>   test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>   	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
>   }
>   
> -static void
> -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> -	  uint32_t flags)
> -{
> -	uint32_t result;
> -	int i;
> -	bool found = false;
> -	drmModeConnectorPtr connector = output->config.connector;
> -	drmModeModeInfo mode = *igt_output_get_mode(output);
> -
> -	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
> -		 output->name, igt_crtc_name(crtc), data->range.min,
> -		 data->range.max);
> -
> -	for (i = 0; i < connector->count_modes; i++) {
> -		if (is_cmrr_mode(&connector->modes[i])) {
> -			mode = connector->modes[i];
> -
> -			found = true;
> -			break;
> -		}
> -	}
> -
> -	igt_info("Selected mode: ");
> -	kmstest_dump_mode(&mode);
> -
> -	if (!found) {
> -		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
> -
> -		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
> -
> -		igt_info("Tweaked mode: ");
> -		kmstest_dump_mode(&mode);
> -	}
> -
> -	igt_output_override_mode(output, &mode);
> -
> -	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
> -		prepare_test(data, output,
> -			     crtc);
> -		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
> -		igt_assert_f(result > 75,
> -			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
> -			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
> -			     result);
> -	}
> -}
> -
>   static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>   {
>   	igt_crtc_set_prop_value(crtc,
> @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>   static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
>   {
>   
> -	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
> +	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
>   	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
>   		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
>   		return false;
> @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
>   		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
>   			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
>   
> -		igt_describe("Test to validate the content rate exactly matches with the "
> -			     "requested rate without any frame drops.");
> -		igt_subtest_with_dynamic("cmrr") {
> -			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
> -
> -			run_vrr_test(&data, test_cmrr, TEST_CMRR);
> -		}
> -
>   		igt_describe("Test to validate the link-off between active frames in "
>   			     "non-PSR operation.");
>   		igt_subtest_with_dynamic("lobf") {

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

* Re: [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-13 15:21 ` [PATCH i-g-t v1] " Sharma, Swati2
@ 2026-04-14 13:41   ` Naladala, Ramanaidu
  2026-04-14 16:54     ` Kamil Konieczny
  2026-04-15 13:23     ` Kamil Konieczny
  0 siblings, 2 replies; 19+ messages in thread
From: Naladala, Ramanaidu @ 2026-04-14 13:41 UTC (permalink / raw)
  To: Sharma, Swati2, igt-dev
  Cc: karthik.b.s, mitulkumar.ajitkumar.golani, ankit.k.nautiyal,
	Kamil Konieczny

Hi Swati,

On 4/13/2026 8:51 PM, Sharma, Swati2 wrote:
> Hi Ramanaidu,
>
> Shouldn't we revert 7f0a262891b7888a09e4a1838eb688ad9c676324 ?
Recent patches caused the revert to fail, so a new patch has been 
submitted.
>
> commit 7f0a262891b7888a09e4a1838eb688ad9c676324
> Author: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Date:   Tue Jun 18 13:12:25 2024 +0530
>
>     tests/kms_vrr: New subtest for CMRR
>
> ++Kamil
>
> On 11-04-2026 11:29 pm, Naladala Ramanaidu wrote:
>> Remove the CMRR subtest due to a change in test approach requiring
>> a complete rewrite. The subtest will be reintroduced in a future
>> patch with a revised test methodology.
>>
>> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
>> ---
>>   tests/kms_vrr.c | 132 +-----------------------------------------------
>>   1 file changed, 1 insertion(+), 131 deletions(-)
>>
>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
>> index ec0692b2f..01f078d2c 100644
>> --- a/tests/kms_vrr.c
>> +++ b/tests/kms_vrr.c
>> @@ -36,10 +36,6 @@
>>   #include <signal.h>
>>     /**
>> - * SUBTEST: cmrr
>> - * Description: Test to validate the content rate to exactly match 
>> with the
>> - *         requested rate without any frame drops.
>> - *
>>    * SUBTEST: flip-basic
>>    * Description: Tests that VRR is enabled and that the difference 
>> between flip
>>    *              timestamps converges to the requested rate
>> @@ -90,9 +86,6 @@
>>    */
>>   #define TEST_DURATION_NS (5000000000ull)
>>   -#define CMRR_PRECISION_TOLERANCE    10
>> -#define VREFRESH_MODIFIER    0.1
>> -
>>   enum {
>>       TEST_BASIC = 1 << 0,
>>       TEST_DPMS = 1 << 1,
>> @@ -103,7 +96,6 @@ enum {
>>       TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
>>       TEST_FASTSET = 1 << 7,
>>       TEST_MAXMIN = 1 << 8,
>> -    TEST_CMRR = 1 << 9,
>>       TEST_LINK_OFF = 1 << 10,
>>       TEST_NEGATIVE = 1 << 11,
>>       TEST_FORCE_RR = 1 << 12,
>> @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, 
>> float virtual_refresh_rate)
>>       mode->vrefresh = virtual_refresh_rate;
>>   }
>>   -static bool
>> -is_cmrr_mode(drmModeModeInfoPtr mode)
>> -{
>> -    int calculated_refresh, actual_refresh, pixel_clock_per_line;
>> -
>> -    actual_refresh = mode->vrefresh * 100;
>> -    pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
>> -    calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
>> -
>> -    if ((actual_refresh - calculated_refresh) < 
>> CMRR_PRECISION_TOLERANCE)
>> -        return false;
>> -
>> -    return true;
>> -}
>> -
>>   /* Read min and max vrr range from the connector debugfs. */
>>   static range_t
>>   get_vrr_range(data_t *data, igt_output_t *output)
>> @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t 
>> *output,
>>       return 0;
>>   }
>>   -static uint32_t
>> -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
>> -              uint64_t duration_ns)
>> -{
>> -    uint64_t start_ns, last_event_ns, event_ns;
>> -    uint32_t total_flip = 0, total_pass = 0;
>> -    bool front = false;
>> -    drmModeModeInfoPtr mode = igt_output_get_mode(output);
>> -    uint64_t req_rate_ns = 
>> igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
>> -    uint64_t exp_rate_ns = 
>> igt_kms_frame_time_from_vrefresh(mode->vrefresh);
>> -    uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 
>> scan line. */
>> -
>> -    igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
>> -         "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
>> -         req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
>> -         (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
>> -         (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
>> -         (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
>> -
>> -    do_flip(data, &data->fb[0]);
>> -    start_ns = last_event_ns = get_kernel_event_ns(data, 
>> DRM_EVENT_FLIP_COMPLETE);
>> -    do {
>> -        int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
>> -
>> -        front = !front;
>> -        do_flip(data, front ? &data->fb[1] : &data->fb[0]);
>> -
>> -        event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
>> -        igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
>> -              event_ns - last_event_ns, (float)NSECS_PER_SEC / 
>> (event_ns - last_event_ns));
>> -
>> -        diff_ns -= event_ns - last_event_ns;
>> -        if (llabs(diff_ns) <= threshold_ns)
>> -            total_pass += 1;
>> -
>> -        last_event_ns = event_ns;
>> -        total_flip += 1;
>> -
>> -        diff_ns = event_ns - start_ns;
>> -        wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * 
>> req_rate_ns;
>> -        wait_ns -= diff_ns;
>> -        target_ns = event_ns + wait_ns;
>> -        while (get_time_ns() < target_ns - 10);
>> -    } while (event_ns - start_ns <= duration_ns);
>> -
>> -    igt_info("Completed %u flips, %u vblanks were in threshold for 
>> (%.2f Hz) %"PRIu64"ns.\n",
>> -         total_flip, total_pass, (mode->vrefresh + 
>> VREFRESH_MODIFIER), req_rate_ns);
>> -
>> -    return total_flip ? ((total_pass * 100) / total_flip) : 0;
>> -}
>> -
>>   /* Basic VRR flip functionality test - enable, measure, disable, 
>> measure */
>>   static void
>>   test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>> @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, 
>> igt_output_t *output,
>>       igt_assert_f(lobf_enabled, "LOBF not enabled\n");
>>   }
>>   -static void
>> -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>> -      uint32_t flags)
>> -{
>> -    uint32_t result;
>> -    int i;
>> -    bool found = false;
>> -    drmModeConnectorPtr connector = output->config.connector;
>> -    drmModeModeInfo mode = *igt_output_get_mode(output);
>> -
>> -    igt_info("CMRR test execution on %s, PIPE_%s with VRR range: 
>> (%u-%u) Hz\n",
>> -         output->name, igt_crtc_name(crtc), data->range.min,
>> -         data->range.max);
>> -
>> -    for (i = 0; i < connector->count_modes; i++) {
>> -        if (is_cmrr_mode(&connector->modes[i])) {
>> -            mode = connector->modes[i];
>> -
>> -            found = true;
>> -            break;
>> -        }
>> -    }
>> -
>> -    igt_info("Selected mode: ");
>> -    kmstest_dump_mode(&mode);
>> -
>> -    if (!found) {
>> -        igt_info("No CMRR mode found on %s, try to tweak the 
>> clock.\n", output->name);
>> -
>> -        mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + 
>> VREFRESH_MODIFIER)) / 1000;
>> -
>> -        igt_info("Tweaked mode: ");
>> -        kmstest_dump_mode(&mode);
>> -    }
>> -
>> -    igt_output_override_mode(output, &mode);
>> -
>> -    if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
>> -        prepare_test(data, output,
>> -                 crtc);
>> -        result = flip_and_measure_cmrr(data, output, 
>> TEST_DURATION_NS * 2);
>> -        igt_assert_f(result > 75,
>> -                 "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on 
>> threshold not reached, result was %u%%\n",
>> -                 mode.vrefresh, 
>> igt_kms_frame_time_from_vrefresh(mode.vrefresh),
>> -                 result);
>> -    }
>> -}
>> -
>>   static void test_cleanup(data_t *data, igt_crtc_t *crtc, 
>> igt_output_t *output)
>>   {
>>       igt_crtc_set_prop_value(crtc,
>> @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, 
>> igt_crtc_t *crtc, igt_output_t *output)
>>   static bool output_constraint(data_t *data, igt_output_t *output, 
>> uint32_t flags)
>>   {
>>   -    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | 
>> TEST_CMRR)) &&
>> +    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
>>           output->config.connector->connector_type != 
>> DRM_MODE_CONNECTOR_eDP) {
>>           igt_info("%s: Connected panel is not eDP.\n", 
>> igt_output_name(output));
>>           return false;
>> @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, 
>> opt_handler, &data)
>>           igt_subtest_with_dynamic("seamless-rr-switch-virtual")
>>               run_vrr_test(&data, test_seamless_virtual_rr_basic, 
>> TEST_SEAMLESS_VIRTUAL_RR);
>>   -        igt_describe("Test to validate the content rate exactly 
>> matches with the "
>> -                 "requested rate without any frame drops.");
>> -        igt_subtest_with_dynamic("cmrr") {
>> - igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 
>> 20);
>> -
>> -            run_vrr_test(&data, test_cmrr, TEST_CMRR);
>> -        }
>> -
>>           igt_describe("Test to validate the link-off between active 
>> frames in "
>>                    "non-PSR operation.");
>>           igt_subtest_with_dynamic("lobf") {

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

* Re: [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-14 13:41   ` Naladala, Ramanaidu
@ 2026-04-14 16:54     ` Kamil Konieczny
  2026-04-15 13:23     ` Kamil Konieczny
  1 sibling, 0 replies; 19+ messages in thread
From: Kamil Konieczny @ 2026-04-14 16:54 UTC (permalink / raw)
  To: Naladala, Ramanaidu
  Cc: Sharma, Swati2, igt-dev, karthik.b.s, mitulkumar.ajitkumar.golani,
	ankit.k.nautiyal, Kamil Konieczny

Hi Naladala,
On 2026-04-14 at 19:11:33 +0530, Naladala, Ramanaidu wrote:
> Hi Swati,
> 
> On 4/13/2026 8:51 PM, Sharma, Swati2 wrote:
> > Hi Ramanaidu,
> > 
> > Shouldn't we revert 7f0a262891b7888a09e4a1838eb688ad9c676324 ?
> Recent patches caused the revert to fail, so a new patch has been submitted.
> > 
> > commit 7f0a262891b7888a09e4a1838eb688ad9c676324
> > Author: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> > Date:   Tue Jun 18 13:12:25 2024 +0530
> > 
> >     tests/kms_vrr: New subtest for CMRR
> > 
> > ++Kamil
> > 
> > On 11-04-2026 11:29 pm, Naladala Ramanaidu wrote:
> > > Remove the CMRR subtest due to a change in test approach requiring
> > > a complete rewrite. The subtest will be reintroduced in a future
> > > patch with a revised test methodology.

If that is a case imho you could still add a comment about
reverting changes introduced by commit, after above explanation
add:

This reverts commit 7f0a262891b7 ("tests/kms_vrr: New subtest for CMRR")

Regards,
Kamil

> > > 
> > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> > > ---
> > >   tests/kms_vrr.c | 132 +-----------------------------------------------
> > >   1 file changed, 1 insertion(+), 131 deletions(-)
> > > 
> > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
> > > index ec0692b2f..01f078d2c 100644
> > > --- a/tests/kms_vrr.c
> > > +++ b/tests/kms_vrr.c
> > > @@ -36,10 +36,6 @@
> > >   #include <signal.h>
> > >     /**
> > > - * SUBTEST: cmrr
> > > - * Description: Test to validate the content rate to exactly match
> > > with the
> > > - *         requested rate without any frame drops.
> > > - *
> > >    * SUBTEST: flip-basic
> > >    * Description: Tests that VRR is enabled and that the difference
> > > between flip
> > >    *              timestamps converges to the requested rate
> > > @@ -90,9 +86,6 @@
> > >    */
> > >   #define TEST_DURATION_NS (5000000000ull)
> > >   -#define CMRR_PRECISION_TOLERANCE    10
> > > -#define VREFRESH_MODIFIER    0.1
> > > -
> > >   enum {
> > >       TEST_BASIC = 1 << 0,
> > >       TEST_DPMS = 1 << 1,
> > > @@ -103,7 +96,6 @@ enum {
> > >       TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
> > >       TEST_FASTSET = 1 << 7,
> > >       TEST_MAXMIN = 1 << 8,
> > > -    TEST_CMRR = 1 << 9,
> > >       TEST_LINK_OFF = 1 << 10,
> > >       TEST_NEGATIVE = 1 << 11,
> > >       TEST_FORCE_RR = 1 << 12,
> > > @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo
> > > *mode, float virtual_refresh_rate)
> > >       mode->vrefresh = virtual_refresh_rate;
> > >   }
> > >   -static bool
> > > -is_cmrr_mode(drmModeModeInfoPtr mode)
> > > -{
> > > -    int calculated_refresh, actual_refresh, pixel_clock_per_line;
> > > -
> > > -    actual_refresh = mode->vrefresh * 100;
> > > -    pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
> > > -    calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
> > > -
> > > -    if ((actual_refresh - calculated_refresh) <
> > > CMRR_PRECISION_TOLERANCE)
> > > -        return false;
> > > -
> > > -    return true;
> > > -}
> > > -
> > >   /* Read min and max vrr range from the connector debugfs. */
> > >   static range_t
> > >   get_vrr_range(data_t *data, igt_output_t *output)
> > > @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t
> > > *output,
> > >       return 0;
> > >   }
> > >   -static uint32_t
> > > -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
> > > -              uint64_t duration_ns)
> > > -{
> > > -    uint64_t start_ns, last_event_ns, event_ns;
> > > -    uint32_t total_flip = 0, total_pass = 0;
> > > -    bool front = false;
> > > -    drmModeModeInfoPtr mode = igt_output_get_mode(output);
> > > -    uint64_t req_rate_ns =
> > > igt_kms_frame_time_from_vrefresh(mode->vrefresh +
> > > VREFRESH_MODIFIER);
> > > -    uint64_t exp_rate_ns =
> > > igt_kms_frame_time_from_vrefresh(mode->vrefresh);
> > > -    uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1
> > > scan line. */
> > > -
> > > -    igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
> > > -         "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
> > > -         req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
> > > -         (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
> > > -         (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
> > > -         (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
> > > -
> > > -    do_flip(data, &data->fb[0]);
> > > -    start_ns = last_event_ns = get_kernel_event_ns(data,
> > > DRM_EVENT_FLIP_COMPLETE);
> > > -    do {
> > > -        int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
> > > -
> > > -        front = !front;
> > > -        do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> > > -
> > > -        event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> > > -        igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
> > > -              event_ns - last_event_ns, (float)NSECS_PER_SEC /
> > > (event_ns - last_event_ns));
> > > -
> > > -        diff_ns -= event_ns - last_event_ns;
> > > -        if (llabs(diff_ns) <= threshold_ns)
> > > -            total_pass += 1;
> > > -
> > > -        last_event_ns = event_ns;
> > > -        total_flip += 1;
> > > -
> > > -        diff_ns = event_ns - start_ns;
> > > -        wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) *
> > > req_rate_ns;
> > > -        wait_ns -= diff_ns;
> > > -        target_ns = event_ns + wait_ns;
> > > -        while (get_time_ns() < target_ns - 10);
> > > -    } while (event_ns - start_ns <= duration_ns);
> > > -
> > > -    igt_info("Completed %u flips, %u vblanks were in threshold for
> > > (%.2f Hz) %"PRIu64"ns.\n",
> > > -         total_flip, total_pass, (mode->vrefresh +
> > > VREFRESH_MODIFIER), req_rate_ns);
> > > -
> > > -    return total_flip ? ((total_pass * 100) / total_flip) : 0;
> > > -}
> > > -
> > >   /* Basic VRR flip functionality test - enable, measure, disable,
> > > measure */
> > >   static void
> > >   test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> > > @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc,
> > > igt_output_t *output,
> > >       igt_assert_f(lobf_enabled, "LOBF not enabled\n");
> > >   }
> > >   -static void
> > > -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> > > -      uint32_t flags)
> > > -{
> > > -    uint32_t result;
> > > -    int i;
> > > -    bool found = false;
> > > -    drmModeConnectorPtr connector = output->config.connector;
> > > -    drmModeModeInfo mode = *igt_output_get_mode(output);
> > > -
> > > -    igt_info("CMRR test execution on %s, PIPE_%s with VRR range:
> > > (%u-%u) Hz\n",
> > > -         output->name, igt_crtc_name(crtc), data->range.min,
> > > -         data->range.max);
> > > -
> > > -    for (i = 0; i < connector->count_modes; i++) {
> > > -        if (is_cmrr_mode(&connector->modes[i])) {
> > > -            mode = connector->modes[i];
> > > -
> > > -            found = true;
> > > -            break;
> > > -        }
> > > -    }
> > > -
> > > -    igt_info("Selected mode: ");
> > > -    kmstest_dump_mode(&mode);
> > > -
> > > -    if (!found) {
> > > -        igt_info("No CMRR mode found on %s, try to tweak the
> > > clock.\n", output->name);
> > > -
> > > -        mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh +
> > > VREFRESH_MODIFIER)) / 1000;
> > > -
> > > -        igt_info("Tweaked mode: ");
> > > -        kmstest_dump_mode(&mode);
> > > -    }
> > > -
> > > -    igt_output_override_mode(output, &mode);
> > > -
> > > -    if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
> > > -        prepare_test(data, output,
> > > -                 crtc);
> > > -        result = flip_and_measure_cmrr(data, output,
> > > TEST_DURATION_NS * 2);
> > > -        igt_assert_f(result > 75,
> > > -                 "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on
> > > threshold not reached, result was %u%%\n",
> > > -                 mode.vrefresh,
> > > igt_kms_frame_time_from_vrefresh(mode.vrefresh),
> > > -                 result);
> > > -    }
> > > -}
> > > -
> > >   static void test_cleanup(data_t *data, igt_crtc_t *crtc,
> > > igt_output_t *output)
> > >   {
> > >       igt_crtc_set_prop_value(crtc,
> > > @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data,
> > > igt_crtc_t *crtc, igt_output_t *output)
> > >   static bool output_constraint(data_t *data, igt_output_t *output,
> > > uint32_t flags)
> > >   {
> > >   -    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS |
> > > TEST_CMRR)) &&
> > > +    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
> > >           output->config.connector->connector_type !=
> > > DRM_MODE_CONNECTOR_eDP) {
> > >           igt_info("%s: Connected panel is not eDP.\n",
> > > igt_output_name(output));
> > >           return false;
> > > @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts,
> > > help_str, opt_handler, &data)
> > >           igt_subtest_with_dynamic("seamless-rr-switch-virtual")
> > >               run_vrr_test(&data, test_seamless_virtual_rr_basic,
> > > TEST_SEAMLESS_VIRTUAL_RR);
> > >   -        igt_describe("Test to validate the content rate exactly
> > > matches with the "
> > > -                 "requested rate without any frame drops.");
> > > -        igt_subtest_with_dynamic("cmrr") {
> > > - igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >=
> > > 20);
> > > -
> > > -            run_vrr_test(&data, test_cmrr, TEST_CMRR);
> > > -        }
> > > -
> > >           igt_describe("Test to validate the link-off between active
> > > frames in "
> > >                    "non-PSR operation.");
> > >           igt_subtest_with_dynamic("lobf") {

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

* Re: [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-14 13:41   ` Naladala, Ramanaidu
  2026-04-14 16:54     ` Kamil Konieczny
@ 2026-04-15 13:23     ` Kamil Konieczny
  2026-04-15 14:51       ` Naladala, Ramanaidu
  1 sibling, 1 reply; 19+ messages in thread
From: Kamil Konieczny @ 2026-04-15 13:23 UTC (permalink / raw)
  To: Naladala, Ramanaidu
  Cc: Sharma, Swati2, igt-dev, karthik.b.s, mitulkumar.ajitkumar.golani,
	ankit.k.nautiyal, Kamil Konieczny

Hi Naladala,,
On 2026-04-14 at 19:11:33 +0530, Naladala, Ramanaidu wrote:
> Hi Swati,
> 
> On 4/13/2026 8:51 PM, Sharma, Swati2 wrote:
> > Hi Ramanaidu,
> > 
> > Shouldn't we revert 7f0a262891b7888a09e4a1838eb688ad9c676324 ?
> Recent patches caused the revert to fail, so a new patch has been submitted.

After second thinking imho just start a revert,
resolve conflicts with this change (overwrite a file with your
current one), write a description why we need it and resend.

So a subject whould look like:

[PATCH i-g-t v1] Revert "tests/kms_vrr: New subtest for CMRR"

And description will start with:

This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.

then add below a comment why it is needed.

That way it will be easy to spot in git log --oneline
that we did a revert here.

Regards,
Kamil

> > 
> > commit 7f0a262891b7888a09e4a1838eb688ad9c676324
> > Author: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> > Date:   Tue Jun 18 13:12:25 2024 +0530
> > 
> >     tests/kms_vrr: New subtest for CMRR
> > 
> > ++Kamil
> > 
> > On 11-04-2026 11:29 pm, Naladala Ramanaidu wrote:
> > > Remove the CMRR subtest due to a change in test approach requiring
> > > a complete rewrite. The subtest will be reintroduced in a future
> > > patch with a revised test methodology.
> > > 
> > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> > > ---
> > >   tests/kms_vrr.c | 132 +-----------------------------------------------
> > >   1 file changed, 1 insertion(+), 131 deletions(-)
> > > 
> > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
> > > index ec0692b2f..01f078d2c 100644
> > > --- a/tests/kms_vrr.c
> > > +++ b/tests/kms_vrr.c
> > > @@ -36,10 +36,6 @@
> > >   #include <signal.h>
> > >     /**
> > > - * SUBTEST: cmrr
> > > - * Description: Test to validate the content rate to exactly match
> > > with the
> > > - *         requested rate without any frame drops.
> > > - *
> > >    * SUBTEST: flip-basic
> > >    * Description: Tests that VRR is enabled and that the difference
> > > between flip
> > >    *              timestamps converges to the requested rate
> > > @@ -90,9 +86,6 @@
> > >    */
> > >   #define TEST_DURATION_NS (5000000000ull)
> > >   -#define CMRR_PRECISION_TOLERANCE    10
> > > -#define VREFRESH_MODIFIER    0.1
> > > -
> > >   enum {
> > >       TEST_BASIC = 1 << 0,
> > >       TEST_DPMS = 1 << 1,
> > > @@ -103,7 +96,6 @@ enum {
> > >       TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
> > >       TEST_FASTSET = 1 << 7,
> > >       TEST_MAXMIN = 1 << 8,
> > > -    TEST_CMRR = 1 << 9,
> > >       TEST_LINK_OFF = 1 << 10,
> > >       TEST_NEGATIVE = 1 << 11,
> > >       TEST_FORCE_RR = 1 << 12,
> > > @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo
> > > *mode, float virtual_refresh_rate)
> > >       mode->vrefresh = virtual_refresh_rate;
> > >   }
> > >   -static bool
> > > -is_cmrr_mode(drmModeModeInfoPtr mode)
> > > -{
> > > -    int calculated_refresh, actual_refresh, pixel_clock_per_line;
> > > -
> > > -    actual_refresh = mode->vrefresh * 100;
> > > -    pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
> > > -    calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
> > > -
> > > -    if ((actual_refresh - calculated_refresh) <
> > > CMRR_PRECISION_TOLERANCE)
> > > -        return false;
> > > -
> > > -    return true;
> > > -}
> > > -
> > >   /* Read min and max vrr range from the connector debugfs. */
> > >   static range_t
> > >   get_vrr_range(data_t *data, igt_output_t *output)
> > > @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t
> > > *output,
> > >       return 0;
> > >   }
> > >   -static uint32_t
> > > -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
> > > -              uint64_t duration_ns)
> > > -{
> > > -    uint64_t start_ns, last_event_ns, event_ns;
> > > -    uint32_t total_flip = 0, total_pass = 0;
> > > -    bool front = false;
> > > -    drmModeModeInfoPtr mode = igt_output_get_mode(output);
> > > -    uint64_t req_rate_ns =
> > > igt_kms_frame_time_from_vrefresh(mode->vrefresh +
> > > VREFRESH_MODIFIER);
> > > -    uint64_t exp_rate_ns =
> > > igt_kms_frame_time_from_vrefresh(mode->vrefresh);
> > > -    uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1
> > > scan line. */
> > > -
> > > -    igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
> > > -         "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
> > > -         req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
> > > -         (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
> > > -         (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
> > > -         (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
> > > -
> > > -    do_flip(data, &data->fb[0]);
> > > -    start_ns = last_event_ns = get_kernel_event_ns(data,
> > > DRM_EVENT_FLIP_COMPLETE);
> > > -    do {
> > > -        int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
> > > -
> > > -        front = !front;
> > > -        do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> > > -
> > > -        event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> > > -        igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
> > > -              event_ns - last_event_ns, (float)NSECS_PER_SEC /
> > > (event_ns - last_event_ns));
> > > -
> > > -        diff_ns -= event_ns - last_event_ns;
> > > -        if (llabs(diff_ns) <= threshold_ns)
> > > -            total_pass += 1;
> > > -
> > > -        last_event_ns = event_ns;
> > > -        total_flip += 1;
> > > -
> > > -        diff_ns = event_ns - start_ns;
> > > -        wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) *
> > > req_rate_ns;
> > > -        wait_ns -= diff_ns;
> > > -        target_ns = event_ns + wait_ns;
> > > -        while (get_time_ns() < target_ns - 10);
> > > -    } while (event_ns - start_ns <= duration_ns);
> > > -
> > > -    igt_info("Completed %u flips, %u vblanks were in threshold for
> > > (%.2f Hz) %"PRIu64"ns.\n",
> > > -         total_flip, total_pass, (mode->vrefresh +
> > > VREFRESH_MODIFIER), req_rate_ns);
> > > -
> > > -    return total_flip ? ((total_pass * 100) / total_flip) : 0;
> > > -}
> > > -
> > >   /* Basic VRR flip functionality test - enable, measure, disable,
> > > measure */
> > >   static void
> > >   test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> > > @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc,
> > > igt_output_t *output,
> > >       igt_assert_f(lobf_enabled, "LOBF not enabled\n");
> > >   }
> > >   -static void
> > > -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> > > -      uint32_t flags)
> > > -{
> > > -    uint32_t result;
> > > -    int i;
> > > -    bool found = false;
> > > -    drmModeConnectorPtr connector = output->config.connector;
> > > -    drmModeModeInfo mode = *igt_output_get_mode(output);
> > > -
> > > -    igt_info("CMRR test execution on %s, PIPE_%s with VRR range:
> > > (%u-%u) Hz\n",
> > > -         output->name, igt_crtc_name(crtc), data->range.min,
> > > -         data->range.max);
> > > -
> > > -    for (i = 0; i < connector->count_modes; i++) {
> > > -        if (is_cmrr_mode(&connector->modes[i])) {
> > > -            mode = connector->modes[i];
> > > -
> > > -            found = true;
> > > -            break;
> > > -        }
> > > -    }
> > > -
> > > -    igt_info("Selected mode: ");
> > > -    kmstest_dump_mode(&mode);
> > > -
> > > -    if (!found) {
> > > -        igt_info("No CMRR mode found on %s, try to tweak the
> > > clock.\n", output->name);
> > > -
> > > -        mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh +
> > > VREFRESH_MODIFIER)) / 1000;
> > > -
> > > -        igt_info("Tweaked mode: ");
> > > -        kmstest_dump_mode(&mode);
> > > -    }
> > > -
> > > -    igt_output_override_mode(output, &mode);
> > > -
> > > -    if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
> > > -        prepare_test(data, output,
> > > -                 crtc);
> > > -        result = flip_and_measure_cmrr(data, output,
> > > TEST_DURATION_NS * 2);
> > > -        igt_assert_f(result > 75,
> > > -                 "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on
> > > threshold not reached, result was %u%%\n",
> > > -                 mode.vrefresh,
> > > igt_kms_frame_time_from_vrefresh(mode.vrefresh),
> > > -                 result);
> > > -    }
> > > -}
> > > -
> > >   static void test_cleanup(data_t *data, igt_crtc_t *crtc,
> > > igt_output_t *output)
> > >   {
> > >       igt_crtc_set_prop_value(crtc,
> > > @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data,
> > > igt_crtc_t *crtc, igt_output_t *output)
> > >   static bool output_constraint(data_t *data, igt_output_t *output,
> > > uint32_t flags)
> > >   {
> > >   -    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS |
> > > TEST_CMRR)) &&
> > > +    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
> > >           output->config.connector->connector_type !=
> > > DRM_MODE_CONNECTOR_eDP) {
> > >           igt_info("%s: Connected panel is not eDP.\n",
> > > igt_output_name(output));
> > >           return false;
> > > @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts,
> > > help_str, opt_handler, &data)
> > >           igt_subtest_with_dynamic("seamless-rr-switch-virtual")
> > >               run_vrr_test(&data, test_seamless_virtual_rr_basic,
> > > TEST_SEAMLESS_VIRTUAL_RR);
> > >   -        igt_describe("Test to validate the content rate exactly
> > > matches with the "
> > > -                 "requested rate without any frame drops.");
> > > -        igt_subtest_with_dynamic("cmrr") {
> > > - igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >=
> > > 20);
> > > -
> > > -            run_vrr_test(&data, test_cmrr, TEST_CMRR);
> > > -        }
> > > -
> > >           igt_describe("Test to validate the link-off between active
> > > frames in "
> > >                    "non-PSR operation.");
> > >           igt_subtest_with_dynamic("lobf") {

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

* Re: [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign
  2026-04-15 13:23     ` Kamil Konieczny
@ 2026-04-15 14:51       ` Naladala, Ramanaidu
  0 siblings, 0 replies; 19+ messages in thread
From: Naladala, Ramanaidu @ 2026-04-15 14:51 UTC (permalink / raw)
  To: Kamil Konieczny, Sharma, Swati2, igt-dev, karthik.b.s,
	mitulkumar.ajitkumar.golani, ankit.k.nautiyal, Kamil Konieczny

Hi Kamil,

On 4/15/2026 6:53 PM, Kamil Konieczny wrote:
> Hi Naladala,,
> On 2026-04-14 at 19:11:33 +0530, Naladala, Ramanaidu wrote:
>> Hi Swati,
>>
>> On 4/13/2026 8:51 PM, Sharma, Swati2 wrote:
>>> Hi Ramanaidu,
>>>
>>> Shouldn't we revert 7f0a262891b7888a09e4a1838eb688ad9c676324 ?
>> Recent patches caused the revert to fail, so a new patch has been submitted.
> After second thinking imho just start a revert,
> resolve conflicts with this change (overwrite a file with your
> current one), write a description why we need it and resend.
>
> So a subject whould look like:
>
> [PATCH i-g-t v1] Revert "tests/kms_vrr: New subtest for CMRR"
>
> And description will start with:
>
> This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.
>
> then add below a comment why it is needed.
>
> That way it will be easy to spot in git log --oneline
> that we did a revert here.
>
> Regards,
> Kamil

Sure. i will update the git subject and commit message.

Thanks & Regards,
Ramanaidu N.

>>> commit 7f0a262891b7888a09e4a1838eb688ad9c676324
>>> Author: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>>> Date:   Tue Jun 18 13:12:25 2024 +0530
>>>
>>>      tests/kms_vrr: New subtest for CMRR
>>>
>>> ++Kamil
>>>
>>> On 11-04-2026 11:29 pm, Naladala Ramanaidu wrote:
>>>> Remove the CMRR subtest due to a change in test approach requiring
>>>> a complete rewrite. The subtest will be reintroduced in a future
>>>> patch with a revised test methodology.
>>>>
>>>> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
>>>> ---
>>>>    tests/kms_vrr.c | 132 +-----------------------------------------------
>>>>    1 file changed, 1 insertion(+), 131 deletions(-)
>>>>
>>>> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
>>>> index ec0692b2f..01f078d2c 100644
>>>> --- a/tests/kms_vrr.c
>>>> +++ b/tests/kms_vrr.c
>>>> @@ -36,10 +36,6 @@
>>>>    #include <signal.h>
>>>>      /**
>>>> - * SUBTEST: cmrr
>>>> - * Description: Test to validate the content rate to exactly match
>>>> with the
>>>> - *         requested rate without any frame drops.
>>>> - *
>>>>     * SUBTEST: flip-basic
>>>>     * Description: Tests that VRR is enabled and that the difference
>>>> between flip
>>>>     *              timestamps converges to the requested rate
>>>> @@ -90,9 +86,6 @@
>>>>     */
>>>>    #define TEST_DURATION_NS (5000000000ull)
>>>>    -#define CMRR_PRECISION_TOLERANCE    10
>>>> -#define VREFRESH_MODIFIER    0.1
>>>> -
>>>>    enum {
>>>>        TEST_BASIC = 1 << 0,
>>>>        TEST_DPMS = 1 << 1,
>>>> @@ -103,7 +96,6 @@ enum {
>>>>        TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
>>>>        TEST_FASTSET = 1 << 7,
>>>>        TEST_MAXMIN = 1 << 8,
>>>> -    TEST_CMRR = 1 << 9,
>>>>        TEST_LINK_OFF = 1 << 10,
>>>>        TEST_NEGATIVE = 1 << 11,
>>>>        TEST_FORCE_RR = 1 << 12,
>>>> @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo
>>>> *mode, float virtual_refresh_rate)
>>>>        mode->vrefresh = virtual_refresh_rate;
>>>>    }
>>>>    -static bool
>>>> -is_cmrr_mode(drmModeModeInfoPtr mode)
>>>> -{
>>>> -    int calculated_refresh, actual_refresh, pixel_clock_per_line;
>>>> -
>>>> -    actual_refresh = mode->vrefresh * 100;
>>>> -    pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
>>>> -    calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
>>>> -
>>>> -    if ((actual_refresh - calculated_refresh) <
>>>> CMRR_PRECISION_TOLERANCE)
>>>> -        return false;
>>>> -
>>>> -    return true;
>>>> -}
>>>> -
>>>>    /* Read min and max vrr range from the connector debugfs. */
>>>>    static range_t
>>>>    get_vrr_range(data_t *data, igt_output_t *output)
>>>> @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t
>>>> *output,
>>>>        return 0;
>>>>    }
>>>>    -static uint32_t
>>>> -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
>>>> -              uint64_t duration_ns)
>>>> -{
>>>> -    uint64_t start_ns, last_event_ns, event_ns;
>>>> -    uint32_t total_flip = 0, total_pass = 0;
>>>> -    bool front = false;
>>>> -    drmModeModeInfoPtr mode = igt_output_get_mode(output);
>>>> -    uint64_t req_rate_ns =
>>>> igt_kms_frame_time_from_vrefresh(mode->vrefresh +
>>>> VREFRESH_MODIFIER);
>>>> -    uint64_t exp_rate_ns =
>>>> igt_kms_frame_time_from_vrefresh(mode->vrefresh);
>>>> -    uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1
>>>> scan line. */
>>>> -
>>>> -    igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
>>>> -         "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
>>>> -         req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
>>>> -         (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
>>>> -         (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
>>>> -         (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
>>>> -
>>>> -    do_flip(data, &data->fb[0]);
>>>> -    start_ns = last_event_ns = get_kernel_event_ns(data,
>>>> DRM_EVENT_FLIP_COMPLETE);
>>>> -    do {
>>>> -        int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
>>>> -
>>>> -        front = !front;
>>>> -        do_flip(data, front ? &data->fb[1] : &data->fb[0]);
>>>> -
>>>> -        event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
>>>> -        igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
>>>> -              event_ns - last_event_ns, (float)NSECS_PER_SEC /
>>>> (event_ns - last_event_ns));
>>>> -
>>>> -        diff_ns -= event_ns - last_event_ns;
>>>> -        if (llabs(diff_ns) <= threshold_ns)
>>>> -            total_pass += 1;
>>>> -
>>>> -        last_event_ns = event_ns;
>>>> -        total_flip += 1;
>>>> -
>>>> -        diff_ns = event_ns - start_ns;
>>>> -        wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) *
>>>> req_rate_ns;
>>>> -        wait_ns -= diff_ns;
>>>> -        target_ns = event_ns + wait_ns;
>>>> -        while (get_time_ns() < target_ns - 10);
>>>> -    } while (event_ns - start_ns <= duration_ns);
>>>> -
>>>> -    igt_info("Completed %u flips, %u vblanks were in threshold for
>>>> (%.2f Hz) %"PRIu64"ns.\n",
>>>> -         total_flip, total_pass, (mode->vrefresh +
>>>> VREFRESH_MODIFIER), req_rate_ns);
>>>> -
>>>> -    return total_flip ? ((total_pass * 100) / total_flip) : 0;
>>>> -}
>>>> -
>>>>    /* Basic VRR flip functionality test - enable, measure, disable,
>>>> measure */
>>>>    static void
>>>>    test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>>>> @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc,
>>>> igt_output_t *output,
>>>>        igt_assert_f(lobf_enabled, "LOBF not enabled\n");
>>>>    }
>>>>    -static void
>>>> -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>>>> -      uint32_t flags)
>>>> -{
>>>> -    uint32_t result;
>>>> -    int i;
>>>> -    bool found = false;
>>>> -    drmModeConnectorPtr connector = output->config.connector;
>>>> -    drmModeModeInfo mode = *igt_output_get_mode(output);
>>>> -
>>>> -    igt_info("CMRR test execution on %s, PIPE_%s with VRR range:
>>>> (%u-%u) Hz\n",
>>>> -         output->name, igt_crtc_name(crtc), data->range.min,
>>>> -         data->range.max);
>>>> -
>>>> -    for (i = 0; i < connector->count_modes; i++) {
>>>> -        if (is_cmrr_mode(&connector->modes[i])) {
>>>> -            mode = connector->modes[i];
>>>> -
>>>> -            found = true;
>>>> -            break;
>>>> -        }
>>>> -    }
>>>> -
>>>> -    igt_info("Selected mode: ");
>>>> -    kmstest_dump_mode(&mode);
>>>> -
>>>> -    if (!found) {
>>>> -        igt_info("No CMRR mode found on %s, try to tweak the
>>>> clock.\n", output->name);
>>>> -
>>>> -        mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh +
>>>> VREFRESH_MODIFIER)) / 1000;
>>>> -
>>>> -        igt_info("Tweaked mode: ");
>>>> -        kmstest_dump_mode(&mode);
>>>> -    }
>>>> -
>>>> -    igt_output_override_mode(output, &mode);
>>>> -
>>>> -    if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
>>>> -        prepare_test(data, output,
>>>> -                 crtc);
>>>> -        result = flip_and_measure_cmrr(data, output,
>>>> TEST_DURATION_NS * 2);
>>>> -        igt_assert_f(result > 75,
>>>> -                 "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on
>>>> threshold not reached, result was %u%%\n",
>>>> -                 mode.vrefresh,
>>>> igt_kms_frame_time_from_vrefresh(mode.vrefresh),
>>>> -                 result);
>>>> -    }
>>>> -}
>>>> -
>>>>    static void test_cleanup(data_t *data, igt_crtc_t *crtc,
>>>> igt_output_t *output)
>>>>    {
>>>>        igt_crtc_set_prop_value(crtc,
>>>> @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data,
>>>> igt_crtc_t *crtc, igt_output_t *output)
>>>>    static bool output_constraint(data_t *data, igt_output_t *output,
>>>> uint32_t flags)
>>>>    {
>>>>    -    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS |
>>>> TEST_CMRR)) &&
>>>> +    if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
>>>>            output->config.connector->connector_type !=
>>>> DRM_MODE_CONNECTOR_eDP) {
>>>>            igt_info("%s: Connected panel is not eDP.\n",
>>>> igt_output_name(output));
>>>>            return false;
>>>> @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts,
>>>> help_str, opt_handler, &data)
>>>>            igt_subtest_with_dynamic("seamless-rr-switch-virtual")
>>>>                run_vrr_test(&data, test_seamless_virtual_rr_basic,
>>>> TEST_SEAMLESS_VIRTUAL_RR);
>>>>    -        igt_describe("Test to validate the content rate exactly
>>>> matches with the "
>>>> -                 "requested rate without any frame drops.");
>>>> -        igt_subtest_with_dynamic("cmrr") {
>>>> - igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >=
>>>> 20);
>>>> -
>>>> -            run_vrr_test(&data, test_cmrr, TEST_CMRR);
>>>> -        }
>>>> -
>>>>            igt_describe("Test to validate the link-off between active
>>>> frames in "
>>>>                     "non-PSR operation.");
>>>>            igt_subtest_with_dynamic("lobf") {

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

* [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR"
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (4 preceding siblings ...)
  2026-04-13 15:21 ` [PATCH i-g-t v1] " Sharma, Swati2
@ 2026-04-17  5:36 ` Naladala Ramanaidu
  2026-04-17  6:03   ` Sharma, Swati2
  2026-04-17  7:42   ` [PATCH i-g-t v3] " Naladala Ramanaidu
  2026-04-21 10:31 ` ✗ i915.CI.BAT: failure for tests/kms_vrr: Drop cmrr subtest for redesign (rev3) Patchwork
                   ` (4 subsequent siblings)
  10 siblings, 2 replies; 19+ messages in thread
From: Naladala Ramanaidu @ 2026-04-17  5:36 UTC (permalink / raw)
  To: igt-dev; +Cc: kamil.konieczny, swati2.sharma, Naladala Ramanaidu

This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.

Remove the CMRR subtest due to a change in test approach requiring
a complete rewrite. The subtest will be reintroduced in a future
patch with a revised test methodology.

rev2: Update the git subject and commit message. (Kamil)

Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
---
 tests/kms_vrr.c | 132 +-----------------------------------------------
 1 file changed, 1 insertion(+), 131 deletions(-)

diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index ec0692b2f..01f078d2c 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -36,10 +36,6 @@
 #include <signal.h>
 
 /**
- * SUBTEST: cmrr
- * Description: Test to validate the content rate to exactly match with the
- * 		requested rate without any frame drops.
- *
  * SUBTEST: flip-basic
  * Description: Tests that VRR is enabled and that the difference between flip
  *              timestamps converges to the requested rate
@@ -90,9 +86,6 @@
  */
 #define TEST_DURATION_NS (5000000000ull)
 
-#define CMRR_PRECISION_TOLERANCE	10
-#define VREFRESH_MODIFIER	0.1
-
 enum {
 	TEST_BASIC = 1 << 0,
 	TEST_DPMS = 1 << 1,
@@ -103,7 +96,6 @@ enum {
 	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
 	TEST_FASTSET = 1 << 7,
 	TEST_MAXMIN = 1 << 8,
-	TEST_CMRR = 1 << 9,
 	TEST_LINK_OFF = 1 << 10,
 	TEST_NEGATIVE = 1 << 11,
 	TEST_FORCE_RR = 1 << 12,
@@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
 	mode->vrefresh = virtual_refresh_rate;
 }
 
-static bool
-is_cmrr_mode(drmModeModeInfoPtr mode)
-{
-	int calculated_refresh, actual_refresh, pixel_clock_per_line;
-
-	actual_refresh = mode->vrefresh * 100;
-	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
-	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
-
-	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
-		return false;
-
-	return true;
-}
-
 /* Read min and max vrr range from the connector debugfs. */
 static range_t
 get_vrr_range(data_t *data, igt_output_t *output)
@@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
 	return 0;
 }
 
-static uint32_t
-flip_and_measure_cmrr(data_t *data, igt_output_t *output,
-		      uint64_t duration_ns)
-{
-	uint64_t start_ns, last_event_ns, event_ns;
-	uint32_t total_flip = 0, total_pass = 0;
-	bool front = false;
-	drmModeModeInfoPtr mode = igt_output_get_mode(output);
-	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
-	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
-	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
-
-	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
-		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
-		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
-		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
-
-	do_flip(data, &data->fb[0]);
-	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-	do {
-		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
-
-		front = !front;
-		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
-
-		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
-			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
-
-		diff_ns -= event_ns - last_event_ns;
-		if (llabs(diff_ns) <= threshold_ns)
-			total_pass += 1;
-
-		last_event_ns = event_ns;
-		total_flip += 1;
-
-		diff_ns = event_ns - start_ns;
-		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
-		wait_ns -= diff_ns;
-		target_ns = event_ns + wait_ns;
-		while (get_time_ns() < target_ns - 10);
-	} while (event_ns - start_ns <= duration_ns);
-
-	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
-		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
-
-	return total_flip ? ((total_pass * 100) / total_flip) : 0;
-}
-
 /* Basic VRR flip functionality test - enable, measure, disable, measure */
 static void
 test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
@@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
 	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
 }
 
-static void
-test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
-	  uint32_t flags)
-{
-	uint32_t result;
-	int i;
-	bool found = false;
-	drmModeConnectorPtr connector = output->config.connector;
-	drmModeModeInfo mode = *igt_output_get_mode(output);
-
-	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
-		 output->name, igt_crtc_name(crtc), data->range.min,
-		 data->range.max);
-
-	for (i = 0; i < connector->count_modes; i++) {
-		if (is_cmrr_mode(&connector->modes[i])) {
-			mode = connector->modes[i];
-
-			found = true;
-			break;
-		}
-	}
-
-	igt_info("Selected mode: ");
-	kmstest_dump_mode(&mode);
-
-	if (!found) {
-		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
-
-		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
-
-		igt_info("Tweaked mode: ");
-		kmstest_dump_mode(&mode);
-	}
-
-	igt_output_override_mode(output, &mode);
-
-	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
-		prepare_test(data, output,
-			     crtc);
-		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
-		igt_assert_f(result > 75,
-			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
-			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
-			     result);
-	}
-}
-
 static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 {
 	igt_crtc_set_prop_value(crtc,
@@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
 {
 
-	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
+	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
 	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
 		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
 		return false;
@@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
 		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
 			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
 
-		igt_describe("Test to validate the content rate exactly matches with the "
-			     "requested rate without any frame drops.");
-		igt_subtest_with_dynamic("cmrr") {
-			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
-
-			run_vrr_test(&data, test_cmrr, TEST_CMRR);
-		}
-
 		igt_describe("Test to validate the link-off between active frames in "
 			     "non-PSR operation.");
 		igt_subtest_with_dynamic("lobf") {
-- 
2.43.0


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

* Re: [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR"
  2026-04-17  5:36 ` [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR" Naladala Ramanaidu
@ 2026-04-17  6:03   ` Sharma, Swati2
  2026-04-17  7:42   ` [PATCH i-g-t v3] " Naladala Ramanaidu
  1 sibling, 0 replies; 19+ messages in thread
From: Sharma, Swati2 @ 2026-04-17  6:03 UTC (permalink / raw)
  To: Naladala Ramanaidu, igt-dev; +Cc: kamil.konieczny

Hi Ramanaidu,

In the subject please remove tests/kms_vrr. Subj should be

Revert "tests/kms_vrr: New subtest for CMRR"

On 17-04-2026 11:06 am, Naladala Ramanaidu wrote:
> This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.
>
> Remove the CMRR subtest due to a change in test approach requiring
> a complete rewrite. The subtest will be reintroduced in a future
> patch with a revised test methodology.
>
> rev2: Update the git subject and commit message. (Kamil)

Also, lets keep versioning as v2 instead of rev2

With these 2 things fixed

Patch LGTM

Reviewed-by: Swati Sharma <swati2.sharma@intel.com>

Please get an ack from Kamil too.

>
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> ---
>   tests/kms_vrr.c | 132 +-----------------------------------------------
>   1 file changed, 1 insertion(+), 131 deletions(-)
>
> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
> index ec0692b2f..01f078d2c 100644
> --- a/tests/kms_vrr.c
> +++ b/tests/kms_vrr.c
> @@ -36,10 +36,6 @@
>   #include <signal.h>
>   
>   /**
> - * SUBTEST: cmrr
> - * Description: Test to validate the content rate to exactly match with the
> - * 		requested rate without any frame drops.
> - *
>    * SUBTEST: flip-basic
>    * Description: Tests that VRR is enabled and that the difference between flip
>    *              timestamps converges to the requested rate
> @@ -90,9 +86,6 @@
>    */
>   #define TEST_DURATION_NS (5000000000ull)
>   
> -#define CMRR_PRECISION_TOLERANCE	10
> -#define VREFRESH_MODIFIER	0.1
> -
>   enum {
>   	TEST_BASIC = 1 << 0,
>   	TEST_DPMS = 1 << 1,
> @@ -103,7 +96,6 @@ enum {
>   	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
>   	TEST_FASTSET = 1 << 7,
>   	TEST_MAXMIN = 1 << 8,
> -	TEST_CMRR = 1 << 9,
>   	TEST_LINK_OFF = 1 << 10,
>   	TEST_NEGATIVE = 1 << 11,
>   	TEST_FORCE_RR = 1 << 12,
> @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
>   	mode->vrefresh = virtual_refresh_rate;
>   }
>   
> -static bool
> -is_cmrr_mode(drmModeModeInfoPtr mode)
> -{
> -	int calculated_refresh, actual_refresh, pixel_clock_per_line;
> -
> -	actual_refresh = mode->vrefresh * 100;
> -	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
> -	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
> -
> -	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
> -		return false;
> -
> -	return true;
> -}
> -
>   /* Read min and max vrr range from the connector debugfs. */
>   static range_t
>   get_vrr_range(data_t *data, igt_output_t *output)
> @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
>   	return 0;
>   }
>   
> -static uint32_t
> -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
> -		      uint64_t duration_ns)
> -{
> -	uint64_t start_ns, last_event_ns, event_ns;
> -	uint32_t total_flip = 0, total_pass = 0;
> -	bool front = false;
> -	drmModeModeInfoPtr mode = igt_output_get_mode(output);
> -	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
> -	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
> -	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
> -
> -	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
> -		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
> -		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
> -		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
> -
> -	do_flip(data, &data->fb[0]);
> -	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -	do {
> -		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
> -
> -		front = !front;
> -		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> -
> -		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
> -			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
> -
> -		diff_ns -= event_ns - last_event_ns;
> -		if (llabs(diff_ns) <= threshold_ns)
> -			total_pass += 1;
> -
> -		last_event_ns = event_ns;
> -		total_flip += 1;
> -
> -		diff_ns = event_ns - start_ns;
> -		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
> -		wait_ns -= diff_ns;
> -		target_ns = event_ns + wait_ns;
> -		while (get_time_ns() < target_ns - 10);
> -	} while (event_ns - start_ns <= duration_ns);
> -
> -	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
> -		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
> -
> -	return total_flip ? ((total_pass * 100) / total_flip) : 0;
> -}
> -
>   /* Basic VRR flip functionality test - enable, measure, disable, measure */
>   static void
>   test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>   	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
>   }
>   
> -static void
> -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> -	  uint32_t flags)
> -{
> -	uint32_t result;
> -	int i;
> -	bool found = false;
> -	drmModeConnectorPtr connector = output->config.connector;
> -	drmModeModeInfo mode = *igt_output_get_mode(output);
> -
> -	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
> -		 output->name, igt_crtc_name(crtc), data->range.min,
> -		 data->range.max);
> -
> -	for (i = 0; i < connector->count_modes; i++) {
> -		if (is_cmrr_mode(&connector->modes[i])) {
> -			mode = connector->modes[i];
> -
> -			found = true;
> -			break;
> -		}
> -	}
> -
> -	igt_info("Selected mode: ");
> -	kmstest_dump_mode(&mode);
> -
> -	if (!found) {
> -		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
> -
> -		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
> -
> -		igt_info("Tweaked mode: ");
> -		kmstest_dump_mode(&mode);
> -	}
> -
> -	igt_output_override_mode(output, &mode);
> -
> -	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
> -		prepare_test(data, output,
> -			     crtc);
> -		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
> -		igt_assert_f(result > 75,
> -			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
> -			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
> -			     result);
> -	}
> -}
> -
>   static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>   {
>   	igt_crtc_set_prop_value(crtc,
> @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>   static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
>   {
>   
> -	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
> +	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
>   	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
>   		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
>   		return false;
> @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
>   		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
>   			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
>   
> -		igt_describe("Test to validate the content rate exactly matches with the "
> -			     "requested rate without any frame drops.");
> -		igt_subtest_with_dynamic("cmrr") {
> -			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
> -
> -			run_vrr_test(&data, test_cmrr, TEST_CMRR);
> -		}
> -
>   		igt_describe("Test to validate the link-off between active frames in "
>   			     "non-PSR operation.");
>   		igt_subtest_with_dynamic("lobf") {

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

* [PATCH i-g-t v3] Revert "tests/kms_vrr: New subtest for CMRR"
  2026-04-17  5:36 ` [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR" Naladala Ramanaidu
  2026-04-17  6:03   ` Sharma, Swati2
@ 2026-04-17  7:42   ` Naladala Ramanaidu
  2026-04-17  9:41     ` Kamil Konieczny
  1 sibling, 1 reply; 19+ messages in thread
From: Naladala Ramanaidu @ 2026-04-17  7:42 UTC (permalink / raw)
  To: igt-dev; +Cc: swati2.sharma, kamil.konieczny, Naladala Ramanaidu

This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.

Remove the CMRR subtest due to a change in test approach requiring
a complete rewrite. The subtest will be reintroduced in a future
patch with a revised test methodology.

v2: Update the git subject and commit message. (Kamil)
v3: Address review comments. (Swati)

Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_vrr.c | 132 +-----------------------------------------------
 1 file changed, 1 insertion(+), 131 deletions(-)

diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index ec0692b2f..01f078d2c 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -36,10 +36,6 @@
 #include <signal.h>
 
 /**
- * SUBTEST: cmrr
- * Description: Test to validate the content rate to exactly match with the
- * 		requested rate without any frame drops.
- *
  * SUBTEST: flip-basic
  * Description: Tests that VRR is enabled and that the difference between flip
  *              timestamps converges to the requested rate
@@ -90,9 +86,6 @@
  */
 #define TEST_DURATION_NS (5000000000ull)
 
-#define CMRR_PRECISION_TOLERANCE	10
-#define VREFRESH_MODIFIER	0.1
-
 enum {
 	TEST_BASIC = 1 << 0,
 	TEST_DPMS = 1 << 1,
@@ -103,7 +96,6 @@ enum {
 	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
 	TEST_FASTSET = 1 << 7,
 	TEST_MAXMIN = 1 << 8,
-	TEST_CMRR = 1 << 9,
 	TEST_LINK_OFF = 1 << 10,
 	TEST_NEGATIVE = 1 << 11,
 	TEST_FORCE_RR = 1 << 12,
@@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
 	mode->vrefresh = virtual_refresh_rate;
 }
 
-static bool
-is_cmrr_mode(drmModeModeInfoPtr mode)
-{
-	int calculated_refresh, actual_refresh, pixel_clock_per_line;
-
-	actual_refresh = mode->vrefresh * 100;
-	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
-	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
-
-	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
-		return false;
-
-	return true;
-}
-
 /* Read min and max vrr range from the connector debugfs. */
 static range_t
 get_vrr_range(data_t *data, igt_output_t *output)
@@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
 	return 0;
 }
 
-static uint32_t
-flip_and_measure_cmrr(data_t *data, igt_output_t *output,
-		      uint64_t duration_ns)
-{
-	uint64_t start_ns, last_event_ns, event_ns;
-	uint32_t total_flip = 0, total_pass = 0;
-	bool front = false;
-	drmModeModeInfoPtr mode = igt_output_get_mode(output);
-	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
-	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
-	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
-
-	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
-		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
-		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
-		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
-		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
-
-	do_flip(data, &data->fb[0]);
-	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-	do {
-		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
-
-		front = !front;
-		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
-
-		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
-		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
-			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
-
-		diff_ns -= event_ns - last_event_ns;
-		if (llabs(diff_ns) <= threshold_ns)
-			total_pass += 1;
-
-		last_event_ns = event_ns;
-		total_flip += 1;
-
-		diff_ns = event_ns - start_ns;
-		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
-		wait_ns -= diff_ns;
-		target_ns = event_ns + wait_ns;
-		while (get_time_ns() < target_ns - 10);
-	} while (event_ns - start_ns <= duration_ns);
-
-	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
-		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
-
-	return total_flip ? ((total_pass * 100) / total_flip) : 0;
-}
-
 /* Basic VRR flip functionality test - enable, measure, disable, measure */
 static void
 test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
@@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
 	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
 }
 
-static void
-test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
-	  uint32_t flags)
-{
-	uint32_t result;
-	int i;
-	bool found = false;
-	drmModeConnectorPtr connector = output->config.connector;
-	drmModeModeInfo mode = *igt_output_get_mode(output);
-
-	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
-		 output->name, igt_crtc_name(crtc), data->range.min,
-		 data->range.max);
-
-	for (i = 0; i < connector->count_modes; i++) {
-		if (is_cmrr_mode(&connector->modes[i])) {
-			mode = connector->modes[i];
-
-			found = true;
-			break;
-		}
-	}
-
-	igt_info("Selected mode: ");
-	kmstest_dump_mode(&mode);
-
-	if (!found) {
-		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
-
-		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
-
-		igt_info("Tweaked mode: ");
-		kmstest_dump_mode(&mode);
-	}
-
-	igt_output_override_mode(output, &mode);
-
-	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
-		prepare_test(data, output,
-			     crtc);
-		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
-		igt_assert_f(result > 75,
-			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
-			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
-			     result);
-	}
-}
-
 static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 {
 	igt_crtc_set_prop_value(crtc,
@@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
 static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
 {
 
-	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
+	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
 	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
 		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
 		return false;
@@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
 		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
 			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
 
-		igt_describe("Test to validate the content rate exactly matches with the "
-			     "requested rate without any frame drops.");
-		igt_subtest_with_dynamic("cmrr") {
-			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
-
-			run_vrr_test(&data, test_cmrr, TEST_CMRR);
-		}
-
 		igt_describe("Test to validate the link-off between active frames in "
 			     "non-PSR operation.");
 		igt_subtest_with_dynamic("lobf") {
-- 
2.43.0


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

* Re: [PATCH i-g-t v3] Revert "tests/kms_vrr: New subtest for CMRR"
  2026-04-17  7:42   ` [PATCH i-g-t v3] " Naladala Ramanaidu
@ 2026-04-17  9:41     ` Kamil Konieczny
  0 siblings, 0 replies; 19+ messages in thread
From: Kamil Konieczny @ 2026-04-17  9:41 UTC (permalink / raw)
  To: Naladala Ramanaidu; +Cc: igt-dev, swati2.sharma, kamil.konieczny

Hi Naladala,
On 2026-04-17 at 13:12:02 +0530, Naladala Ramanaidu wrote:
> This reverts commit 7f0a262891b7888a09e4a1838eb688ad9c676324.
> 
> Remove the CMRR subtest due to a change in test approach requiring
> a complete rewrite. The subtest will be reintroduced in a future
> patch with a revised test methodology.
> 
> v2: Update the git subject and commit message. (Kamil)
> v3: Address review comments. (Swati)
> 
> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com>
> Reviewed-by: Swati Sharma <swati2.sharma@intel.com>

LGTM
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

Regards,
Kamil

> ---
>  tests/kms_vrr.c | 132 +-----------------------------------------------
>  1 file changed, 1 insertion(+), 131 deletions(-)
> 
> diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
> index ec0692b2f..01f078d2c 100644
> --- a/tests/kms_vrr.c
> +++ b/tests/kms_vrr.c
> @@ -36,10 +36,6 @@
>  #include <signal.h>
>  
>  /**
> - * SUBTEST: cmrr
> - * Description: Test to validate the content rate to exactly match with the
> - * 		requested rate without any frame drops.
> - *
>   * SUBTEST: flip-basic
>   * Description: Tests that VRR is enabled and that the difference between flip
>   *              timestamps converges to the requested rate
> @@ -90,9 +86,6 @@
>   */
>  #define TEST_DURATION_NS (5000000000ull)
>  
> -#define CMRR_PRECISION_TOLERANCE	10
> -#define VREFRESH_MODIFIER	0.1
> -
>  enum {
>  	TEST_BASIC = 1 << 0,
>  	TEST_DPMS = 1 << 1,
> @@ -103,7 +96,6 @@ enum {
>  	TEST_SEAMLESS_VIRTUAL_RR = 1 << 6,
>  	TEST_FASTSET = 1 << 7,
>  	TEST_MAXMIN = 1 << 8,
> -	TEST_CMRR = 1 << 9,
>  	TEST_LINK_OFF = 1 << 10,
>  	TEST_NEGATIVE = 1 << 11,
>  	TEST_FORCE_RR = 1 << 12,
> @@ -252,21 +244,6 @@ virtual_rr_vrr_range_mode(drmModeModeInfo *mode, float virtual_refresh_rate)
>  	mode->vrefresh = virtual_refresh_rate;
>  }
>  
> -static bool
> -is_cmrr_mode(drmModeModeInfoPtr mode)
> -{
> -	int calculated_refresh, actual_refresh, pixel_clock_per_line;
> -
> -	actual_refresh = mode->vrefresh * 100;
> -	pixel_clock_per_line = mode->clock * 1000 / mode->htotal;
> -	calculated_refresh = pixel_clock_per_line * 100 / mode->vtotal;
> -
> -	if ((actual_refresh - calculated_refresh) < CMRR_PRECISION_TOLERANCE)
> -		return false;
> -
> -	return true;
> -}
> -
>  /* Read min and max vrr range from the connector debugfs. */
>  static range_t
>  get_vrr_range(data_t *data, igt_output_t *output)
> @@ -600,57 +577,6 @@ flip_and_measure(data_t *data, igt_output_t *output,
>  	return 0;
>  }
>  
> -static uint32_t
> -flip_and_measure_cmrr(data_t *data, igt_output_t *output,
> -		      uint64_t duration_ns)
> -{
> -	uint64_t start_ns, last_event_ns, event_ns;
> -	uint32_t total_flip = 0, total_pass = 0;
> -	bool front = false;
> -	drmModeModeInfoPtr mode = igt_output_get_mode(output);
> -	uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
> -	uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
> -	uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
> -
> -	igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
> -		 "expected rate: %"PRIu64" ns - %"PRIu64" ns (%.2f-%.2f Hz)\n",
> -		 req_rate_ns, (mode->vrefresh + VREFRESH_MODIFIER),
> -		 (exp_rate_ns - threshold_ns), (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns + threshold_ns),
> -		 (float)NSECS_PER_SEC / (exp_rate_ns - threshold_ns));
> -
> -	do_flip(data, &data->fb[0]);
> -	start_ns = last_event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -	do {
> -		int64_t target_ns, wait_ns, diff_ns = exp_rate_ns;
> -
> -		front = !front;
> -		do_flip(data, front ? &data->fb[1] : &data->fb[0]);
> -
> -		event_ns = get_kernel_event_ns(data, DRM_EVENT_FLIP_COMPLETE);
> -		igt_debug("event_ns - last_event_ns: %"PRIu64" ns (%.2f Hz)\n",
> -			  event_ns - last_event_ns, (float)NSECS_PER_SEC / (event_ns - last_event_ns));
> -
> -		diff_ns -= event_ns - last_event_ns;
> -		if (llabs(diff_ns) <= threshold_ns)
> -			total_pass += 1;
> -
> -		last_event_ns = event_ns;
> -		total_flip += 1;
> -
> -		diff_ns = event_ns - start_ns;
> -		wait_ns = ((diff_ns + req_rate_ns - 1) / req_rate_ns) * req_rate_ns;
> -		wait_ns -= diff_ns;
> -		target_ns = event_ns + wait_ns;
> -		while (get_time_ns() < target_ns - 10);
> -	} while (event_ns - start_ns <= duration_ns);
> -
> -	igt_info("Completed %u flips, %u vblanks were in threshold for (%.2f Hz) %"PRIu64"ns.\n",
> -		 total_flip, total_pass, (mode->vrefresh + VREFRESH_MODIFIER), req_rate_ns);
> -
> -	return total_flip ? ((total_pass * 100) / total_flip) : 0;
> -}
> -
>  /* Basic VRR flip functionality test - enable, measure, disable, measure */
>  static void
>  test_basic(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> @@ -946,54 +872,6 @@ test_lobf(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
>  	igt_assert_f(lobf_enabled, "LOBF not enabled\n");
>  }
>  
> -static void
> -test_cmrr(data_t *data, igt_crtc_t *crtc, igt_output_t *output,
> -	  uint32_t flags)
> -{
> -	uint32_t result;
> -	int i;
> -	bool found = false;
> -	drmModeConnectorPtr connector = output->config.connector;
> -	drmModeModeInfo mode = *igt_output_get_mode(output);
> -
> -	igt_info("CMRR test execution on %s, PIPE_%s with VRR range: (%u-%u) Hz\n",
> -		 output->name, igt_crtc_name(crtc), data->range.min,
> -		 data->range.max);
> -
> -	for (i = 0; i < connector->count_modes; i++) {
> -		if (is_cmrr_mode(&connector->modes[i])) {
> -			mode = connector->modes[i];
> -
> -			found = true;
> -			break;
> -		}
> -	}
> -
> -	igt_info("Selected mode: ");
> -	kmstest_dump_mode(&mode);
> -
> -	if (!found) {
> -		igt_info("No CMRR mode found on %s, try to tweak the clock.\n", output->name);
> -
> -		mode.clock = (mode.htotal * mode.vtotal * (mode.vrefresh + VREFRESH_MODIFIER)) / 1000;
> -
> -		igt_info("Tweaked mode: ");
> -		kmstest_dump_mode(&mode);
> -	}
> -
> -	igt_output_override_mode(output, &mode);
> -
> -	if (!igt_display_try_commit2(&data->display, COMMIT_ATOMIC)) {
> -		prepare_test(data, output,
> -			     crtc);
> -		result = flip_and_measure_cmrr(data, output, TEST_DURATION_NS * 2);
> -		igt_assert_f(result > 75,
> -			     "Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
> -			     mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh),
> -			     result);
> -	}
> -}
> -
>  static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>  {
>  	igt_crtc_set_prop_value(crtc,
> @@ -1013,7 +891,7 @@ static void test_cleanup(data_t *data, igt_crtc_t *crtc, igt_output_t *output)
>  static bool output_constraint(data_t *data, igt_output_t *output, uint32_t flags)
>  {
>  
> -	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS | TEST_CMRR)) &&
> +	if ((flags & (TEST_SEAMLESS_VRR | TEST_SEAMLESS_DRRS)) &&
>  	    output->config.connector->connector_type != DRM_MODE_CONNECTOR_eDP) {
>  		igt_info("%s: Connected panel is not eDP.\n", igt_output_name(output));
>  		return false;
> @@ -1226,14 +1104,6 @@ int igt_main_args("drs:", long_opts, help_str, opt_handler, &data)
>  		igt_subtest_with_dynamic("seamless-rr-switch-virtual")
>  			run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR);
>  
> -		igt_describe("Test to validate the content rate exactly matches with the "
> -			     "requested rate without any frame drops.");
> -		igt_subtest_with_dynamic("cmrr") {
> -			igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20);
> -
> -			run_vrr_test(&data, test_cmrr, TEST_CMRR);
> -		}
> -
>  		igt_describe("Test to validate the link-off between active frames in "
>  			     "non-PSR operation.");
>  		igt_subtest_with_dynamic("lobf") {
> -- 
> 2.43.0
> 

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

* ✗ i915.CI.BAT: failure for tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (5 preceding siblings ...)
  2026-04-17  5:36 ` [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR" Naladala Ramanaidu
@ 2026-04-21 10:31 ` Patchwork
  2026-04-21 10:35 ` ✓ Xe.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-21 10:31 UTC (permalink / raw)
  To: Naladala, Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
URL   : https://patchwork.freedesktop.org/series/164742/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8865 -> IGTPW_15009
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (40 -> 40)
------------------------------

  Additional (1): bat-adls-6 
  Missing    (1): bat-dg2-13 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-6:         [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-arls-6/igt@i915_selftest@live@hangcheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests:
    - bat-adls-6:         NOTRUN -> [SKIP][3] ([i915#15931])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@dmabuf@all-tests.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-adls-6:         NOTRUN -> [SKIP][5] ([i915#15656])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-6:         [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-arls-6/igt@i915_selftest@live@workarounds.html

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

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

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#5354])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

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

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][15] ([i915#3291]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - fi-bsw-n3050:       [DMESG-FAIL][16] ([i915#14808]) -> [PASS][17] +1 other test pass
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_selftest@live.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/fi-bsw-n3050/igt@i915_selftest@live.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8865 -> IGTPW_15009

  CI-20190529: 20190529
  CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15009: 23df028ee797a07f5d8cae04b06b70b64a8ec0f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (6 preceding siblings ...)
  2026-04-21 10:31 ` ✗ i915.CI.BAT: failure for tests/kms_vrr: Drop cmrr subtest for redesign (rev3) Patchwork
@ 2026-04-21 10:35 ` Patchwork
  2026-04-21 11:39 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-21 10:35 UTC (permalink / raw)
  To: Naladala, Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8865_BAT -> XEIGTPW_15009_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 13)
------------------------------

  Additional (1): bat-ptl-vm 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_evict@evict-beng-small-cm:
    - bat-ptl-vm:         NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html

  * igt@xe_exec_balancer@twice-parallel-basic:
    - bat-ptl-vm:         NOTRUN -> [SKIP][2] ([Intel XE#7482]) +17 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-ptl-vm:         NOTRUN -> [SKIP][3] ([Intel XE#5775])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-ptl-vm:         NOTRUN -> [SKIP][4] ([Intel XE#5776])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-ptl-vm:         NOTRUN -> [SKIP][5] ([Intel XE#5777] / [Intel XE#7590])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-ptl-vm:         NOTRUN -> [SKIP][6] ([Intel XE#5771] / [Intel XE#7590])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-ptl-vm:         NOTRUN -> [SKIP][7] ([Intel XE#5780] / [Intel XE#7590])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
  [Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
  [Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
  [Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
  [Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
  [Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590


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

  * IGT: IGT_8865 -> IGTPW_15009

  IGTPW_15009: 23df028ee797a07f5d8cae04b06b70b64a8ec0f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (7 preceding siblings ...)
  2026-04-21 10:35 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-04-21 11:39 ` Patchwork
  2026-04-24 10:04 ` ✓ i915.CI.BAT: success " Patchwork
  2026-04-24 12:17 ` ✓ i915.CI.Full: " Patchwork
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-21 11:39 UTC (permalink / raw)
  To: Naladala, Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
URL   : https://patchwork.freedesktop.org/series/164742/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8865_FULL -> XEIGTPW_15009_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_15009_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_15009_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_15009_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][1] +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
    - shard-lnl:          [PASS][2] -> [DMESG-WARN][3] +1 other test dmesg-warn
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-3/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-lnl-3/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html

  * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2:
    - shard-bmg:          [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-2.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset:
    - shard-lnl:          [PASS][6] -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-5/igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-lnl-7/igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#607] / [Intel XE#7361])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#610] / [Intel XE#7387])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

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

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#367] / [Intel XE#7354])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +9 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][15] ([Intel XE#7084]) +1 other test incomplete
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2252]) +4 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_content_protection@lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#7642]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][18] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2320]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][21] -> [FAIL][22] ([Intel XE#7571])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#1340] / [Intel XE#7435])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#4331] / [Intel XE#7227])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html

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

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2372] / [Intel XE#7359])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][27] -> [FAIL][28] ([Intel XE#3321]) +1 other test fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7179])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2311]) +15 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#4141]) +14 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2313]) +11 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#7061] / [Intel XE#7356])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#6901])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#4090] / [Intel XE#7443])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#7283])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

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

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7376] / [Intel XE#870])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2499])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html

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

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#1489]) +4 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_psr@psr-sprite-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_sharpness_filter@filter-modifiers:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#6503])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@kms_sharpness_filter@filter-modifiers.html

  * igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-3:
    - shard-bmg:          [PASS][46] -> [ABORT][47] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-3.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-3.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1499])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@kms_vrr@flip-suspend.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#7636]) +5 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_eudebug@vma-ufence.html

  * igt@xe_evict@evict-small-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#7140])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_evict@evict-small-multi-queue.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#7136]) +9 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#6874]) +24 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [PASS][54] -> [FAIL][55] ([Intel XE#5625]) +1 other test fail
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#7138]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77]) -> ([PASS][78], [DMESG-WARN][79], [DMESG-WARN][80], [DMESG-WARN][81], [DMESG-WARN][82], [DMESG-WARN][83], [DMESG-WARN][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [SKIP][99], [PASS][100]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-6/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-8/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-7/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-10/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-9/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-8/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#6964]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-1/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html

  * igt@xe_pat@pat-sw-hw-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#7590])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_pat@pat-sw-hw-suspend.html

  * igt@xe_pm@d3cold-basic:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#7370])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_pm@d3cold-basic.html

  * igt@xe_pmu@engine-activity-accuracy-90:
    - shard-lnl:          [PASS][104] -> [FAIL][105] ([Intel XE#7072]) +2 other tests fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-6/igt@xe_pmu@engine-activity-accuracy-90.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#7599])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-10/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][108] ([Intel XE#5545])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][109] ([Intel XE#7571]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][111] ([Intel XE#2029] / [Intel XE#7395]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html

  * igt@xe_prime_self_import@export-vs-gem_close-race:
    - shard-bmg:          [DMESG-WARN][113] ([Intel XE#7725]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_prime_self_import@export-vs-gem_close-race.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15009/shard-bmg-2/igt@xe_prime_self_import@export-vs-gem_close-race.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [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#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7072
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870


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

  * IGT: IGT_8865 -> IGTPW_15009

  IGTPW_15009: 23df028ee797a07f5d8cae04b06b70b64a8ec0f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (8 preceding siblings ...)
  2026-04-21 11:39 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-24 10:04 ` Patchwork
  2026-04-24 12:17 ` ✓ i915.CI.Full: " Patchwork
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-24 10:04 UTC (permalink / raw)
  To: Naladala, Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from IGT_8865 -> IGTPW_15009
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (40 -> 40)
------------------------------

  Additional (1): bat-adls-6 
  Missing    (1): bat-dg2-13 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests:
    - bat-adls-6:         NOTRUN -> [SKIP][1] ([i915#15931])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@dmabuf@all-tests.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-adls-6:         NOTRUN -> [SKIP][3] ([i915#15656])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_selftest@live@hangcheck:
    - bat-arls-6:         [PASS][4] -> [DMESG-FAIL][5] ([i915#15963])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@hangcheck.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-arls-6/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-6:         [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-arls-6/igt@i915_selftest@live@workarounds.html

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

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

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#5354])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

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

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][15] ([i915#3291]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - fi-bsw-n3050:       [DMESG-FAIL][16] ([i915#14808]) -> [PASS][17] +1 other test pass
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_selftest@live.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/fi-bsw-n3050/igt@i915_selftest@live.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15963]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15963
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8865 -> IGTPW_15009

  CI-20190529: 20190529
  CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15009: 23df028ee797a07f5d8cae04b06b70b64a8ec0f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ i915.CI.Full: success for tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
  2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
                   ` (9 preceding siblings ...)
  2026-04-24 10:04 ` ✓ i915.CI.BAT: success " Patchwork
@ 2026-04-24 12:17 ` Patchwork
  10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-04-24 12:17 UTC (permalink / raw)
  To: Naladala, Ramanaidu; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_vrr: Drop cmrr subtest for redesign (rev3)
URL   : https://patchwork.freedesktop.org/series/164742/
State : success

== Summary ==

CI Bug Log - changes from IGT_8865_full -> IGTPW_15009_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-rkl:          NOTRUN -> [SKIP][1] ([i915#6230])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@api_intel_bb@crc32.html
    - shard-dg1:          NOTRUN -> [SKIP][2] ([i915#6230])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@api_intel_bb@crc32.html
    - shard-tglu:         NOTRUN -> [SKIP][3] ([i915#6230])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@api_intel_bb@crc32.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][4] ([i915#14544] / [i915#8411])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html

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

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][9] ([i915#13008])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][10] ([i915#13008])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][11] ([i915#13008])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@gem_ccs@large-ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][12] ([i915#13008])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#7697])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-rkl:          NOTRUN -> [SKIP][14] ([i915#6335])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_ctx_persistence@heartbeat-many:
    - shard-dg2:          NOTRUN -> [SKIP][15] ([i915#8555])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][16] ([i915#1099]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-snb1/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#5882]) +7 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
    - shard-mtlp:         NOTRUN -> [SKIP][18] ([i915#5882]) +6 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglu-1:       NOTRUN -> [SKIP][19] ([i915#280])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@hibernate:
    - shard-tglu:         [PASS][20] -> [FAIL][21] ([i915#15762])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-tglu-4/igt@gem_eio@hibernate.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@gem_eio@hibernate.html
    - shard-mtlp:         [PASS][22] -> [FAIL][23] ([i915#15762])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-5/igt@gem_eio@hibernate.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@gem_eio@hibernate.html
    - shard-rkl:          [PASS][24] -> [FAIL][25] ([i915#15762])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@gem_eio@hibernate.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@gem_eio@hibernate.html

  * igt@gem_eio@kms:
    - shard-tglu:         NOTRUN -> [DMESG-WARN][26] ([i915#13363])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-3/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglu-1:       NOTRUN -> [SKIP][27] ([i915#4525])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [SKIP][28] ([i915#4525])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [FAIL][29] ([i915#15816])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@gem_exec_big@single.html

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

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

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

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@gem_exec_flush@basic-uc-pro-default.html

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

  * igt@gem_exec_reloc@basic-cpu-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-gtt.html
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#3281]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt.html

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

  * igt@gem_exec_reloc@basic-cpu-wc-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#14544] / [i915#3281])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html

  * igt@gem_exec_schedule@preemptive-hang:
    - shard-glk:          NOTRUN -> [DMESG-WARN][40] ([i915#118]) +1 other test dmesg-warn
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk2/igt@gem_exec_schedule@preemptive-hang.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-rkl:          [PASS][41] -> [ABORT][42] ([i915#15542] / [i915#7975]) +1 other test abort
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@gem_exec_suspend@basic-s4-devices.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4860]) +4 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg1:          NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglu:         NOTRUN -> [SKIP][46] ([i915#2190])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-9/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#4613])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@gem_lmem_swapping@heavy-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][49] ([i915#4613]) +5 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk8/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_mmap@short-mmap:
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4083])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@gem_mmap@short-mmap.html

  * igt@gem_mmap_gtt@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4077]) +7 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@gem_mmap_gtt@bad-object.html

  * igt@gem_mmap_gtt@close-race:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@gem_mmap_gtt@close-race.html
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4077]) +5 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@gem_mmap_gtt@close-race.html

  * igt@gem_mmap_wc@write-cpu-read-wc:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@gem_mmap_wc@write-cpu-read-wc.html

  * igt@gem_partial_pwrite_pread@reads:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gem_partial_pwrite_pread@reads.html
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@gem_partial_pwrite_pread@reads.html
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#3282])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@gem_partial_pwrite_pread@reads.html
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#3282])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads.html

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

  * igt@gem_pxp@hw-rejects-pxp-context:
    - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#13717])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html
    - shard-tglu:         NOTRUN -> [SKIP][62] ([i915#13398])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-context.html
    - shard-mtlp:         NOTRUN -> [SKIP][63] ([i915#13398])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-context.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
    - shard-dg1:          NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +4 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][67] ([i915#8428]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gem_render_tiled_blits@basic.html

  * igt@gem_set_tiling_vs_gtt:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#4079]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4079]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#4885]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#4885])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][73] ([i915#4885])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][74] ([i915#3297])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-tglu-1:       NOTRUN -> [SKIP][75] ([i915#3297])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][77] ([i915#13356] / [i915#14586])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk11/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-rkl:          NOTRUN -> [SKIP][78] ([i915#14544])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-tglu-1:       NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#2856])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-rkl:          NOTRUN -> [SKIP][81] ([i915#2527]) +2 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglu:         NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +2 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@gen9_exec_parse@shadow-peek.html

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

  * igt@i915_drm_fdinfo@busy@rcs0:
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#14073]) +11 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@i915_drm_fdinfo@busy@rcs0.html
    - shard-mtlp:         NOTRUN -> [SKIP][85] ([i915#14073]) +13 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@i915_drm_fdinfo@busy@rcs0.html

  * igt@i915_drm_fdinfo@busy@vecs1:
    - shard-dg2:          NOTRUN -> [SKIP][86] ([i915#14073]) +15 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@i915_drm_fdinfo@busy@vecs1.html

  * igt@i915_drm_fdinfo@virtual-busy-all:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#14118])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-all.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-glk:          NOTRUN -> [ABORT][88] ([i915#15342]) +1 other test abort
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@load:
    - shard-dg1:          ([PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113]) -> ([PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [DMESG-WARN][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138]) ([i915#4423])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-19/igt@i915_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-15/igt@i915_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@i915_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-18/igt@i915_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-15/igt@i915_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-19/igt@i915_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@i915_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-18/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-17/igt@i915_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-19/igt@i915_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@i915_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-17/igt@i915_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@i915_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-17/igt@i915_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-15/igt@i915_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-12/igt@i915_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@i915_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@i915_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@i915_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@i915_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-12/igt@i915_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-12/igt@i915_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@i915_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@i915_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@i915_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@i915_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@i915_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@i915_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@i915_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@i915_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@i915_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@i915_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@i915_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@i915_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@i915_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@i915_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@i915_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@i915_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@i915_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@i915_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@i915_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@i915_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@i915_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@i915_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@i915_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@i915_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@i915_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@i915_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@i915_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@i915_module_load@load.html

  * igt@i915_module_load@reload-no-display:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][139] ([i915#13029] / [i915#14545])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-1/igt@i915_module_load@reload-no-display.html
    - shard-dg1:          NOTRUN -> [DMESG-WARN][140] ([i915#13029] / [i915#14545])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@i915_module_load@reload-no-display.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][141] ([i915#14545])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-snb6/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#14498])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][143] ([i915#13356])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk6/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_rps@thresholds:
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#11681])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@i915_pm_rps@thresholds.html
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#11681])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@i915_pm_rps@thresholds.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#11681]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_selftest@live:
    - shard-mtlp:         [PASS][147] -> [DMESG-FAIL][148] ([i915#12061] / [i915#15560])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-2/igt@i915_selftest@live.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [PASS][149] -> [DMESG-FAIL][150] ([i915#12061])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@sysfs-reader:
    - shard-rkl:          [PASS][151] -> [INCOMPLETE][152] ([i915#4817])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@i915_suspend@sysfs-reader.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@i915_suspend@sysfs-reader.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#7707])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@intel_hwmon@hwmon-read.html
    - shard-tglu-1:       NOTRUN -> [SKIP][154] ([i915#7707])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
    - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#7707])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@intel_hwmon@hwmon-read.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-glk:          NOTRUN -> [INCOMPLETE][156] ([i915#12761])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk1/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][157] ([i915#14995])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html

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

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-dg2:          [PASS][159] -> [FAIL][160] ([i915#5956])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

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

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-tglu:         NOTRUN -> [SKIP][162] ([i915#5286]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [PASS][163] -> [FAIL][164] ([i915#15733] / [i915#5138]) +1 other test fail
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5286])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglu-1:       NOTRUN -> [SKIP][167] ([i915#5286]) +4 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][168] ([i915#14544] / [i915#5286])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/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-180-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][169] ([i915#3828])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][170] ([i915#3638])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#3638])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5190]) +9 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][173] +9 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][174] ([i915#4538]) +2 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][176] ([i915#14098] / [i915#6095]) +37 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][177] ([i915#6095]) +37 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][178] +114 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][179] +547 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#6095]) +49 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][181] ([i915#12313]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][182] ([i915#12313]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][183] ([i915#12313])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][184] ([i915#12313])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#12313])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][186] ([i915#6095]) +34 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][187] ([i915#6095]) +24 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][189] ([i915#12805])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][190] ([i915#12805])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#10307] / [i915#6095]) +81 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][192] ([i915#6095]) +232 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][193] ([i915#6095]) +59 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs:
    - shard-snb:          NOTRUN -> [SKIP][194] +121 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-snb7/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][195] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          NOTRUN -> [SKIP][196] ([i915#3742])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#13781]) +3 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-tglu:         NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +10 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-2/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-dg2:          NOTRUN -> [SKIP][199] +9 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg1:          NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +3 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +7 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#11151] / [i915#14544] / [i915#7828])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

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

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +6 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
    - shard-tglu-1:       NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +3 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_color@deep-color:
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#3555] / [i915#9979])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-2/igt@kms_color@deep-color.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#15330] / [i915#3299])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-rkl:          NOTRUN -> [SKIP][208] ([i915#15330] / [i915#3116])
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][209] ([i915#15330] / [i915#3299])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-tglu:         NOTRUN -> [SKIP][210] ([i915#15330] / [i915#3116] / [i915#3299])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#15330] / [i915#3299])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#15865]) +2 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#15865]) +2 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_content_protection@type1.html
    - shard-dg1:          NOTRUN -> [SKIP][214] ([i915#15865])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@kms_content_protection@type1.html
    - shard-tglu:         NOTRUN -> [SKIP][215] ([i915#15865]) +2 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-2/igt@kms_content_protection@type1.html
    - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#15865])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-tglu-1:       NOTRUN -> [SKIP][217] ([i915#15865])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-rkl:          NOTRUN -> [SKIP][218] ([i915#3555]) +4 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#3555]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][220] ([i915#13049]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#13049])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#13049])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#13049])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-rkl:          [PASS][225] -> [FAIL][226] ([i915#13566])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][227] -> [FAIL][228] ([i915#13566]) +1 other test fail
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][229] ([i915#13566]) +2 other tests fail
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-tglu:         NOTRUN -> [FAIL][230] ([i915#13566]) +1 other test fail
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#3555]) +4 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-dg1:          NOTRUN -> [SKIP][232] ([i915#3555]) +6 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8814])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-tglu-1:       NOTRUN -> [SKIP][234] ([i915#13049])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][235] ([i915#13046] / [i915#5354]) +2 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#4103]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][237] +13 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-mtlp:         NOTRUN -> [SKIP][238] ([i915#9809]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][239] ([i915#4103] / [i915#4213])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][240] ([i915#9723])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-tglu-1:       NOTRUN -> [SKIP][241] ([i915#9723])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([i915#13749])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#13749])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#13749])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-tglu:         NOTRUN -> [SKIP][245] ([i915#13749])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#13748])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html
    - shard-dg1:          NOTRUN -> [SKIP][247] ([i915#13748])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@kms_dp_link_training@uhbr-sst.html
    - shard-tglu:         NOTRUN -> [SKIP][248] ([i915#13748])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-7/igt@kms_dp_link_training@uhbr-sst.html
    - shard-mtlp:         NOTRUN -> [SKIP][249] ([i915#13749]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_dp_link_training@uhbr-sst.html
    - shard-dg2:          NOTRUN -> [SKIP][250] ([i915#13748])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-rkl:          NOTRUN -> [SKIP][251] ([i915#13707])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][252] ([i915#3840])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2:          NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-2/igt@kms_dsc@dsc-with-formats.html
    - shard-mtlp:         NOTRUN -> [SKIP][256] ([i915#3555] / [i915#3840])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][257] ([i915#3555] / [i915#3840])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-16/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-tglu:         NOTRUN -> [SKIP][258] ([i915#9337])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][259] ([i915#658])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_feature_discovery@psr1.html
    - shard-dg2:          NOTRUN -> [SKIP][260] ([i915#658])
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_feature_discovery@psr1.html
    - shard-rkl:          NOTRUN -> [SKIP][261] ([i915#658])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_feature_discovery@psr1.html
    - shard-dg1:          NOTRUN -> [SKIP][262] ([i915#658])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#9934]) +6 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#14544] / [i915#9934]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#9934]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#3637] / [i915#9934]) +3 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

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

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

  * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
    - shard-snb:          [PASS][269] -> [ABORT][270] ([i915#15840]) +1 other test abort
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html

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

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#3637] / [i915#9934]) +4 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][273] ([i915#9934]) +8 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][274] ([i915#12745] / [i915#4839])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk9/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][275] ([i915#12745])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-rkl:          NOTRUN -> [SKIP][276] ([i915#15643])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][277] ([i915#15643])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][278] ([i915#8810] / [i915#8813])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][279] ([i915#15643]) +2 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][280] ([i915#15643])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][281] ([i915#14544] / [i915#15643])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][282] ([i915#15643]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][284] ([i915#15643]) +2 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#15643] / [i915#5190]) +2 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][286] ([i915#15104]) +1 other test skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][287] ([i915#15104]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][288] ([i915#15104]) +2 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][289] ([i915#8708]) +15 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg2:          [PASS][290] -> [FAIL][291] ([i915#15389] / [i915#6880])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][292] +21 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][293] +26 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][294] ([i915#5354]) +29 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][295] ([i915#1825]) +17 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][296] ([i915#14544] / [i915#1825]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][297] ([i915#10056])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk11/igt@kms_frontbuffer_tracking@fbc-suspend.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][299] ([i915#14544] / [i915#15102])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
    - shard-dg1:          NOTRUN -> [SKIP][300] ([i915#15102])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
    - shard-dg1:          NOTRUN -> [SKIP][302] ([i915#15102] / [i915#3458]) +4 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-tglu-1:       NOTRUN -> [SKIP][303] ([i915#15102]) +9 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-tglu:         NOTRUN -> [SKIP][304] +55 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][305] ([i915#15102] / [i915#3023]) +15 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#10055])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][307] ([i915#10055])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][308] ([i915#15102])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][309] ([i915#15102])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][310] ([i915#8708]) +8 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][311] ([i915#8708]) +4 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
    - shard-rkl:          NOTRUN -> [SKIP][312] ([i915#14544] / [i915#15102] / [i915#3023])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#1825]) +23 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

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

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          [PASS][315] -> [SKIP][316] ([i915#3555] / [i915#8228])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_hdr@bpc-switch.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [PASS][317] -> [SKIP][318] ([i915#3555] / [i915#8228])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-swap:
    - shard-rkl:          NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglu-1:       NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][321] ([i915#15460])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html

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

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][323] ([i915#14544] / [i915#15458])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][324] ([i915#15458])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][325] ([i915#15638] / [i915#15722])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

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

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

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][328] ([i915#15709])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][329] ([i915#15709]) +4 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
    - shard-dg1:          NOTRUN -> [SKIP][330] ([i915#15709]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
    - shard-tglu:         NOTRUN -> [SKIP][331] ([i915#15709]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
    - shard-mtlp:         NOTRUN -> [SKIP][332] ([i915#15709]) +1 other test skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/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][333] ([i915#15709]) +3 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

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

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

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][336] ([i915#14412]) +1 other test incomplete
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][337] ([i915#3555] / [i915#8821])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
    - shard-mtlp:         NOTRUN -> [SKIP][338] ([i915#3555] / [i915#8821])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][339] ([i915#13958]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html

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

  * igt@kms_plane_multiple@tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][341] ([i915#14259])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html
    - shard-dg1:          NOTRUN -> [SKIP][342] ([i915#14259])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@kms_plane_multiple@tiling-4.html
    - shard-tglu:         NOTRUN -> [SKIP][343] ([i915#14259])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-4/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
    - shard-mtlp:         NOTRUN -> [SKIP][344] ([i915#15329]) +1 other test skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html

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

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu:         NOTRUN -> [SKIP][346] ([i915#15329]) +3 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][347] ([i915#5354]) +1 other test skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
    - shard-dg1:          NOTRUN -> [SKIP][348] ([i915#5354]) +1 other test skip
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade:
    - shard-tglu:         NOTRUN -> [SKIP][349] ([i915#9812]) +1 other test skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-2/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-tglu-1:       NOTRUN -> [SKIP][350] ([i915#15948])
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2:          NOTRUN -> [SKIP][351] ([i915#15948]) +1 other test skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][352] ([i915#15739])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-glk10:        NOTRUN -> [SKIP][353] +115 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-dg2:          [PASS][354] -> [SKIP][355] ([i915#9340])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-tglu:         NOTRUN -> [SKIP][356] ([i915#3828])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-tglu:         NOTRUN -> [SKIP][357] ([i915#8430])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg1:          [PASS][358] -> [DMESG-WARN][359] ([i915#4423])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][360] ([i915#15073])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [PASS][361] -> [SKIP][362] ([i915#15073]) +1 other test skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [PASS][363] -> [SKIP][364] ([i915#15073]) +1 other test skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
    - shard-tglu:         NOTRUN -> [SKIP][365] ([i915#15073]) +1 other test skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][366] ([i915#14419])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-dg1:          NOTRUN -> [SKIP][367] ([i915#11520])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
    - shard-snb:          NOTRUN -> [SKIP][368] ([i915#11520])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-snb6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][369] ([i915#9808]) +2 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-glk10:        NOTRUN -> [SKIP][370] ([i915#11520]) +4 other tests skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

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

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][372] ([i915#11520]) +4 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-glk11:        NOTRUN -> [SKIP][373] ([i915#11520]) +1 other test skip
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-rkl:          NOTRUN -> [SKIP][374] ([i915#11520]) +6 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][375] ([i915#11520]) +13 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-tglu:         NOTRUN -> [SKIP][376] ([i915#11520]) +5 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][377] ([i915#9732]) +19 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html
    - shard-mtlp:         NOTRUN -> [SKIP][378] ([i915#9688]) +13 other tests skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg2:          NOTRUN -> [SKIP][379] ([i915#1072] / [i915#9732]) +22 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_psr@psr-cursor-render.html

  * igt@kms_psr@psr-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][380] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_psr@psr-dpms.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][381] ([i915#4077] / [i915#9688]) +1 other test skip
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

  * igt@kms_psr@psr-sprite-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][382] ([i915#9732]) +10 other tests skip
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +18 other tests skip
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html
    - shard-dg1:          NOTRUN -> [SKIP][384] ([i915#1072] / [i915#9732]) +12 other tests skip
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-rkl:          NOTRUN -> [SKIP][385] ([i915#5289])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2:          NOTRUN -> [SKIP][386] ([i915#5190]) +1 other test skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-rkl:          NOTRUN -> [SKIP][387] ([i915#14544] / [i915#5289])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-tglu-1:       NOTRUN -> [SKIP][388] ([i915#5289])
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2:          NOTRUN -> [SKIP][389] ([i915#12755] / [i915#15867])
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-tglu:         NOTRUN -> [SKIP][390] ([i915#3555]) +5 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-rkl:          NOTRUN -> [SKIP][391] ([i915#14544] / [i915#3555]) +2 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-mtlp:         NOTRUN -> [SKIP][392] ([i915#3555] / [i915#8809] / [i915#8823])
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-mtlp:         NOTRUN -> [SKIP][393] ([i915#3555] / [i915#8809])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-glk:          NOTRUN -> [FAIL][394] ([i915#10959])
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
    - shard-rkl:          NOTRUN -> [SKIP][395] ([i915#8623])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglu:         NOTRUN -> [SKIP][396] ([i915#8623])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

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

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][398] ([i915#15243] / [i915#3555])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_vrr@flip-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][399] ([i915#15243] / [i915#3555])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_vrr@flip-dpms.html
    - shard-mtlp:         NOTRUN -> [SKIP][400] ([i915#3555] / [i915#8808])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-4/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@lobf:
    - shard-dg2:          NOTRUN -> [SKIP][401] ([i915#11920])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_vrr@lobf.html

  * igt@kms_vrr@negative-basic:
    - shard-tglu:         NOTRUN -> [SKIP][402] ([i915#3555] / [i915#9906])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-3/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-dg2:          NOTRUN -> [SKIP][403] ([i915#9906])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-rkl:          NOTRUN -> [SKIP][404] ([i915#9906])
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-dg1:          NOTRUN -> [SKIP][405] ([i915#9906])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-tglu:         NOTRUN -> [SKIP][406] ([i915#9906])
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html
    - shard-mtlp:         NOTRUN -> [SKIP][407] ([i915#8808] / [i915#9906])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@global-sseu-config-invalid:
    - shard-dg2:          NOTRUN -> [SKIP][408] ([i915#7387])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-1/igt@perf@global-sseu-config-invalid.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][409] ([i915#15778])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk4/igt@perf_pmu@module-unload.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          NOTRUN -> [SKIP][410] ([i915#14544] / [i915#9917])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-rkl:          NOTRUN -> [SKIP][411] ([i915#9917])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2:          NOTRUN -> [SKIP][412] ([i915#9917])
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  
#### Possible fixes ####

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][413] ([i915#13356]) -> [PASS][414]
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@gem_ccs@suspend-resume.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [INCOMPLETE][415] ([i915#12392] / [i915#13356]) -> [PASS][416]
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_exec_big@single:
    - shard-rkl:          [FAIL][417] -> [PASS][418]
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_exec_big@single.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@gem_exec_big@single.html
    - shard-mtlp:         [FAIL][419] ([i915#15871]) -> [PASS][420]
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-7/igt@gem_exec_big@single.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@gem_exec_big@single.html

  * igt@gem_exec_suspend@basic-s3-devices:
    - shard-rkl:          [ABORT][421] ([i915#15131] / [i915#15542]) -> [PASS][422]
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@gem_exec_suspend@basic-s3-devices.html

  * igt@gem_exec_suspend@basic-s3-devices@smem:
    - shard-rkl:          [ABORT][423] ([i915#15542]) -> [PASS][424]
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@gem_exec_suspend@basic-s3-devices@smem.html

  * igt@i915_module_load@resize-bar:
    - shard-dg2:          [DMESG-WARN][425] ([i915#14545]) -> [PASS][426]
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-6/igt@i915_module_load@resize-bar.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [INCOMPLETE][427] ([i915#13356] / [i915#13820]) -> [PASS][428] +1 other test pass
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_suspend@debugfs-reader:
    - shard-rkl:          [INCOMPLETE][429] ([i915#4817]) -> [PASS][430]
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@i915_suspend@debugfs-reader.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-glk:          [INCOMPLETE][431] ([i915#4817]) -> [PASS][432]
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-glk3/igt@i915_suspend@fence-restore-tiled2untiled.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-dg2:          [FAIL][433] ([i915#5956]) -> [PASS][434] +1 other test pass
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [FAIL][435] ([i915#15733] / [i915#5138]) -> [PASS][436]
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
    - shard-dg1:          [DMESG-WARN][437] ([i915#4423]) -> [PASS][438] +1 other test pass
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-tglu:         [FAIL][439] ([i915#13566]) -> [PASS][440] +7 other tests pass
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-rkl:          [FAIL][441] ([i915#13566]) -> [PASS][442] +2 other tests pass
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_force_connector_basic@force-edid:
    - shard-mtlp:         [SKIP][443] ([i915#15672]) -> [PASS][444]
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [SKIP][445] ([i915#15073]) -> [PASS][446]
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][447] ([i915#14544] / [i915#15073]) -> [PASS][448]
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg2:          [SKIP][449] ([i915#15073]) -> [PASS][450]
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          [FAIL][451] ([i915#4349]) -> [PASS][452] +4 other tests pass
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html

  
#### Warnings ####

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          [SKIP][453] ([i915#9323]) -> [SKIP][454] ([i915#14544] / [i915#9323])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_ccs@suspend-resume.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-rkl:          [SKIP][455] ([i915#14544] / [i915#6335]) -> [SKIP][456] ([i915#6335])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-rkl:          [SKIP][457] ([i915#14544] / [i915#4525]) -> [SKIP][458] ([i915#4525])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-rkl:          [SKIP][459] ([i915#3281]) -> [SKIP][460] ([i915#14544] / [i915#3281]) +7 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-rkl:          [SKIP][461] ([i915#14544] / [i915#3281]) -> [SKIP][462] ([i915#3281]) +1 other test skip
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          [SKIP][463] ([i915#14544] / [i915#7276]) -> [SKIP][464] ([i915#7276])
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#4613]) -> [SKIP][466] ([i915#4613])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-rkl:          [SKIP][467] ([i915#4613]) -> [SKIP][468] ([i915#14544] / [i915#4613]) +1 other test skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_partial_pwrite_pread@write-snoop:
    - shard-rkl:          [SKIP][469] ([i915#14544] / [i915#3282]) -> [SKIP][470] ([i915#3282])
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@gem_partial_pwrite_pread@write-snoop.html

  * igt@gem_readwrite@write-bad-handle:
    - shard-rkl:          [SKIP][471] ([i915#3282]) -> [SKIP][472] ([i915#14544] / [i915#3282]) +3 other tests skip
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@gem_readwrite@write-bad-handle.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          [SKIP][473] ([i915#8411]) -> [SKIP][474] ([i915#14544] / [i915#8411])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-rkl:          [SKIP][475] -> [SKIP][476] ([i915#14544]) +13 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@gem_softpin@evict-snoop.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          [SKIP][477] ([i915#3297]) -> [SKIP][478] ([i915#14544] / [i915#3297]) +1 other test skip
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-rkl:          [SKIP][479] ([i915#14544] / [i915#2527]) -> [SKIP][480] ([i915#2527])
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@bb-start-far:
    - shard-rkl:          [SKIP][481] ([i915#2527]) -> [SKIP][482] ([i915#14544] / [i915#2527]) +1 other test skip
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          [SKIP][483] ([i915#8399]) -> [SKIP][484] ([i915#14544] / [i915#8399])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_power@sanity:
    - shard-rkl:          [SKIP][485] ([i915#14544] / [i915#7984]) -> [SKIP][486] ([i915#7984])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@i915_power@sanity.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@i915_power@sanity.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-rkl:          [SKIP][487] ([i915#1769] / [i915#3555]) -> [SKIP][488] ([i915#14544] / [i915#1769] / [i915#3555])
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-rkl:          [SKIP][489] ([i915#5286]) -> [SKIP][490] ([i915#14544] / [i915#5286]) +3 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          [SKIP][491] ([i915#14544] / [i915#5286]) -> [SKIP][492] ([i915#5286]) +1 other test skip
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-rkl:          [SKIP][493] ([i915#3638]) -> [SKIP][494] ([i915#14544] / [i915#3638])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-rkl:          [SKIP][495] ([i915#14544] / [i915#3638]) -> [SKIP][496] ([i915#3638])
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][497] ([i915#12313]) -> [SKIP][498] ([i915#12313] / [i915#14544]) +1 other test skip
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][499] ([i915#14544] / [i915#6095]) -> [SKIP][500] ([i915#6095]) +2 other tests skip
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/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][501] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][502] ([i915#14098] / [i915#6095]) +5 other tests skip
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
    - shard-rkl:          [SKIP][503] ([i915#14098] / [i915#6095]) -> [SKIP][504] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          [SKIP][505] ([i915#6095]) -> [SKIP][506] ([i915#14544] / [i915#6095]) +4 other tests skip
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-rkl:          [SKIP][507] ([i915#11151] / [i915#7828]) -> [SKIP][508] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_chamelium_frames@dp-crc-fast.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-rkl:          [SKIP][509] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][510] ([i915#11151] / [i915#7828]) +1 other test skip
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_content_protection@atomic:
    - shard-rkl:          [SKIP][511] ([i915#14544] / [i915#15865]) -> [SKIP][512] ([i915#15865]) +1 other test skip
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_content_protection@atomic.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-4/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-rkl:          [SKIP][513] ([i915#15330]) -> [SKIP][514] ([i915#14544] / [i915#15330]) +1 other test skip
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          [FAIL][515] ([i915#7173]) -> [SKIP][516] ([i915#15865])
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_content_protection@srm.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-8/igt@kms_content_protection@srm.html
    - shard-rkl:          [SKIP][517] ([i915#15865]) -> [SKIP][518] ([i915#14544] / [i915#15865])
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_content_protection@srm.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-rkl:          [SKIP][519] ([i915#14544] / [i915#3555]) -> [SKIP][520] ([i915#3555])
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          [SKIP][521] ([i915#14544]) -> [SKIP][522] +5 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-rkl:          [SKIP][523] ([i915#9067]) -> [SKIP][524] ([i915#14544] / [i915#9067])
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-rkl:          [SKIP][525] ([i915#14544] / [i915#4103]) -> [SKIP][526] ([i915#4103])
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-rkl:          [SKIP][527] ([i915#4103]) -> [SKIP][528] ([i915#14544] / [i915#4103])
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
    - shard-dg1:          [SKIP][529] ([i915#4103] / [i915#4213]) -> [SKIP][530] ([i915#4103] / [i915#4213] / [i915#4423])
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-rkl:          [SKIP][531] ([i915#13707]) -> [SKIP][532] ([i915#13707] / [i915#14544])
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          [SKIP][533] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][534] ([i915#3555] / [i915#3840]) +1 other test skip
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_dsc@dsc-basic.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          [SKIP][535] ([i915#3555] / [i915#3840]) -> [SKIP][536] ([i915#14544] / [i915#3555] / [i915#3840])
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_feature_discovery@display-3x:
    - shard-rkl:          [SKIP][537] ([i915#1839]) -> [SKIP][538] ([i915#14544] / [i915#1839])
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-rkl:          [SKIP][539] ([i915#9934]) -> [SKIP][540] ([i915#14544] / [i915#9934]) +3 other tests skip
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][541] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][542] ([i915#12745] / [i915#4839])
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [INCOMPLETE][543] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][544] ([i915#12745])
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-rkl:          [SKIP][545] ([i915#14544] / [i915#9934]) -> [SKIP][546] ([i915#9934]) +1 other test skip
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-rkl:          [SKIP][547] ([i915#15643]) -> [SKIP][548] ([i915#14544] / [i915#15643]) +1 other test skip
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][549] ([i915#14544] / [i915#15643]) -> [SKIP][550] ([i915#15643]) +1 other test skip
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-mtlp:         [SKIP][551] ([i915#15672]) -> [SKIP][552]
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][553] ([i915#15102]) -> [SKIP][554] ([i915#14544] / [i915#15102]) +1 other test skip
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
    - shard-rkl:          [SKIP][555] ([i915#14544] / [i915#1825]) -> [SKIP][556] ([i915#1825]) +10 other tests skip
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-rkl:          [SKIP][557] ([i915#1825]) -> [SKIP][558] ([i915#14544] / [i915#1825]) +18 other tests skip
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][559] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][560] ([i915#15102] / [i915#3458]) +2 other tests skip
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-rkl:          [SKIP][561] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][562] ([i915#15102] / [i915#3023]) +2 other tests skip
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][563] ([i915#15102] / [i915#3458]) -> [SKIP][564] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-rkl:          [SKIP][565] ([i915#15102] / [i915#3023]) -> [SKIP][566] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][567] ([i915#14544] / [i915#15815]) -> [SKIP][568] ([i915#15815])
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-rkl:          [SKIP][569] ([i915#14544] / [i915#15709]) -> [SKIP][570] ([i915#15709]) +2 other tests skip
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-rkl:          [SKIP][571] ([i915#15709]) -> [SKIP][572] ([i915#14544] / [i915#15709])
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-rkl:          [SKIP][573] ([i915#13958]) -> [SKIP][574] ([i915#13958] / [i915#14544])
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-yf.html
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          [SKIP][575] ([i915#14259]) -> [SKIP][576] ([i915#14259] / [i915#14544])
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          [SKIP][577] ([i915#14544] / [i915#5354]) -> [SKIP][578] ([i915#5354])
   [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
   [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-rkl:          [SKIP][579] ([i915#3828]) -> [SKIP][580] ([i915#14544] / [i915#3828])
   [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html
   [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-rkl:          [SKIP][581] ([i915#15948]) -> [SKIP][582] ([i915#14544] / [i915#15948])
   [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
   [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][583] ([i915#11520] / [i915#14544]) -> [SKIP][584] ([i915#11520]) +3 other tests skip
   [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
   [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          [SKIP][585] ([i915#11520]) -> [SKIP][586] ([i915#11520] / [i915#14544]) +6 other tests skip
   [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
   [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-rkl:          [SKIP][587] ([i915#1072] / [i915#9732]) -> [SKIP][588] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip
   [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html
   [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@psr-no-drrs:
    - shard-rkl:          [SKIP][589] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][590] ([i915#1072] / [i915#9732]) +6 other tests skip
   [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_psr@psr-no-drrs.html
   [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@kms_psr@psr-no-drrs.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-rkl:          [SKIP][591] ([i915#15949]) -> [SKIP][592] ([i915#14544] / [i915#15949])
   [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][593] ([i915#15867]) -> [SKIP][594] ([i915#12755] / [i915#15867])
   [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
   [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-rkl:          [SKIP][595] ([i915#3555]) -> [SKIP][596] ([i915#14544] / [i915#3555])
   [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-full.html
   [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_vrr@lobf:
    - shard-rkl:          [SKIP][597] ([i915#11920]) -> [SKIP][598] ([i915#11920] / [i915#14544])
   [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@kms_vrr@lobf.html
   [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_vrr@lobf.html

  * igt@kms_vrr@negative-basic:
    - shard-rkl:          [SKIP][599] ([i915#3555] / [i915#9906]) -> [SKIP][600] ([i915#14544] / [i915#3555] / [i915#9906])
   [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_vrr@negative-basic.html
   [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@kms_vrr@negative-basic.html

  * igt@perf@mi-rpc:
    - shard-rkl:          [SKIP][601] ([i915#14544] / [i915#2434]) -> [SKIP][602] ([i915#2434])
   [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@perf@mi-rpc.html
   [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-5/igt@perf@mi-rpc.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          [SKIP][603] ([i915#2433]) -> [SKIP][604] ([i915#14544] / [i915#2433])
   [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
   [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-dg2:          [ABORT][605] ([i915#15778]) -> [ABORT][606] ([i915#13029] / [i915#15778])
   [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@perf_pmu@module-unload.html
   [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg2-3/igt@perf_pmu@module-unload.html
    - shard-dg1:          [ABORT][607] ([i915#15778]) -> [ABORT][608] ([i915#13029] / [i915#15778])
   [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@perf_pmu@module-unload.html
   [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-dg1-17/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-rkl:          [SKIP][609] ([i915#14544] / [i915#8516]) -> [SKIP][610] ([i915#8516])
   [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
   [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          [SKIP][611] ([i915#3291] / [i915#3708]) -> [SKIP][612] ([i915#14544] / [i915#3291] / [i915#3708]) +1 other test skip
   [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
   [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15009/shard-rkl-6/igt@prime_vgem@basic-fence-read.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [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#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [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#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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [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#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [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#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
  [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#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#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#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [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#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#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#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
  [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8865 -> IGTPW_15009

  CI-20190529: 20190529
  CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15009: 23df028ee797a07f5d8cae04b06b70b64a8ec0f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

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

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-11 17:59 [PATCH i-g-t v1] tests/kms_vrr: Drop cmrr subtest for redesign Naladala Ramanaidu
2026-04-11 19:08 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-11 19:27 ` ✓ i915.CI.BAT: " Patchwork
2026-04-11 19:57 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-12  0:55 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-13 15:21 ` [PATCH i-g-t v1] " Sharma, Swati2
2026-04-14 13:41   ` Naladala, Ramanaidu
2026-04-14 16:54     ` Kamil Konieczny
2026-04-15 13:23     ` Kamil Konieczny
2026-04-15 14:51       ` Naladala, Ramanaidu
2026-04-17  5:36 ` [PATCH i-g-t v2] tests/kms_vrr: Revert "tests/kms_vrr: New subtest for CMRR" Naladala Ramanaidu
2026-04-17  6:03   ` Sharma, Swati2
2026-04-17  7:42   ` [PATCH i-g-t v3] " Naladala Ramanaidu
2026-04-17  9:41     ` Kamil Konieczny
2026-04-21 10:31 ` ✗ i915.CI.BAT: failure for tests/kms_vrr: Drop cmrr subtest for redesign (rev3) Patchwork
2026-04-21 10:35 ` ✓ Xe.CI.BAT: success " Patchwork
2026-04-21 11:39 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-24 10:04 ` ✓ i915.CI.BAT: success " Patchwork
2026-04-24 12:17 ` ✓ i915.CI.Full: " Patchwork

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