All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/device_reset: move later skips into subtests
@ 2024-04-25 14:05 Kamil Konieczny
  2024-04-25 15:22 ` ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-25 14:05 UTC (permalink / raw)
  To: igt-dev
  Cc: Kamil Konieczny, Mauro Carvalho Chehab, Sai Gowtham Ch,
	Zbigniew Kempczyński

It is safe to use skips just after igt_main() for skipping all
subtests but later on they produce logs and even if CI will
ignore that, such logs can mislead developers reading them.

Move a skip from middle of igt_main() code block into subtests
which needed them.

v2: add space after while (Kamil)
v3: remove macro in favor of function (Zbigniew)

Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 tests/device_reset.c | 36 ++++++++++++++++++++++++++++++------
 1 file changed, 30 insertions(+), 6 deletions(-)

diff --git a/tests/device_reset.c b/tests/device_reset.c
index 583a59039..09558ff20 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -299,6 +299,29 @@ static bool is_sysfs_cold_reset_supported(int slot_fd)
 	return true;
 }
 
+/**
+ * cold_reset_not_supported:
+ * @fd: opened sysfs pci slot descriptor
+ *
+ * Check if device supports cold reset based on slot dir or sysfs file presence.
+ *
+ * Returns:
+ * NULL if device supports cold reset, otherwise a string description
+ */
+static const char *cold_reset_not_supported(int slot_dir)
+{
+	static const char *no_slot = "Gfx Card does not support any pcie slot for cold reset";
+	static const char *not_supported = "Gfx Card does not support cold reset";
+
+	if (slot_dir < 0)
+		return no_slot;
+
+	if (!is_sysfs_cold_reset_supported(slot_dir))
+		return not_supported;
+
+	return NULL;
+}
+
 /* Unbind the driver from the device */
 static void driver_unbind(struct device_fds *dev)
 {
@@ -424,22 +447,23 @@ igt_main
 		healthcheck(&dev);
 	}
 
-	igt_subtest_group {
-		igt_fixture {
-			igt_skip_on_f(dev.fds.slot_dir < 0, "Gfx Card does not support any "
-				      "pcie slot for cold reset\n");
-			igt_skip_on(!is_sysfs_cold_reset_supported(dev.fds.slot_dir));
-		}
 
+	igt_subtest_group {
 		igt_describe("Unbinds driver from device, initiates cold reset"
 			     " then rebinds driver to device");
 		igt_subtest("unbind-cold-reset-rebind") {
+			const char *reason = cold_reset_not_supported(dev.fds.slot_dir);
+
+			igt_skip_on_f(reason, "%s\n", reason);
 			unbind_reset_rebind(&dev, COLD_RESET);
 			healthcheck(&dev);
 		}
 
 		igt_describe("Cold Resets device with bound driver");
 		igt_subtest("cold-reset-bound") {
+			const char *reason = cold_reset_not_supported(dev.fds.slot_dir);
+
+			igt_skip_on_f(reason, "%s\n", reason);
 			initiate_device_reset(&dev, COLD_RESET);
 			/*
 			 * Cold reset will initiate card boot sequence again,
-- 
2.42.0


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

* ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-25 14:05 [PATCH i-g-t] tests/device_reset: move later skips into subtests Kamil Konieczny
@ 2024-04-25 15:22 ` Patchwork
  2024-04-25 16:44   ` Kamil Konieczny
  2024-04-26  7:43 ` ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2024-04-25 15:22 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: tests/device_reset: move later skips into subtests (rev3)
URL   : https://patchwork.freedesktop.org/series/132040/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_14654 -> IGTPW_11071
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11071 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11071, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html

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

  Missing    (2): bat-arls-1 fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gem_contexts:
    - bat-arls-2:         NOTRUN -> [ABORT][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gem_contexts.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live@gt_lrc:
    - bat-arls-2:         [ABORT][2] -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/bat-arls-2/igt@i915_selftest@live@gt_lrc.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gt_lrc.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7824 -> IGTPW_11071

  CI-20190529: 20190529
  CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7824: 7824

== Logs ==

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

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

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

* Re: ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-25 15:22 ` ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3) Patchwork
@ 2024-04-25 16:44   ` Kamil Konieczny
  2024-04-26  7:56     ` Illipilli, TejasreeX
  0 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-25 16:44 UTC (permalink / raw)
  To: igt-dev; +Cc: I915-ci-infra

Hi igt-dev,
On 2024-04-25 at 15:22:25 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/device_reset: move later skips into subtests (rev3)
> URL   : https://patchwork.freedesktop.org/series/132040/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_14654 -> IGTPW_11071
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_11071 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_11071, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html
> 
> Participating hosts (41 -> 39)
> ------------------------------
> 
>   Missing    (2): bat-arls-1 fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_11071:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - bat-arls-2:         NOTRUN -> [ABORT][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gem_contexts.html
> 

Unrelated to device_reset test change.

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_11071 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Possible fixes ####
> 
>   * igt@i915_selftest@live@gt_lrc:
>     - bat-arls-2:         [ABORT][2] -> [PASS][3]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/bat-arls-2/igt@i915_selftest@live@gt_lrc.html
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gt_lrc.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7824 -> IGTPW_11071
> 
>   CI-20190529: 20190529
>   CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_7824: 7824
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/index.html

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

* ✓ Fi.CI.BAT: success for tests/device_reset: move later skips into subtests (rev3)
  2024-04-25 14:05 [PATCH i-g-t] tests/device_reset: move later skips into subtests Kamil Konieczny
  2024-04-25 15:22 ` ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3) Patchwork
@ 2024-04-26  7:43 ` Patchwork
  2024-04-26  8:55 ` ✗ Fi.CI.IGT: failure " Patchwork
  2024-04-26 16:35 ` [PATCH i-g-t] tests/device_reset: move later skips into subtests Zbigniew Kempczyński
  3 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-04-26  7:43 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: tests/device_reset: move later skips into subtests (rev3)
URL   : https://patchwork.freedesktop.org/series/132040/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_14654 -> IGTPW_11071
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (2): bat-arls-1 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gem_contexts:
    - bat-arls-2:         NOTRUN -> [ABORT][1] ([i915#10948])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gem_contexts.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_lrc:
    - bat-arls-2:         [ABORT][2] -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/bat-arls-2/igt@i915_selftest@live@gt_lrc.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i915_selftest@live@gt_lrc.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
  [i915#10948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10948


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7824 -> IGTPW_11071

  CI-20190529: 20190529
  CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7824: 7824

== Logs ==

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

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

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

* RE: ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-25 16:44   ` Kamil Konieczny
@ 2024-04-26  7:56     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 12+ messages in thread
From: Illipilli, TejasreeX @ 2024-04-26  7:56 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev; +Cc: I915-ci-infra

Hi,

https://patchwork.freedesktop.org/series/132040/ - Re-reported.

Thanks,
Tejasree

-----Original Message-----
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Kamil Konieczny
Sent: Thursday, April 25, 2024 10:15 PM
To: igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org
Subject: Re: ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3)

Hi igt-dev,
On 2024-04-25 at 15:22:25 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/device_reset: move later skips into subtests (rev3)
> URL   : https://patchwork.freedesktop.org/series/132040/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_14654 -> IGTPW_11071 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_11071 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_11071, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html
> 
> Participating hosts (41 -> 39)
> ------------------------------
> 
>   Missing    (2): bat-arls-1 fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_11071:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - bat-arls-2:         NOTRUN -> [ABORT][1]
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i9
> 15_selftest@live@gem_contexts.html
> 

Unrelated to device_reset test change.

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_11071 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Possible fixes ####
> 
>   * igt@i915_selftest@live@gt_lrc:
>     - bat-arls-2:         [ABORT][2] -> [PASS][3]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/bat-arls-2/igt@i915_selftest@live@gt_lrc.html
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/bat-arls-2/igt@i9
> 15_selftest@live@gt_lrc.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [i915#10911]: 
> https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7824 -> IGTPW_11071
> 
>   CI-20190529: 20190529
>   CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_7824: 7824
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/index.html

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

* ✗ Fi.CI.IGT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-25 14:05 [PATCH i-g-t] tests/device_reset: move later skips into subtests Kamil Konieczny
  2024-04-25 15:22 ` ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3) Patchwork
  2024-04-26  7:43 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-04-26  8:55 ` Patchwork
  2024-04-26 10:08   ` Kamil Konieczny
  2024-04-26 10:34   ` Kamil Konieczny
  2024-04-26 16:35 ` [PATCH i-g-t] tests/device_reset: move later skips into subtests Zbigniew Kempczyński
  3 siblings, 2 replies; 12+ messages in thread
From: Patchwork @ 2024-04-26  8:55 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: tests/device_reset: move later skips into subtests (rev3)
URL   : https://patchwork.freedesktop.org/series/132040/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_14654_full -> IGTPW_11071_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11071_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11071_full, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@fbdev@read:
    - shard-dg2:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@fbdev@read.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@fbdev@read.html

  * igt@gem_eio@in-flight-suspend:
    - shard-dg1:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@gem_eio@in-flight-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_gttfill@all-engines:
    - shard-dg2:          [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@gem_exec_gttfill@all-engines.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_exec_gttfill@all-engines.html

  * igt@i915_selftest@live@migrate:
    - shard-dg1:          [PASS][7] -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-15/igt@i915_selftest@live@migrate.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@i915_selftest@live@migrate.html

  * igt@kms_flip@flip-vs-suspend@b-vga1:
    - shard-snb:          [PASS][9] -> [DMESG-WARN][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][11] +2 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4.html

  
#### Warnings ####

  * igt@device_reset@cold-reset-bound:
    - shard-tglu:         [SKIP][12] ([i915#7701]) -> [SKIP][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@device_reset@cold-reset-bound.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@device_reset@cold-reset-bound.html
    - shard-mtlp:         [SKIP][14] ([i915#7701]) -> [SKIP][15] +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@device_reset@cold-reset-bound.html
    - shard-dg2:          [SKIP][16] ([i915#7701]) -> [SKIP][17] +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@device_reset@cold-reset-bound.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@device_reset@cold-reset-bound.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-rkl:          [SKIP][18] ([i915#7701]) -> [SKIP][19] +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
    - shard-dg1:          [SKIP][20] ([i915#7701]) -> [SKIP][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_fdinfo@busy-idle@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8414]) +7 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html

  * igt@drm_fdinfo@most-busy-check-all@bcs0:
    - shard-dg1:          NOTRUN -> [SKIP][23] ([i915#8414]) +6 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@drm_fdinfo@most-busy-check-all@bcs0.html

  * igt@drm_fdinfo@most-busy-check-all@vcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][24] ([i915#8414]) +5 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@drm_fdinfo@most-busy-check-all@vcs0.html

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [PASS][25] -> [FAIL][26] ([i915#7742])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

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

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#3936])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_busy@semaphore.html
    - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#3936])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_busy@semaphore.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#9323])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_ccs@suspend-resume.html

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

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

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

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

  * igt@gem_eio@hibernate:
    - shard-rkl:          NOTRUN -> [ABORT][36] ([i915#7975] / [i915#8213])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_eio@hibernate.html

  * igt@gem_exec_balancer@bonded-pair:
    - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4771])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@gem_exec_balancer@bonded-pair.html
    - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#4771])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4771])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4036])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_capture@many-4k-incremental:
    - shard-dg2:          NOTRUN -> [FAIL][41] ([i915#9606])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_exec_capture@many-4k-incremental.html
    - shard-rkl:          NOTRUN -> [FAIL][42] ([i915#9606])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@gem_exec_capture@many-4k-incremental.html

  * igt@gem_exec_capture@many-4k-zero:
    - shard-dg1:          NOTRUN -> [FAIL][43] ([i915#9606])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_exec_capture@many-4k-zero.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none@bcs0:
    - shard-rkl:          [PASS][45] -> [FAIL][46] ([i915#2842])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglu:         [PASS][47] -> [FAIL][48] ([i915#2842])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fence@submit:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4812])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_exec_fence@submit.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +5 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#5107])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html

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

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

  * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#3281]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#3281]) +5 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_schedule@preempt-queue:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#4812])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_exec_schedule@preempt-queue.html

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

  * igt@gem_exec_schedule@semaphore-power:
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4860])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#2190])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-multi:
    - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_lmem_swapping@heavy-multi.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-mtlp:         NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-tglu:         NOTRUN -> [SKIP][64] ([i915#4613])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
    - shard-dg2:          [PASS][65] -> [FAIL][66] ([i915#10378])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html

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

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

  * igt@gem_media_vme:
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#284])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_media_vme.html

  * igt@gem_mmap@basic-small-bo:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@gem_mmap@basic-small-bo.html

  * igt@gem_mmap@pf-nonblock:
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_mmap@pf-nonblock.html

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#4077]) +8 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
    - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html

  * igt@gem_mmap_gtt@fault-concurrent-y:
    - shard-mtlp:         NOTRUN -> [SKIP][74] ([i915#4077]) +4 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html

  * igt@gem_mmap_wc@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#4083]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_mmap_wc@bad-object.html

  * igt@gem_pread@display:
    - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@gem_pread@display.html

  * igt@gem_pread@self:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_pread@self.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][79] ([i915#2658])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk2/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pwrite@basic-random:
    - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@gem_pwrite@basic-random.html

  * igt@gem_pxp@fail-invalid-protected-context:
    - shard-mtlp:         NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@gem_pxp@fail-invalid-protected-context.html
    - shard-rkl:          NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html

  * igt@gem_pxp@reject-modify-context-protection-on:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#4270])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-on.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-snb:          NOTRUN -> [SKIP][85] +49 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

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

  * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +4 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#4079])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@gem_render_tiled_blits@basic.html
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#4079])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_pread_pwrite:
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#4079])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@gem_tiled_pread_pwrite.html

  * igt@gem_unfence_active_buffers:
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#4879])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_unfence_active_buffers.html
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#4879])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][93] ([i915#3323])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#3323])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][96] ([i915#3297])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
    - shard-tglu:         NOTRUN -> [SKIP][97] ([i915#3297])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html

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

  * igt@gen9_exec_parse@allowed-single:
    - shard-rkl:          NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gen9_exec_parse@allowed-single.html

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

  * igt@gen9_exec_parse@bb-start-out:
    - shard-dg1:          NOTRUN -> [SKIP][102] ([i915#2527]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@gen9_exec_parse@bb-start-out.html
    - shard-mtlp:         NOTRUN -> [SKIP][103] ([i915#2856])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg1:          [PASS][105] -> [INCOMPLETE][106] ([i915#1982] / [i915#9820] / [i915#9849])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
    - shard-glk:          [PASS][107] -> [INCOMPLETE][108] ([i915#1982] / [i915#9849])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg2:          [PASS][109] -> [ABORT][110] ([i915#9820])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#6412])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-6/igt@i915_module_load@resize-bar.html
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#7178])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@i915_module_load@resize-bar.html
    - shard-tglu:         NOTRUN -> [SKIP][113] ([i915#6412])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@i915_module_load@resize-bar.html

  * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#7091])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#6590])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
    - shard-dg1:          [PASS][116] -> [FAIL][117] ([i915#3591])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html

  * igt@i915_pm_rps@thresholds@gt0:
    - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8925])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt0.html

  * igt@i915_pm_rps@thresholds@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8925])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html

  * igt@i915_pm_sseu@full-enable:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#4387])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@i915_pm_sseu@full-enable.html

  * igt@i915_selftest@live@late_gt_pm:
    - shard-mtlp:         [PASS][121] -> [INCOMPLETE][122] ([i915#10461])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-3/igt@i915_selftest@live@late_gt_pm.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@i915_selftest@live@late_gt_pm.html

  * igt@intel_hwmon@hwmon-write:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#7707])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#5190]) +2 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

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

  * igt@kms_addfb_basic@clobberred-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#4212])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#8709]) +3 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#8709]) +11 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#6228])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][130] ([i915#1769])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][133] ([i915#5286])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

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

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg1:          NOTRUN -> [SKIP][136] ([i915#3638]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#3638])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu:         [PASS][138] -> [FAIL][139] ([i915#3743])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-mtlp:         NOTRUN -> [SKIP][142] +10 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_joiner@invalid-modeset-force-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#10656])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_big_joiner@invalid-modeset-force-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#10656])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_big_joiner@invalid-modeset-force-joiner.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +164 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][147] ([i915#6095]) +11 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][148] ([i915#6095]) +65 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][150] ([i915#10278]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#10278])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][152] ([i915#10278])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
    - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#10278])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#6095]) +71 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html

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

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

  * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#4087]) +3 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#7828]) +6 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#7828]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#7828]) +3 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-dg1:          NOTRUN -> [SKIP][161] ([i915#7828]) +6 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][162] ([i915#7828]) +5 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_content_protection@content-type-change.html
    - shard-dg2:          NOTRUN -> [SKIP][164] ([i915#9424])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_content_protection@content-type-change.html
    - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#9424])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@lic-type-0:
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#6944] / [i915#9424]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_content_protection@lic-type-0.html
    - shard-dg1:          NOTRUN -> [SKIP][167] ([i915#9424])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_content_protection@lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#3555]) +7 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#3359])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#3359])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#8814])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg1:          NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
    - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][174] -> [FAIL][175] ([i915#2346]) +1 other test fail
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#9227])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#9723])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#3555]) +8 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_display_modes@extended-mode-basic.html

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

  * igt@kms_dp_aux_dev:
    - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#1257])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_dsc@dsc-basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840] / [i915#9159])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#3840])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_feature_discovery@display-2x:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#1839])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#1839])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#1839]) +2 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][187] +18 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html

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

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglu:         NOTRUN -> [SKIP][189] ([i915#3637] / [i915#3966])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#9934]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
    - shard-rkl:          NOTRUN -> [FAIL][191] ([i915#2122])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][192] ([i915#8381])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#2672]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#2672]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-dg2:          [PASS][200] -> [FAIL][201] ([i915#6880])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-snb:          [PASS][203] -> [SKIP][204] +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][205] ([i915#10055])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][206] ([i915#8708]) +8 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#3023]) +11 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
    - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#3458]) +15 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#3458]) +17 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#1825]) +15 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][212] +17 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#10433] / [i915#3458])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][214] ([i915#10055])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#10070])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][216] +35 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#5354]) +37 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#6301])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#9423]) +3 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#9423]) +7 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#9423]) +3 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][225] ([i915#5176] / [i915#9423]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#5235]) +9 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#5235]) +6 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][229] ([i915#3555] / [i915#5235])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5235] / [i915#9423]) +7 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][231] ([i915#5235]) +3 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-4.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#5354])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-1/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#9293])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html

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

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][235] ([i915#9340])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
    - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#9340])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg2:          [PASS][237] -> [SKIP][238] ([i915#9519])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][239] ([i915#9519])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#9519])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#9519])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#9519])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [PASS][243] -> [SKIP][244] ([i915#9519]) +1 other test skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          NOTRUN -> [SKIP][245] ([i915#6524])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_prime@d3hot.html
    - shard-mtlp:         NOTRUN -> [SKIP][246] ([i915#6524])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][247] ([i915#9808]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2:          NOTRUN -> [SKIP][248] ([i915#9683])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
    - shard-rkl:          NOTRUN -> [SKIP][249] ([i915#9683])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
    - shard-dg1:          NOTRUN -> [SKIP][250] ([i915#9683])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
    - shard-tglu:         NOTRUN -> [SKIP][251] ([i915#9683])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_psr@fbc-pr-dpms.html

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

  * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#9688]) +7 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html

  * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +13 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
    - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#9732]) +3 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +19 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +14 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][259] ([i915#4235])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html

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

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#4235]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8809])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
    - shard-dg1:          [PASS][263] -> [FAIL][264] ([i915#9196])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html

  * igt@kms_vrr@flip-basic:
    - shard-rkl:          NOTRUN -> [SKIP][265] ([i915#3555])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_vrr@flip-basic.html
    - shard-tglu:         NOTRUN -> [SKIP][266] ([i915#3555])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_vrr@flip-basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8808])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#9906]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#9906])
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-mtlp:         NOTRUN -> [SKIP][270] ([i915#2437] / [i915#9412])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-glk:          NOTRUN -> [SKIP][271] ([i915#2437]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk3/igt@kms_writeback@writeback-fb-id.html
    - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#2437])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html

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

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

  * igt@perf_pmu@cpu-hotplug:
    - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#8850])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@perf_pmu@cpu-hotplug.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-dg1:          NOTRUN -> [SKIP][276] ([i915#8516])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html

  * igt@prime_busy@hang-wait@vecs0:
    - shard-glk:          [PASS][277] -> [INCOMPLETE][278] ([i915#10067])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk3/igt@prime_busy@hang-wait@vecs0.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk5/igt@prime_busy@hang-wait@vecs0.html

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

  * igt@prime_vgem@fence-flip-hang:
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#3708])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@prime_vgem@fence-flip-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][281] ([i915#3708])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html

  * igt@runner@aborted:
    - shard-glk:          NOTRUN -> [FAIL][282] ([i915#10291])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk1/igt@runner@aborted.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2:          NOTRUN -> [SKIP][283] ([i915#9917])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
    - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#9917])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
    - shard-dg1:          NOTRUN -> [SKIP][285] ([i915#9917])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html
    - shard-tglu:         NOTRUN -> [SKIP][286] ([i915#9917])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-rkl:          NOTRUN -> [SKIP][287] +23 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html
    - shard-dg1:          NOTRUN -> [SKIP][288] ([i915#4818])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html

  * igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
    - shard-dg1:          NOTRUN -> [SKIP][289] ([i915#2575]) +11 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html

  * igt@v3d/v3d_submit_csd@job-perfmon:
    - shard-dg2:          NOTRUN -> [SKIP][290] ([i915#2575]) +13 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@v3d/v3d_submit_csd@job-perfmon.html

  * igt@v3d/v3d_wait_bo@bad-pad:
    - shard-mtlp:         NOTRUN -> [SKIP][291] ([i915#2575]) +3 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@v3d/v3d_wait_bo@bad-pad.html

  * igt@vc4/vc4_purgeable_bo@mark-purgeable:
    - shard-rkl:          NOTRUN -> [SKIP][292] ([i915#7711]) +3 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-purgeable.html

  * igt@vc4/vc4_tiling@set-bad-flags:
    - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#2575]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@vc4/vc4_tiling@set-bad-flags.html

  * igt@vc4/vc4_tiling@set-get:
    - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#7711]) +4 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@vc4/vc4_tiling@set-get.html

  * igt@vc4/vc4_wait_bo@bad-bo:
    - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#7711]) +7 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@vc4/vc4_wait_bo@bad-bo.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
    - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#7711]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html

  
#### Possible fixes ####

  * igt@gem_eio@kms:
    - shard-tglu:         [INCOMPLETE][297] ([i915#10513]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@gem_eio@kms.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@gem_eio@kms.html

  * igt@gem_eio@reset-stress:
    - shard-dg2:          [FAIL][299] ([i915#5784]) -> [PASS][300]
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-2/igt@gem_eio@reset-stress.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_eio@reset-stress.html

  * igt@gem_eio@suspend:
    - shard-dg1:          [DMESG-WARN][301] ([i915#4423]) -> [PASS][302]
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-18/igt@gem_eio@suspend.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@gem_eio@suspend.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglu:         [FAIL][303] ([i915#2842]) -> [PASS][304]
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-rkl:          [FAIL][305] ([i915#2842]) -> [PASS][306] +1 other test pass
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_lmem_swapping@heavy-verify-random@lmem0:
    - shard-dg2:          [FAIL][307] ([i915#10378]) -> [PASS][308]
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [DMESG-WARN][309] ([i915#1982] / [i915#4936] / [i915#5493]) -> [PASS][310]
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_mmap_offset@clear@smem0:
    - shard-mtlp:         [INCOMPLETE][311] ([i915#5493]) -> [PASS][312]
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-rkl:          [ABORT][313] ([i915#9820]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         [ABORT][315] ([i915#10131] / [i915#9697]) -> [PASS][316]
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-dg1:          [FAIL][317] ([i915#3591]) -> [PASS][318]
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-snb:          [INCOMPLETE][319] ([i915#4817]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb6/igt@i915_suspend@basic-s2idle-without-i915.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [FAIL][321] ([i915#3743]) -> [PASS][322] +2 other tests pass
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_cursor_legacy@torture-move@pipe-a:
    - shard-tglu:         [DMESG-WARN][323] ([i915#10166] / [i915#1982]) -> [PASS][324]
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_cursor_legacy@torture-move@pipe-a.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
    - shard-snb:          [FAIL][325] ([i915#2122]) -> [PASS][326] +1 other test pass
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a:
    - shard-mtlp:         [ABORT][327] ([i915#10608] / [i915#10650] / [i915#10698]) -> [PASS][328]
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-a.html

  * igt@kms_plane@pixel-format@pipe-a:
    - shard-mtlp:         [ABORT][329] ([i915#10698] / [i915#10892]) -> [PASS][330]
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-a.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1:
    - shard-dg2:          [INCOMPLETE][331] -> [PASS][332]
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [SKIP][333] ([i915#9519]) -> [PASS][334]
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          [SKIP][335] ([i915#9519]) -> [PASS][336] +2 other tests pass
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
    - shard-tglu:         [FAIL][337] ([i915#9196]) -> [PASS][338] +2 other tests pass
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html

  * igt@perf@blocking-parameterized:
    - shard-mtlp:         [INCOMPLETE][339] -> [PASS][340]
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-8/igt@perf@blocking-parameterized.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@perf@blocking-parameterized.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          [FAIL][341] ([i915#4349]) -> [PASS][342] +3 other tests pass
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html

  
#### Warnings ####

  * igt@api_intel_bb@render-ccs:
    - shard-dg2:          [INCOMPLETE][343] -> [FAIL][344] ([i915#10380])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@api_intel_bb@render-ccs.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@api_intel_bb@render-ccs.html

  * igt@gem_eio@kms:
    - shard-dg2:          [INCOMPLETE][345] ([i915#10513]) -> [FAIL][346] ([i915#5784])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@gem_eio@kms.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_eio@kms.html
    - shard-dg1:          [INCOMPLETE][347] ([i915#10513]) -> [FAIL][348] ([i915#5784])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@gem_eio@kms.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_eio@kms.html

  * igt@kms_content_protection@mei-interface:
    - shard-tglu:         [SKIP][349] ([i915#6944] / [i915#9424]) -> [SKIP][350] ([i915#8063])
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-8/igt@kms_content_protection@mei-interface.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][351] ([i915#7118] / [i915#9424]) -> [SKIP][352] ([i915#7118] / [i915#7162] / [i915#9424])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-4/igt@kms_content_protection@type1.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_content_protection@type1.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][353] ([i915#3458]) -> [SKIP][354] ([i915#10433] / [i915#3458]) +1 other test skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
    - shard-dg2:          [SKIP][355] ([i915#10433] / [i915#3458]) -> [SKIP][356] ([i915#3458]) +2 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_psr@fbc-pr-primary-mmap-gtt:
    - shard-dg2:          [SKIP][357] ([i915#1072] / [i915#9732]) -> [SKIP][358] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html

  * igt@kms_psr@fbc-pr-suspend:
    - shard-dg2:          [SKIP][359] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][360] ([i915#1072] / [i915#9732]) +9 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_psr@fbc-pr-suspend.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [FAIL][361] ([i915#7484]) -> [FAIL][362] ([i915#9100])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][363] ([i915#9351]) -> [INCOMPLETE][364] ([i915#5493])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10067
  [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
  [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
  [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
  [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
  [i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
  [i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10461]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10461
  [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
  [i915#10608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10608
  [i915#10650]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10650
  [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
  [i915#10698]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10698
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10892]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10892
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
  [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
  [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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
  [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#3743]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3743
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
  [i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
  [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
  [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#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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
  [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
  [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
  [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
  [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
  [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
  [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
  [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
  [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
  [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
  [i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
  [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
  [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
  [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#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
  [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
  [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_7824 -> IGTPW_11071
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7824: 7824
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: ✗ Fi.CI.IGT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-26  8:55 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-04-26 10:08   ` Kamil Konieczny
  2024-04-26 10:34   ` Kamil Konieczny
  1 sibling, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-26 10:08 UTC (permalink / raw)
  To: igt-dev; +Cc: I915-ci-infra, Kamil Konieczny

Hi igt-dev,
On 2024-04-26 at 08:55:39 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/device_reset: move later skips into subtests (rev3)
> URL   : https://patchwork.freedesktop.org/series/132040/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_14654_full -> IGTPW_11071_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_11071_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_11071_full, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html
> 
> Participating hosts (9 -> 9)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_11071_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@fbdev@read:
>     - shard-dg2:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@fbdev@read.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@fbdev@read.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-dg1:          [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@gem_eio@in-flight-suspend.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_gttfill@all-engines:
>     - shard-dg2:          [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@gem_exec_gttfill@all-engines.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_exec_gttfill@all-engines.html
> 
>   * igt@i915_selftest@live@migrate:
>     - shard-dg1:          [PASS][7] -> [INCOMPLETE][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-15/igt@i915_selftest@live@migrate.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@i915_selftest@live@migrate.html
> 
>   * igt@kms_flip@flip-vs-suspend@b-vga1:
>     - shard-snb:          [PASS][9] -> [DMESG-WARN][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [FAIL][11] +2 other tests fail
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4.html
> 

Above are unrelated to device_reset change.

>   
> #### Warnings ####
> 
>   * igt@device_reset@cold-reset-bound:
>     - shard-tglu:         [SKIP][12] ([i915#7701]) -> [SKIP][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@device_reset@cold-reset-bound.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@device_reset@cold-reset-bound.html
>     - shard-mtlp:         [SKIP][14] ([i915#7701]) -> [SKIP][15] +1 other test skip
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@device_reset@cold-reset-bound.html
>     - shard-dg2:          [SKIP][16] ([i915#7701]) -> [SKIP][17] +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@device_reset@cold-reset-bound.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@device_reset@cold-reset-bound.html
> 
>   * igt@device_reset@unbind-cold-reset-rebind:
>     - shard-rkl:          [SKIP][18] ([i915#7701]) -> [SKIP][19] +1 other test skip
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
>     - shard-dg1:          [SKIP][20] ([i915#7701]) -> [SKIP][21]
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html
> 

And these are more skips on other similar machines (are they new?)

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_11071_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@drm_fdinfo@busy-idle@bcs0:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8414]) +7 other tests skip
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
> 
>   * igt@drm_fdinfo@most-busy-check-all@bcs0:
>     - shard-dg1:          NOTRUN -> [SKIP][23] ([i915#8414]) +6 other tests skip
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@drm_fdinfo@most-busy-check-all@bcs0.html
> 
>   * igt@drm_fdinfo@most-busy-check-all@vcs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][24] ([i915#8414]) +5 other tests skip
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@drm_fdinfo@most-busy-check-all@vcs0.html
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>     - shard-rkl:          [PASS][25] -> [FAIL][26] ([i915#7742])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
> 
>   * igt@gem_basic@multigpu-create-close:
>     - shard-mtlp:         NOTRUN -> [SKIP][27] ([i915#7697])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@gem_basic@multigpu-create-close.html
> 
>   * igt@gem_busy@semaphore:
>     - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#3936])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_busy@semaphore.html
>     - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#3936])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_busy@semaphore.html
> 
>   * igt@gem_ccs@ctrl-surf-copy:
>     - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
> 
>   * igt@gem_ccs@suspend-resume:
>     - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#9323])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_ccs@suspend-resume.html
> 
>   * igt@gem_create@create-ext-cpu-access-sanity-check:
>     - shard-rkl:          NOTRUN -> [SKIP][32] ([i915#6335])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
> 
>   * igt@gem_ctx_persistence@hang:
>     - shard-dg1:          NOTRUN -> [SKIP][33] ([i915#8555])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@gem_ctx_persistence@hang.html
> 
>   * igt@gem_ctx_persistence@heartbeat-many:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#8555])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html
> 
>   * igt@gem_ctx_sseu@invalid-sseu:
>     - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#280])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-rkl:          NOTRUN -> [ABORT][36] ([i915#7975] / [i915#8213])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_eio@hibernate.html
> 
>   * igt@gem_exec_balancer@bonded-pair:
>     - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4771])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@gem_exec_balancer@bonded-pair.html
>     - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#4771])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_exec_balancer@bonded-pair.html
> 
>   * igt@gem_exec_balancer@bonded-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][39] ([i915#4771])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
> 
>   * igt@gem_exec_balancer@invalid-bonds:
>     - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4036])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
> 
>   * igt@gem_exec_capture@many-4k-incremental:
>     - shard-dg2:          NOTRUN -> [FAIL][41] ([i915#9606])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_exec_capture@many-4k-incremental.html
>     - shard-rkl:          NOTRUN -> [FAIL][42] ([i915#9606])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@gem_exec_capture@many-4k-incremental.html
> 
>   * igt@gem_exec_capture@many-4k-zero:
>     - shard-dg1:          NOTRUN -> [FAIL][43] ([i915#9606])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_exec_capture@many-4k-zero.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@bcs0:
>     - shard-rkl:          [PASS][45] -> [FAIL][46] ([i915#2842])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-tglu:         [PASS][47] -> [FAIL][48] ([i915#2842])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fence@submit:
>     - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4812])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_exec_fence@submit.html
> 
>   * igt@gem_exec_flush@basic-uc-pro-default:
>     - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +5 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html
> 
>   * igt@gem_exec_flush@basic-wb-ro-before-default:
>     - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
> 
>   * igt@gem_exec_params@rsvd2-dirt:
>     - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#5107])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
> 
>   * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
>     - shard-rkl:          NOTRUN -> [SKIP][53] ([i915#3281]) +10 other tests skip
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#3281]) +6 other tests skip
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@gem_exec_reloc@basic-gtt.html
> 
>   * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#3281]) +1 other test skip
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
> 
>   * igt@gem_exec_reloc@basic-wc-read:
>     - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#3281]) +5 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html
> 
>   * igt@gem_exec_schedule@preempt-queue:
>     - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#4812])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_exec_schedule@preempt-queue.html
> 
>   * igt@gem_exec_schedule@reorder-wide:
>     - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812])
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html
> 
>   * igt@gem_exec_schedule@semaphore-power:
>     - shard-mtlp:         NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +1 other test skip
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html
> 
>   * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#4860])
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#2190])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-multi:
>     - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_lmem_swapping@heavy-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-random:
>     - shard-mtlp:         NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi:
>     - shard-tglu:         NOTRUN -> [SKIP][64] ([i915#4613])
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-multi.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
>     - shard-dg2:          [PASS][65] -> [FAIL][66] ([i915#10378])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
> 
>   * igt@gem_lmem_swapping@verify-ccs:
>     - shard-glk:          NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html
> 
>   * igt@gem_media_fill@media-fill:
>     - shard-mtlp:         NOTRUN -> [SKIP][68] ([i915#8289])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@gem_media_fill@media-fill.html
> 
>   * igt@gem_media_vme:
>     - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#284])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_media_vme.html
> 
>   * igt@gem_mmap@basic-small-bo:
>     - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@gem_mmap@basic-small-bo.html
> 
>   * igt@gem_mmap@pf-nonblock:
>     - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_mmap@pf-nonblock.html
> 
>   * igt@gem_mmap_gtt@big-copy-odd:
>     - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#4077]) +8 other tests skip
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@gem_mmap_gtt@big-copy-odd.html
> 
>   * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
>     - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
> 
>   * igt@gem_mmap_gtt@fault-concurrent-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][74] ([i915#4077]) +4 other tests skip
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html
> 
>   * igt@gem_mmap_wc@bad-object:
>     - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#4083]) +3 other tests skip
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_mmap_wc@bad-object.html
> 
>   * igt@gem_pread@display:
>     - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@gem_pread@display.html
> 
>   * igt@gem_pread@self:
>     - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_pread@self.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html
>     - shard-glk:          NOTRUN -> [WARN][79] ([i915#2658])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk2/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_pwrite@basic-random:
>     - shard-rkl:          NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@gem_pwrite@basic-random.html
> 
>   * igt@gem_pxp@fail-invalid-protected-context:
>     - shard-mtlp:         NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@gem_pxp@fail-invalid-protected-context.html
>     - shard-rkl:          NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html
> 
>   * igt@gem_pxp@reject-modify-context-protection-on:
>     - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#4270])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-on.html
> 
>   * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
>     - shard-dg1:          NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
> 
>   * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
>     - shard-snb:          NOTRUN -> [SKIP][85] +49 other tests skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
> 
>   * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#8428]) +4 other tests skip
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
> 
>   * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
>     - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +4 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
> 
>   * igt@gem_render_tiled_blits@basic:
>     - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#4079])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@gem_render_tiled_blits@basic.html
>     - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#4079])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@gem_render_tiled_blits@basic.html
> 
>   * igt@gem_tiled_pread_pwrite:
>     - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#4079])
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@gem_tiled_pread_pwrite.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#4879])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@gem_unfence_active_buffers.html
>     - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#4879])
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][93] ([i915#3323])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html
>     - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#3323])
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> 
>   * igt@gem_userptr_blits@readonly-unsync:
>     - shard-rkl:          NOTRUN -> [SKIP][96] ([i915#3297])
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
>     - shard-tglu:         NOTRUN -> [SKIP][97] ([i915#3297])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html
> 
>   * igt@gem_userptr_blits@unsync-overlap:
>     - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html
> 
>   * igt@gem_userptr_blits@unsync-unmap:
>     - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap.html
> 
>   * igt@gen9_exec_parse@allowed-single:
>     - shard-rkl:          NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@gen9_exec_parse@allowed-single.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglu:         NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@gen9_exec_parse@bb-start-out:
>     - shard-dg1:          NOTRUN -> [SKIP][102] ([i915#2527]) +1 other test skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@gen9_exec_parse@bb-start-out.html
>     - shard-mtlp:         NOTRUN -> [SKIP][103] ([i915#2856])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@gen9_exec_parse@bb-start-out.html
> 
>   * igt@gen9_exec_parse@shadow-peek:
>     - shard-dg2:          NOTRUN -> [SKIP][104] ([i915#2856]) +2 other tests skip
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-dg1:          [PASS][105] -> [INCOMPLETE][106] ([i915#1982] / [i915#9820] / [i915#9849])
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
>     - shard-glk:          [PASS][107] -> [INCOMPLETE][108] ([i915#1982] / [i915#9849])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
>     - shard-dg2:          [PASS][109] -> [ABORT][110] ([i915#9820])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_module_load@resize-bar:
>     - shard-rkl:          NOTRUN -> [SKIP][111] ([i915#6412])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-6/igt@i915_module_load@resize-bar.html
>     - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#7178])
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@i915_module_load@resize-bar.html
>     - shard-tglu:         NOTRUN -> [SKIP][113] ([i915#6412])
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@i915_module_load@resize-bar.html
> 
>   * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#7091])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@i915_pm_freq_mult@media-freq@gt0:
>     - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#6590])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
>     - shard-dg1:          [PASS][116] -> [FAIL][117] ([i915#3591])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
> 
>   * igt@i915_pm_rps@thresholds@gt0:
>     - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8925])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt0.html
> 
>   * igt@i915_pm_rps@thresholds@gt1:
>     - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8925])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html
> 
>   * igt@i915_pm_sseu@full-enable:
>     - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#4387])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
> 
>   * igt@i915_selftest@live@late_gt_pm:
>     - shard-mtlp:         [PASS][121] -> [INCOMPLETE][122] ([i915#10461])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-3/igt@i915_selftest@live@late_gt_pm.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@i915_selftest@live@late_gt_pm.html
> 
>   * igt@intel_hwmon@hwmon-write:
>     - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#7707])
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@intel_hwmon@hwmon-write.html
> 
>   * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#5190]) +2 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 
>   * igt@kms_addfb_basic@basic-y-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#4215] / [i915#5190])
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
> 
>   * igt@kms_addfb_basic@clobberred-modifier:
>     - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#4212])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
>     - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#8709]) +3 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
>     - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#8709]) +11 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
> 
>   * igt@kms_async_flips@invalid-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#6228])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-glk:          NOTRUN -> [SKIP][130] ([i915#1769])
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>     - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>     - shard-dg1:          NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5286]) +1 other test skip
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-addfb-size-overflow:
>     - shard-dg1:          NOTRUN -> [SKIP][133] ([i915#5286])
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>     - shard-rkl:          NOTRUN -> [SKIP][134] ([i915#5286]) +3 other tests skip
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
>     - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#5286]) +1 other test skip
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-90:
>     - shard-dg1:          NOTRUN -> [SKIP][136] ([i915#3638]) +1 other test skip
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-270:
>     - shard-rkl:          NOTRUN -> [SKIP][137] ([i915#3638])
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>     - shard-tglu:         [PASS][138] -> [FAIL][139] ([i915#3743])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>     - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +9 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
>     - shard-dg1:          NOTRUN -> [SKIP][141] ([i915#4538]) +4 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>     - shard-mtlp:         NOTRUN -> [SKIP][142] +10 other tests skip
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
> 
>   * igt@kms_big_joiner@invalid-modeset-force-joiner:
>     - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#10656])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_big_joiner@invalid-modeset-force-joiner.html
>     - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#10656])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_big_joiner@invalid-modeset-force-joiner.html
> 
>   * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +164 other tests skip
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
> 
>   * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
>     - shard-tglu:         NOTRUN -> [SKIP][147] ([i915#6095]) +11 other tests skip
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
>     - shard-rkl:          NOTRUN -> [SKIP][148] ([i915#6095]) +65 other tests skip
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][149] ([i915#6095]) +23 other tests skip
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
>     - shard-rkl:          NOTRUN -> [SKIP][150] ([i915#10278]) +1 other test skip
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#10278])
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
>     - shard-tglu:         NOTRUN -> [SKIP][152] ([i915#10278])
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
>     - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#10278])
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#6095]) +71 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_cdclk@mode-transition-all-outputs:
>     - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#3742])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#7213]) +4 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#4087]) +3 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>     - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#7828]) +6 other tests skip
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
> 
>   * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
>     - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#7828]) +1 other test skip
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
> 
>   * igt@kms_chamelium_frames@vga-frame-dump:
>     - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#7828]) +3 other tests skip
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_chamelium_frames@vga-frame-dump.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-fast:
>     - shard-dg1:          NOTRUN -> [SKIP][161] ([i915#7828]) +6 other tests skip
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
> 
>   * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][162] ([i915#7828]) +5 other tests skip
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
> 
>   * igt@kms_content_protection@content-type-change:
>     - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_content_protection@content-type-change.html
>     - shard-dg2:          NOTRUN -> [SKIP][164] ([i915#9424])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_content_protection@content-type-change.html
>     - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#9424])
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-1/igt@kms_content_protection@content-type-change.html
> 
>   * igt@kms_content_protection@lic-type-0:
>     - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#6944] / [i915#9424]) +1 other test skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_content_protection@lic-type-0.html
>     - shard-dg1:          NOTRUN -> [SKIP][167] ([i915#9424])
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-max-size:
>     - shard-dg1:          NOTRUN -> [SKIP][168] ([i915#3555]) +7 other tests skip
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-max-size.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-512x170:
>     - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#3359])
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#3359])
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
>     - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#8814])
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>     - shard-dg1:          NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213])
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
>     - shard-dg2:          NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>     - shard-glk:          [PASS][174] -> [FAIL][175] ([i915#2346]) +1 other test fail
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 
>   * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#9227])
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
> 
>   * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#9723])
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
> 
>   * igt@kms_display_modes@extended-mode-basic:
>     - shard-dg2:          NOTRUN -> [SKIP][178] ([i915#3555]) +8 other tests skip
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_display_modes@extended-mode-basic.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>     - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#3804])
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-dg1:          NOTRUN -> [SKIP][180] ([i915#1257])
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - shard-dg1:          NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) +1 other test skip
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_dsc@dsc-basic.html
>     - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840] / [i915#9159])
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_dsc@dsc-fractional-bpp:
>     - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#3840])
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html
> 
>   * igt@kms_feature_discovery@display-2x:
>     - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#1839])
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
>     - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#1839])
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-8/igt@kms_feature_discovery@display-2x.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#1839]) +2 other tests skip
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_flip@2x-flip-vs-panning-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][187] +18 other tests skip
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#3637]) +5 other tests skip
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-ts-check:
>     - shard-tglu:         NOTRUN -> [SKIP][189] ([i915#3637] / [i915#3966])
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-dg1:          NOTRUN -> [SKIP][190] ([i915#9934]) +2 other tests skip
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
>     - shard-rkl:          NOTRUN -> [FAIL][191] ([i915#2122])
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
> 
>   * igt@kms_flip@flip-vs-fences-interruptible:
>     - shard-mtlp:         NOTRUN -> [SKIP][192] ([i915#8381])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>     - shard-tglu:         NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672])
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
>     - shard-dg1:          NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
>     - shard-rkl:          NOTRUN -> [SKIP][197] ([i915#2672]) +2 other tests skip
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8810])
>    [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#2672]) +2 other tests skip
>    [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
>     - shard-dg2:          [PASS][200] -> [FAIL][201] ([i915#6880])
>    [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
>    [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
>     - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#1825]) +25 other tests skip
>    [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
>     - shard-snb:          [PASS][203] -> [SKIP][204] +2 other tests skip
>    [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
>    [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-tiling-y:
>     - shard-dg2:          NOTRUN -> [SKIP][205] ([i915#10055])
>    [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
>     - shard-dg1:          NOTRUN -> [SKIP][206] ([i915#8708]) +8 other tests skip
>    [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
>     - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#3023]) +11 other tests skip
>    [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
>     - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#3458]) +15 other tests skip
>    [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][209] ([i915#3458]) +17 other tests skip
>    [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#8708]) +15 other tests skip
>    [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
>     - shard-mtlp:         NOTRUN -> [SKIP][211] ([i915#1825]) +15 other tests skip
>    [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>     - shard-tglu:         NOTRUN -> [SKIP][212] +17 other tests skip
>    [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#10433] / [i915#3458])
>    [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][214] ([i915#10055])
>    [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@plane-fbc-rte:
>     - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#10070])
>    [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
>     - shard-dg1:          NOTRUN -> [SKIP][216] +35 other tests skip
>    [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][217] ([i915#8708]) +5 other tests skip
>    [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
>     - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#5354]) +37 other tests skip
>    [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_hdr@bpc-switch-dpms:
>     - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +1 other test skip
>    [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
> 
>   * igt@kms_panel_fitting@atomic-fastset:
>     - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#6301])
>    [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
> 
>   * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#3582]) +3 other tests skip
>    [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][222] ([i915#9423]) +3 other tests skip
>    [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#9423]) +7 other tests skip
>    [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
>     - shard-rkl:          NOTRUN -> [SKIP][224] ([i915#9423]) +3 other tests skip
>    [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
>     - shard-rkl:          NOTRUN -> [SKIP][225] ([i915#5176] / [i915#9423]) +1 other test skip
>    [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
>     - shard-rkl:          NOTRUN -> [SKIP][226] ([i915#5235]) +9 other tests skip
>    [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
>     - shard-dg2:          NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
>    [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][228] ([i915#5235]) +6 other tests skip
>    [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][229] ([i915#3555] / [i915#5235])
>    [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html
> 
>   * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
>     - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#5235] / [i915#9423]) +7 other tests skip
>    [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [SKIP][231] ([i915#5235]) +3 other tests skip
>    [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-4.html
> 
>   * igt@kms_pm_backlight@fade:
>     - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#5354])
>    [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-1/igt@kms_pm_backlight@fade.html
> 
>   * igt@kms_pm_dc@dc5-dpms-negative:
>     - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#9293])
>    [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html
> 
>   * igt@kms_pm_dc@dc5-psr:
>     - shard-dg2:          NOTRUN -> [SKIP][234] ([i915#9685])
>    [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_pm_dc@dc5-psr.html
> 
>   * igt@kms_pm_lpsp@kms-lpsp:
>     - shard-dg2:          NOTRUN -> [SKIP][235] ([i915#9340])
>    [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
>     - shard-rkl:          NOTRUN -> [SKIP][236] ([i915#9340])
>    [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-dg2:          [PASS][237] -> [SKIP][238] ([i915#9519])
>    [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
>    [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>     - shard-dg2:          NOTRUN -> [SKIP][239] ([i915#9519])
>    [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_pm_rpm@dpms-non-lpsp:
>     - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#9519])
>    [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html
>     - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#9519])
>    [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>     - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#9519])
>    [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
> 
>   * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>     - shard-rkl:          [PASS][243] -> [SKIP][244] ([i915#9519]) +1 other test skip
>    [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>    [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@kms_prime@d3hot:
>     - shard-rkl:          NOTRUN -> [SKIP][245] ([i915#6524])
>    [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_prime@d3hot.html
>     - shard-mtlp:         NOTRUN -> [SKIP][246] ([i915#6524])
>    [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_prime@d3hot.html
> 
>   * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][247] ([i915#9808]) +1 other test skip
>    [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf@psr2-pipe-b-edp-1.html
> 
>   * igt@kms_psr2_su@page_flip-p010:
>     - shard-dg2:          NOTRUN -> [SKIP][248] ([i915#9683])
>    [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
>     - shard-rkl:          NOTRUN -> [SKIP][249] ([i915#9683])
>    [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
>     - shard-dg1:          NOTRUN -> [SKIP][250] ([i915#9683])
>    [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
>     - shard-tglu:         NOTRUN -> [SKIP][251] ([i915#9683])
>    [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-5/igt@kms_psr2_su@page_flip-p010.html
> 
>   * igt@kms_psr@fbc-pr-dpms:
>     - shard-dg2:          NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
>    [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_psr@fbc-pr-dpms.html
> 
>   * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
>     - shard-glk:          NOTRUN -> [SKIP][253] +288 other tests skip
>    [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk4/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
> 
>   * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#9688]) +7 other tests skip
>    [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
> 
>   * igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
>     - shard-dg1:          NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +13 other tests skip
>    [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
>     - shard-tglu:         NOTRUN -> [SKIP][256] ([i915#9732]) +3 other tests skip
>    [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
> 
>   * igt@kms_psr@psr2-cursor-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +19 other tests skip
>    [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html
>     - shard-rkl:          NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +14 other tests skip
>    [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html
> 
>   * igt@kms_rotation_crc@bad-tiling:
>     - shard-mtlp:         NOTRUN -> [SKIP][259] ([i915#4235])
>    [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-2/igt@kms_rotation_crc@bad-tiling.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-dg2:          NOTRUN -> [SKIP][260] ([i915#4235] / [i915#5190])
>    [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>     - shard-dg2:          NOTRUN -> [SKIP][261] ([i915#4235]) +1 other test skip
>    [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8809])
>    [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
>     - shard-dg1:          [PASS][263] -> [FAIL][264] ([i915#9196])
>    [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
>    [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
> 
>   * igt@kms_vrr@flip-basic:
>     - shard-rkl:          NOTRUN -> [SKIP][265] ([i915#3555])
>    [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_vrr@flip-basic.html
>     - shard-tglu:         NOTRUN -> [SKIP][266] ([i915#3555])
>    [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_vrr@flip-basic.html
>     - shard-mtlp:         NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8808])
>    [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_vrr@flip-basic.html
> 
>   * igt@kms_vrr@flip-basic-fastset:
>     - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#9906]) +1 other test skip
>    [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html
> 
>   * igt@kms_vrr@seamless-rr-switch-drrs:
>     - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#9906])
>    [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html
> 
>   * igt@kms_writeback@writeback-check-output-xrgb2101010:
>     - shard-mtlp:         NOTRUN -> [SKIP][270] ([i915#2437] / [i915#9412])
>    [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-glk:          NOTRUN -> [SKIP][271] ([i915#2437]) +1 other test skip
>    [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk3/igt@kms_writeback@writeback-fb-id.html
>     - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#2437])
>    [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@perf@gen8-unprivileged-single-ctx-counters:
>     - shard-dg2:          NOTRUN -> [SKIP][273] ([i915#2436] / [i915#7387])
>    [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
> 
>   * igt@perf@global-sseu-config:
>     - shard-dg2:          NOTRUN -> [SKIP][274] ([i915#7387])
>    [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@perf@global-sseu-config.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#8850])
>    [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@rc6-all-gts:
>     - shard-dg1:          NOTRUN -> [SKIP][276] ([i915#8516])
>    [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html
> 
>   * igt@prime_busy@hang-wait@vecs0:
>     - shard-glk:          [PASS][277] -> [INCOMPLETE][278] ([i915#10067])
>    [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-glk3/igt@prime_busy@hang-wait@vecs0.html
>    [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk5/igt@prime_busy@hang-wait@vecs0.html
> 
>   * igt@prime_vgem@basic-fence-read:
>     - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#3291] / [i915#3708])
>    [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@prime_vgem@basic-fence-read.html
> 
>   * igt@prime_vgem@fence-flip-hang:
>     - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#3708])
>    [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-18/igt@prime_vgem@fence-flip-hang.html
>     - shard-mtlp:         NOTRUN -> [SKIP][281] ([i915#3708])
>    [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html
> 
>   * igt@runner@aborted:
>     - shard-glk:          NOTRUN -> [FAIL][282] ([i915#10291])
>    [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-glk1/igt@runner@aborted.html
> 
>   * igt@sriov_basic@enable-vfs-autoprobe-off:
>     - shard-dg2:          NOTRUN -> [SKIP][283] ([i915#9917])
>    [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
>     - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#9917])
>    [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
>     - shard-dg1:          NOTRUN -> [SKIP][285] ([i915#9917])
>    [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html
>     - shard-tglu:         NOTRUN -> [SKIP][286] ([i915#9917])
>    [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
> 
>   * igt@tools_test@sysfs_l3_parity:
>     - shard-rkl:          NOTRUN -> [SKIP][287] +23 other tests skip
>    [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html
>     - shard-dg1:          NOTRUN -> [SKIP][288] ([i915#4818])
>    [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html
> 
>   * igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
>     - shard-dg1:          NOTRUN -> [SKIP][289] ([i915#2575]) +11 other tests skip
>    [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
> 
>   * igt@v3d/v3d_submit_csd@job-perfmon:
>     - shard-dg2:          NOTRUN -> [SKIP][290] ([i915#2575]) +13 other tests skip
>    [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@v3d/v3d_submit_csd@job-perfmon.html
> 
>   * igt@v3d/v3d_wait_bo@bad-pad:
>     - shard-mtlp:         NOTRUN -> [SKIP][291] ([i915#2575]) +3 other tests skip
>    [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@v3d/v3d_wait_bo@bad-pad.html
> 
>   * igt@vc4/vc4_purgeable_bo@mark-purgeable:
>     - shard-rkl:          NOTRUN -> [SKIP][292] ([i915#7711]) +3 other tests skip
>    [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
> 
>   * igt@vc4/vc4_tiling@set-bad-flags:
>     - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#2575]) +3 other tests skip
>    [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@vc4/vc4_tiling@set-bad-flags.html
> 
>   * igt@vc4/vc4_tiling@set-get:
>     - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#7711]) +4 other tests skip
>    [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-14/igt@vc4/vc4_tiling@set-get.html
> 
>   * igt@vc4/vc4_wait_bo@bad-bo:
>     - shard-dg2:          NOTRUN -> [SKIP][295] ([i915#7711]) +7 other tests skip
>    [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-3/igt@vc4/vc4_wait_bo@bad-bo.html
> 
>   * igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
>     - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#7711]) +1 other test skip
>    [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@kms:
>     - shard-tglu:         [INCOMPLETE][297] ([i915#10513]) -> [PASS][298]
>    [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@gem_eio@kms.html
>    [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@gem_eio@kms.html
> 
>   * igt@gem_eio@reset-stress:
>     - shard-dg2:          [FAIL][299] ([i915#5784]) -> [PASS][300]
>    [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-2/igt@gem_eio@reset-stress.html
>    [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_eio@reset-stress.html
> 
>   * igt@gem_eio@suspend:
>     - shard-dg1:          [DMESG-WARN][301] ([i915#4423]) -> [PASS][302]
>    [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-18/igt@gem_eio@suspend.html
>    [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-15/igt@gem_eio@suspend.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-tglu:         [FAIL][303] ([i915#2842]) -> [PASS][304]
>    [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
>    [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-rkl:          [FAIL][305] ([i915#2842]) -> [PASS][306] +1 other test pass
>    [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
>    [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@gem_lmem_swapping@heavy-verify-random@lmem0:
>     - shard-dg2:          [FAIL][307] ([i915#10378]) -> [PASS][308]
>    [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
>    [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          [DMESG-WARN][309] ([i915#1982] / [i915#4936] / [i915#5493]) -> [PASS][310]
>    [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
>    [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@gem_mmap_offset@clear@smem0:
>     - shard-mtlp:         [INCOMPLETE][311] ([i915#5493]) -> [PASS][312]
>    [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html
>    [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-rkl:          [ABORT][313] ([i915#9820]) -> [PASS][314]
>    [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
>    [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
>     - shard-mtlp:         [ABORT][315] ([i915#10131] / [i915#9697]) -> [PASS][316]
>    [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
>    [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
>     - shard-dg1:          [FAIL][317] ([i915#3591]) -> [PASS][318]
>    [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
>    [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
> 
>   * igt@i915_suspend@basic-s2idle-without-i915:
>     - shard-snb:          [INCOMPLETE][319] ([i915#4817]) -> [PASS][320]
>    [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb6/igt@i915_suspend@basic-s2idle-without-i915.html
>    [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-tglu:         [FAIL][321] ([i915#3743]) -> [PASS][322] +2 other tests pass
>    [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_cursor_legacy@torture-move@pipe-a:
>     - shard-tglu:         [DMESG-WARN][323] ([i915#10166] / [i915#1982]) -> [PASS][324]
>    [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
>    [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@kms_cursor_legacy@torture-move@pipe-a.html
> 
>   * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
>     - shard-snb:          [FAIL][325] ([i915#2122]) -> [PASS][326] +1 other test pass
>    [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
>    [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
> 
>   * igt@kms_plane@pixel-format-source-clamping@pipe-a:
>     - shard-mtlp:         [ABORT][327] ([i915#10608] / [i915#10650] / [i915#10698]) -> [PASS][328]
>    [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
>    [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
> 
>   * igt@kms_plane@pixel-format@pipe-a:
>     - shard-mtlp:         [ABORT][329] ([i915#10698] / [i915#10892]) -> [PASS][330]
>    [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-a.html
>    [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-a.html
> 
>   * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1:
>     - shard-dg2:          [INCOMPLETE][331] -> [PASS][332]
>    [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1.html
>    [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-rkl:          [SKIP][333] ([i915#9519]) -> [PASS][334]
>    [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
>    [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_pm_rpm@modeset-lpsp:
>     - shard-dg2:          [SKIP][335] ([i915#9519]) -> [PASS][336] +2 other tests pass
>    [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
>    [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
>     - shard-tglu:         [FAIL][337] ([i915#9196]) -> [PASS][338] +2 other tests pass
>    [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
>    [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
> 
>   * igt@perf@blocking-parameterized:
>     - shard-mtlp:         [INCOMPLETE][339] -> [PASS][340]
>    [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-8/igt@perf@blocking-parameterized.html
>    [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-5/igt@perf@blocking-parameterized.html
> 
>   * igt@perf_pmu@busy-double-start@vecs1:
>     - shard-dg2:          [FAIL][341] ([i915#4349]) -> [PASS][342] +3 other tests pass
>    [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
>    [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
> 
>   
> #### Warnings ####
> 
>   * igt@api_intel_bb@render-ccs:
>     - shard-dg2:          [INCOMPLETE][343] -> [FAIL][344] ([i915#10380])
>    [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@api_intel_bb@render-ccs.html
>    [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@api_intel_bb@render-ccs.html
> 
>   * igt@gem_eio@kms:
>     - shard-dg2:          [INCOMPLETE][345] ([i915#10513]) -> [FAIL][346] ([i915#5784])
>    [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@gem_eio@kms.html
>    [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@gem_eio@kms.html
>     - shard-dg1:          [INCOMPLETE][347] ([i915#10513]) -> [FAIL][348] ([i915#5784])
>    [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@gem_eio@kms.html
>    [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-17/igt@gem_eio@kms.html
> 
>   * igt@kms_content_protection@mei-interface:
>     - shard-tglu:         [SKIP][349] ([i915#6944] / [i915#9424]) -> [SKIP][350] ([i915#8063])
>    [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-8/igt@kms_content_protection@mei-interface.html
>    [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-4/igt@kms_content_protection@mei-interface.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-dg2:          [SKIP][351] ([i915#7118] / [i915#9424]) -> [SKIP][352] ([i915#7118] / [i915#7162] / [i915#9424])
>    [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-4/igt@kms_content_protection@type1.html
>    [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_content_protection@type1.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
>     - shard-dg2:          [SKIP][353] ([i915#3458]) -> [SKIP][354] ([i915#10433] / [i915#3458]) +1 other test skip
>    [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
>    [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
>     - shard-dg2:          [SKIP][355] ([i915#10433] / [i915#3458]) -> [SKIP][356] ([i915#3458]) +2 other tests skip
>    [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
>    [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
> 
>   * igt@kms_psr@fbc-pr-primary-mmap-gtt:
>     - shard-dg2:          [SKIP][357] ([i915#1072] / [i915#9732]) -> [SKIP][358] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
>    [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
>    [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
> 
>   * igt@kms_psr@fbc-pr-suspend:
>     - shard-dg2:          [SKIP][359] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][360] ([i915#1072] / [i915#9732]) +9 other tests skip
>    [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
>    [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-8/igt@kms_psr@fbc-pr-suspend.html
> 
>   * igt@perf@non-zero-reason@0-rcs0:
>     - shard-dg2:          [FAIL][361] ([i915#7484]) -> [FAIL][362] ([i915#9100])
>    [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
>    [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg2:          [CRASH][363] ([i915#9351]) -> [INCOMPLETE][364] ([i915#5493])
>    [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>    [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   
>   [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
>   [i915#10067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10067
>   [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
>   [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
>   [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
>   [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
>   [i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291
>   [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
>   [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
>   [i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
>   [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
>   [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
>   [i915#10461]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10461
>   [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
>   [i915#10608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10608
>   [i915#10650]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10650
>   [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
>   [i915#10698]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10698
>   [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
>   [i915#10892]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10892
>   [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
>   [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
>   [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
>   [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
>   [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
>   [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
>   [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
>   [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
>   [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
>   [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
>   [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
>   [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
>   [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
>   [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
>   [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
>   [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
>   [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
>   [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
>   [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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
>   [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
>   [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#3743]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3743
>   [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
>   [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
>   [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
>   [i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
>   [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
>   [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
>   [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
>   [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
>   [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
>   [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
>   [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
>   [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
>   [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
>   [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
>   [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
>   [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#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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
>   [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
>   [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
>   [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
>   [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
>   [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
>   [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
>   [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
>   [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
>   [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
>   [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
>   [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
>   [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
>   [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
>   [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
>   [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
>   [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
>   [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
>   [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
>   [i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
>   [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
>   [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
>   [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
>   [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
>   [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
>   [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
>   [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7701
>   [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
>   [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
>   [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
>   [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
>   [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
>   [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
>   [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
>   [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
>   [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
>   [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
>   [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
>   [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
>   [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
>   [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
>   [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
>   [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
>   [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
>   [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
>   [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
>   [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
>   [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
>   [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
>   [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
>   [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
>   [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
>   [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
>   [i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
>   [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
>   [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
>   [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
>   [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
>   [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
>   [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
>   [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
>   [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
>   [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
>   [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#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
>   [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
>   [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
>   [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
>   [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
>   [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
>   [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
>   [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_7824 -> IGTPW_11071
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_7824: 7824
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/index.html

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

* Re: ✗ Fi.CI.IGT: failure for tests/device_reset: move later skips into subtests (rev3)
  2024-04-26  8:55 ` ✗ Fi.CI.IGT: failure " Patchwork
  2024-04-26 10:08   ` Kamil Konieczny
@ 2024-04-26 10:34   ` Kamil Konieczny
  1 sibling, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-26 10:34 UTC (permalink / raw)
  To: igt-dev; +Cc: I915-ci-infra

Hi igt-dev,
On 2024-04-26 at 08:55:39 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/device_reset: move later skips into subtests (rev3)
> URL   : https://patchwork.freedesktop.org/series/132040/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_14654_full -> IGTPW_11071_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_11071_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_11071_full, please notify your bug team (&#x27;I915-ci-infra@lists.freedesktop.org&#x27;) 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_11071/index.html
> 
> Participating hosts (9 -> 9)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_11071_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@fbdev@read:
>     - shard-dg2:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-6/igt@fbdev@read.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@fbdev@read.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-dg1:          [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-13/igt@gem_eio@in-flight-suspend.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_gttfill@all-engines:
>     - shard-dg2:          [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-10/igt@gem_exec_gttfill@all-engines.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-1/igt@gem_exec_gttfill@all-engines.html
> 
>   * igt@i915_selftest@live@migrate:
>     - shard-dg1:          [PASS][7] -> [INCOMPLETE][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-15/igt@i915_selftest@live@migrate.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-13/igt@i915_selftest@live@migrate.html
> 
>   * igt@kms_flip@flip-vs-suspend@b-vga1:
>     - shard-snb:          [PASS][9] -> [DMESG-WARN][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [FAIL][11] +2 other tests fail
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4.html
> 

Above are unrelated to change in device_reset test.

>   
> #### Warnings ####
> 
>   * igt@device_reset@cold-reset-bound:
>     - shard-tglu:         [SKIP][12] ([i915#7701]) -> [SKIP][13]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-tglu-5/igt@device_reset@cold-reset-bound.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-tglu-2/igt@device_reset@cold-reset-bound.html
>     - shard-mtlp:         [SKIP][14] ([i915#7701]) -> [SKIP][15] +1 other test skip
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-mtlp-3/igt@device_reset@cold-reset-bound.html
>     - shard-dg2:          [SKIP][16] ([i915#7701]) -> [SKIP][17] +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg2-8/igt@device_reset@cold-reset-bound.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-5/igt@device_reset@cold-reset-bound.html
> 
>   * igt@device_reset@unbind-cold-reset-rebind:
>     - shard-rkl:          [SKIP][18] ([i915#7701]) -> [SKIP][19] +1 other test skip
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
>     - shard-dg1:          [SKIP][20] ([i915#7701]) -> [SKIP][21]
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14654/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html
> 

And these seems also unrelated as there are more skips on similar machines.

Btw I send this again as I forgot to trim message to reasonable size.

Regards,
Kamil

>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_11071_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@drm_fdinfo@busy-idle@bcs0:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8414]) +7 other tests skip
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
> 

...cut...

> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7824 -> IGTPW_11071
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_14654: afe74c645ec61ebe1c406646725e8d869b0b3e9c @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_11071: 8b945b7442d79b8ef0234661d279be7197717fe5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_7824: 7824
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11071/index.html

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

* Re: [PATCH i-g-t] tests/device_reset: move later skips into subtests
  2024-04-25 14:05 [PATCH i-g-t] tests/device_reset: move later skips into subtests Kamil Konieczny
                   ` (2 preceding siblings ...)
  2024-04-26  8:55 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-04-26 16:35 ` Zbigniew Kempczyński
  3 siblings, 0 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2024-04-26 16:35 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev, Mauro Carvalho Chehab, Sai Gowtham Ch

On Thu, Apr 25, 2024 at 04:05:44PM +0200, Kamil Konieczny wrote:
> It is safe to use skips just after igt_main() for skipping all
> subtests but later on they produce logs and even if CI will
> ignore that, such logs can mislead developers reading them.
> 
> Move a skip from middle of igt_main() code block into subtests
> which needed them.
> 
> v2: add space after while (Kamil)
> v3: remove macro in favor of function (Zbigniew)
> 
> Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
> Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
>  tests/device_reset.c | 36 ++++++++++++++++++++++++++++++------
>  1 file changed, 30 insertions(+), 6 deletions(-)
> 
> diff --git a/tests/device_reset.c b/tests/device_reset.c
> index 583a59039..09558ff20 100644
> --- a/tests/device_reset.c
> +++ b/tests/device_reset.c
> @@ -299,6 +299,29 @@ static bool is_sysfs_cold_reset_supported(int slot_fd)
>  	return true;
>  }
>  
> +/**
> + * cold_reset_not_supported:
> + * @fd: opened sysfs pci slot descriptor
> + *
> + * Check if device supports cold reset based on slot dir or sysfs file presence.
> + *
> + * Returns:
> + * NULL if device supports cold reset, otherwise a string description
> + */
> +static const char *cold_reset_not_supported(int slot_dir)
> +{
> +	static const char *no_slot = "Gfx Card does not support any pcie slot for cold reset";
> +	static const char *not_supported = "Gfx Card does not support cold reset";
> +
> +	if (slot_dir < 0)
> +		return no_slot;
> +
> +	if (!is_sysfs_cold_reset_supported(slot_dir))
> +		return not_supported;
> +
> +	return NULL;
> +}
> +
>  /* Unbind the driver from the device */
>  static void driver_unbind(struct device_fds *dev)
>  {
> @@ -424,22 +447,23 @@ igt_main
>  		healthcheck(&dev);
>  	}
>  
> -	igt_subtest_group {
> -		igt_fixture {
> -			igt_skip_on_f(dev.fds.slot_dir < 0, "Gfx Card does not support any "
> -				      "pcie slot for cold reset\n");
> -			igt_skip_on(!is_sysfs_cold_reset_supported(dev.fds.slot_dir));
> -		}
>  
> +	igt_subtest_group {
>  		igt_describe("Unbinds driver from device, initiates cold reset"
>  			     " then rebinds driver to device");
>  		igt_subtest("unbind-cold-reset-rebind") {
> +			const char *reason = cold_reset_not_supported(dev.fds.slot_dir);
> +
> +			igt_skip_on_f(reason, "%s\n", reason);
>  			unbind_reset_rebind(&dev, COLD_RESET);
>  			healthcheck(&dev);
>  		}
>  
>  		igt_describe("Cold Resets device with bound driver");
>  		igt_subtest("cold-reset-bound") {
> +			const char *reason = cold_reset_not_supported(dev.fds.slot_dir);
> +
> +			igt_skip_on_f(reason, "%s\n", reason);
>  			initiate_device_reset(&dev, COLD_RESET);
>  			/*
>  			 * Cold reset will initiate card boot sequence again,
> -- 
> 2.42.0
> 

I understand you want to be verbose when cold reset is not supported
and what's the reason. At the first glance cold_reset_not_supported()
is a little bit confusing (returns NULL in case it is fine). But at
least assignment is descriptive (reason = ...).

So:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew


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

* Re: [PATCH i-g-t] tests/device_reset: move later skips into subtests
  2024-04-04 15:41 Kamil Konieczny
@ 2024-04-10 17:49 ` Zbigniew Kempczyński
  0 siblings, 0 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2024-04-10 17:49 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev, Mauro Carvalho Chehab, Sai Gowtham Ch

On Thu, Apr 04, 2024 at 05:41:34PM +0200, Kamil Konieczny wrote:
> It is safe to use skips just after igt_main() for skipping all
> subtests but later on they produce logs and even if CI will
> ignore that, such logs can mislead developers reading them.
> 
> Move a skip from middle of igt_main() code block into subtests
> which needed them.
> 
> Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
> Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
>  tests/device_reset.c | 15 +++++++++------
>  1 file changed, 9 insertions(+), 6 deletions(-)
> 
> diff --git a/tests/device_reset.c b/tests/device_reset.c
> index 583a59039..9b3b8ee6c 100644
> --- a/tests/device_reset.c
> +++ b/tests/device_reset.c
> @@ -424,22 +424,25 @@ igt_main
>  		healthcheck(&dev);
>  	}
>  
> -	igt_subtest_group {
> -		igt_fixture {
> -			igt_skip_on_f(dev.fds.slot_dir < 0, "Gfx Card does not support any "
> -				      "pcie slot for cold reset\n");
> -			igt_skip_on(!is_sysfs_cold_reset_supported(dev.fds.slot_dir));
> -		}
> +#define SKIP_IF_NO_COLD_RESET(slot_dir) \
> +	do { \
> +		igt_skip_on_f(slot_dir < 0, "Gfx Card does not support any " \
> +			      "pcie slot for cold reset\n"); \
> +		igt_skip_on(!is_sysfs_cold_reset_supported(slot_dir)); \
> +	} while(0)
>  
> +	igt_subtest_group {
>  		igt_describe("Unbinds driver from device, initiates cold reset"
>  			     " then rebinds driver to device");
>  		igt_subtest("unbind-cold-reset-rebind") {
> +			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);

Why not to introduce:

igt_require_cold_reset();

?

--
Zbigniew

>  			unbind_reset_rebind(&dev, COLD_RESET);
>  			healthcheck(&dev);
>  		}
>  
>  		igt_describe("Cold Resets device with bound driver");
>  		igt_subtest("cold-reset-bound") {
> +			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);
>  			initiate_device_reset(&dev, COLD_RESET);
>  			/*
>  			 * Cold reset will initiate card boot sequence again,
> -- 
> 2.42.0
> 

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

* [PATCH i-g-t] tests/device_reset: move later skips into subtests
@ 2024-04-05 12:56 Kamil Konieczny
  0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-05 12:56 UTC (permalink / raw)
  To: igt-dev; +Cc: Kamil Konieczny, Mauro Carvalho Chehab, Sai Gowtham Ch

It is safe to use skips just after igt_main() for skipping all
subtests but later on they produce logs and even if CI will
ignore that, such logs can mislead developers reading them.

Move a skip from middle of igt_main() code block into subtests
which needed them.

v2: add space after while (Kamil)

Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 tests/device_reset.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/tests/device_reset.c b/tests/device_reset.c
index 583a59039..de9e9d8c9 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -424,22 +424,25 @@ igt_main
 		healthcheck(&dev);
 	}
 
-	igt_subtest_group {
-		igt_fixture {
-			igt_skip_on_f(dev.fds.slot_dir < 0, "Gfx Card does not support any "
-				      "pcie slot for cold reset\n");
-			igt_skip_on(!is_sysfs_cold_reset_supported(dev.fds.slot_dir));
-		}
+#define SKIP_IF_NO_COLD_RESET(slot_dir) \
+	do { \
+		igt_skip_on_f(slot_dir < 0, "Gfx Card does not support any " \
+			      "pcie slot for cold reset\n"); \
+		igt_skip_on(!is_sysfs_cold_reset_supported(slot_dir)); \
+	} while (0)
 
+	igt_subtest_group {
 		igt_describe("Unbinds driver from device, initiates cold reset"
 			     " then rebinds driver to device");
 		igt_subtest("unbind-cold-reset-rebind") {
+			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);
 			unbind_reset_rebind(&dev, COLD_RESET);
 			healthcheck(&dev);
 		}
 
 		igt_describe("Cold Resets device with bound driver");
 		igt_subtest("cold-reset-bound") {
+			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);
 			initiate_device_reset(&dev, COLD_RESET);
 			/*
 			 * Cold reset will initiate card boot sequence again,
-- 
2.42.0


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

* [PATCH i-g-t] tests/device_reset: move later skips into subtests
@ 2024-04-04 15:41 Kamil Konieczny
  2024-04-10 17:49 ` Zbigniew Kempczyński
  0 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2024-04-04 15:41 UTC (permalink / raw)
  To: igt-dev; +Cc: Kamil Konieczny, Mauro Carvalho Chehab, Sai Gowtham Ch

It is safe to use skips just after igt_main() for skipping all
subtests but later on they produce logs and even if CI will
ignore that, such logs can mislead developers reading them.

Move a skip from middle of igt_main() code block into subtests
which needed them.

Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 tests/device_reset.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/tests/device_reset.c b/tests/device_reset.c
index 583a59039..9b3b8ee6c 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -424,22 +424,25 @@ igt_main
 		healthcheck(&dev);
 	}
 
-	igt_subtest_group {
-		igt_fixture {
-			igt_skip_on_f(dev.fds.slot_dir < 0, "Gfx Card does not support any "
-				      "pcie slot for cold reset\n");
-			igt_skip_on(!is_sysfs_cold_reset_supported(dev.fds.slot_dir));
-		}
+#define SKIP_IF_NO_COLD_RESET(slot_dir) \
+	do { \
+		igt_skip_on_f(slot_dir < 0, "Gfx Card does not support any " \
+			      "pcie slot for cold reset\n"); \
+		igt_skip_on(!is_sysfs_cold_reset_supported(slot_dir)); \
+	} while(0)
 
+	igt_subtest_group {
 		igt_describe("Unbinds driver from device, initiates cold reset"
 			     " then rebinds driver to device");
 		igt_subtest("unbind-cold-reset-rebind") {
+			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);
 			unbind_reset_rebind(&dev, COLD_RESET);
 			healthcheck(&dev);
 		}
 
 		igt_describe("Cold Resets device with bound driver");
 		igt_subtest("cold-reset-bound") {
+			SKIP_IF_NO_COLD_RESET(dev.fds.slot_dir);
 			initiate_device_reset(&dev, COLD_RESET);
 			/*
 			 * Cold reset will initiate card boot sequence again,
-- 
2.42.0


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

end of thread, other threads:[~2024-04-26 16:39 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-25 14:05 [PATCH i-g-t] tests/device_reset: move later skips into subtests Kamil Konieczny
2024-04-25 15:22 ` ✗ Fi.CI.BAT: failure for tests/device_reset: move later skips into subtests (rev3) Patchwork
2024-04-25 16:44   ` Kamil Konieczny
2024-04-26  7:56     ` Illipilli, TejasreeX
2024-04-26  7:43 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-26  8:55 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-04-26 10:08   ` Kamil Konieczny
2024-04-26 10:34   ` Kamil Konieczny
2024-04-26 16:35 ` [PATCH i-g-t] tests/device_reset: move later skips into subtests Zbigniew Kempczyński
  -- strict thread matches above, loose matches on Subject: below --
2024-04-05 12:56 Kamil Konieczny
2024-04-04 15:41 Kamil Konieczny
2024-04-10 17:49 ` Zbigniew Kempczyński

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.