Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/1] lib/igt_core: initialize srandom seed on startup
  2023-11-22 12:40 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
@ 2023-11-22 12:40 ` Lukasz Laguna
  2023-11-23 17:35   ` Kamil Konieczny
  0 siblings, 1 reply; 13+ messages in thread
From: Lukasz Laguna @ 2023-11-22 12:40 UTC (permalink / raw)
  To: igt-dev

Init seed for random number generator on IGT startup.

Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
 lib/igt_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/igt_core.c b/lib/igt_core.c
index 041e4b328..1abe3d337 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1283,6 +1283,7 @@ out:
 		bind_fbcon(false);
 		igt_kmsg(KMSG_INFO "%s: executing\n", command_str);
 		print_version();
+		igt_srandom();
 
 		sync();
 		oom_adjust_for_doom();
-- 
2.40.0

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

* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_core: initialize srandom seed on startup
  2023-11-22 12:40 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
@ 2023-11-23 17:35   ` Kamil Konieczny
  2023-11-24  9:04     ` Laguna, Lukasz
  0 siblings, 1 reply; 13+ messages in thread
From: Kamil Konieczny @ 2023-11-23 17:35 UTC (permalink / raw)
  To: igt-dev

Hi Lukasz,
On 2023-11-22 at 13:40:52 +0100, Lukasz Laguna wrote:
> Init seed for random number generator on IGT startup.
> 
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>

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

> ---
>  lib/igt_core.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 041e4b328..1abe3d337 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -1283,6 +1283,7 @@ out:
>  		bind_fbcon(false);
>  		igt_kmsg(KMSG_INFO "%s: executing\n", command_str);
>  		print_version();
> +		igt_srandom();
>  
>  		sync();
>  		oom_adjust_for_doom();
> -- 
> 2.40.0
> 

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

* [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup
@ 2023-11-24  9:03 Lukasz Laguna
  2023-11-24  9:03 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Lukasz Laguna @ 2023-11-24  9:03 UTC (permalink / raw)
  To: igt-dev

Lukasz Laguna (1):
  lib/igt_core: initialize srandom seed on startup

 lib/igt_core.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.40.0

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

* [igt-dev] [PATCH i-g-t 1/1] lib/igt_core: initialize srandom seed on startup
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
@ 2023-11-24  9:03 ` Lukasz Laguna
  2023-11-24 11:48 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_core: initialize srandom seed on startup (rev2) Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Lukasz Laguna @ 2023-11-24  9:03 UTC (permalink / raw)
  To: igt-dev

Init seed for random number generator on IGT startup.

Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 lib/igt_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/igt_core.c b/lib/igt_core.c
index 041e4b328..1abe3d337 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1283,6 +1283,7 @@ out:
 		bind_fbcon(false);
 		igt_kmsg(KMSG_INFO "%s: executing\n", command_str);
 		print_version();
+		igt_srandom();
 
 		sync();
 		oom_adjust_for_doom();
-- 
2.40.0

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

* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_core: initialize srandom seed on startup
  2023-11-23 17:35   ` Kamil Konieczny
@ 2023-11-24  9:04     ` Laguna, Lukasz
  0 siblings, 0 replies; 13+ messages in thread
From: Laguna, Lukasz @ 2023-11-24  9:04 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev, marcin.bernatowicz,
	zbigniew.kempczynski

On 11/23/2023 18:35, Kamil Konieczny wrote:
> Hi Lukasz,
> On 2023-11-22 at 13:40:52 +0100, Lukasz Laguna wrote:
>> Init seed for random number generator on IGT startup.
>>
>> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> LGTM
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Hi Kamil,
Thanks for review. I've just sent a patch with rb added. Can you please 
merge it?
>> ---
>>   lib/igt_core.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/lib/igt_core.c b/lib/igt_core.c
>> index 041e4b328..1abe3d337 100644
>> --- a/lib/igt_core.c
>> +++ b/lib/igt_core.c
>> @@ -1283,6 +1283,7 @@ out:
>>   		bind_fbcon(false);
>>   		igt_kmsg(KMSG_INFO "%s: executing\n", command_str);
>>   		print_version();
>> +		igt_srandom();
>>   
>>   		sync();
>>   		oom_adjust_for_doom();
>> -- 
>> 2.40.0
>>

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
  2023-11-24  9:03 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
@ 2023-11-24 11:48 ` Patchwork
  2023-11-24 12:50 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-11-24 11:48 UTC (permalink / raw)
  To: Laguna, Lukasz; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_core: initialize srandom seed on startup (rev2)
URL   : https://patchwork.freedesktop.org/series/126757/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13920 -> IGTPW_10263
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (38 -> 36)
------------------------------

  Additional (1): fi-bsw-n3050 
  Missing    (3): bat-dg2-9 fi-snb-2520m bat-dg1-5 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][1] ([fdo#109271]) +14 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html

  * igt@i915_selftest@live@hangcheck:
    - bat-adls-5:         [PASS][2] -> [DMESG-WARN][3] ([i915#5591])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-adls-5/igt@i915_selftest@live@hangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/bat-adls-5/igt@i915_selftest@live@hangcheck.html

  * igt@kms_hdmi_inject@inject-audio:
    - fi-bsw-n3050:       NOTRUN -> [FAIL][4] ([IGT#152])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5:
    - bat-adlp-11:        [PASS][5] -> [DMESG-FAIL][6] ([i915#6868])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gem_contexts:
    - bat-mtlp-6:         [DMESG-FAIL][7] ([i915#9579]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html

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

  [IGT#152]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/152
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
  [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7601 -> IGTPW_10263

  CI-20190529: 20190529
  CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
  IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@sriov_basic@bind-unbind-vf
-igt@sriov_basic@enable-vfs-autoprobe-off
-igt@sriov_basic@enable-vfs-autoprobe-on
-igt@sriov_basic@enable-vfs-bind-all-unbind-all
-igt@sriov_basic@enable-vfs-bind-unbind-each

== Logs ==

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

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

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

* [igt-dev] ✓ CI.xeBAT: success for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
  2023-11-24  9:03 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
  2023-11-24 11:48 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_core: initialize srandom seed on startup (rev2) Patchwork
@ 2023-11-24 12:50 ` Patchwork
  2023-11-25 14:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-11-24 12:50 UTC (permalink / raw)
  To: Laguna, Lukasz; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_core: initialize srandom seed on startup (rev2)
URL   : https://patchwork.freedesktop.org/series/126757/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7601_BAT -> XEIGTPW_10263_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([i915#2346])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [PASS][3] -> [FAIL][4] ([Intel XE#480]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3:
    - bat-dg2-oem2:       NOTRUN -> [FAIL][5] ([Intel XE#400] / [Intel XE#616])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html

  * igt@xe_exec_fault_mode@many-basic:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][6] ([Intel XE#288]) +17 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][7] ([Intel XE#288]) +17 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-atsm-2:         [INCOMPLETE][8] ([Intel XE#764]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - bat-dg2-oem2:       [INCOMPLETE][10] ([Intel XE#282] / [Intel XE#749]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3:
    - bat-dg2-oem2:       [INCOMPLETE][12] ([Intel XE#282] / [Intel XE#545]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html

  
#### Warnings ####

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
    - bat-dg2-oem2:       [TIMEOUT][14] ([Intel XE#430] / [Intel XE#530]) -> [FAIL][15] ([Intel XE#400] / [Intel XE#616])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3:
    - bat-dg2-oem2:       [TIMEOUT][16] ([Intel XE#530]) -> [FAIL][17] ([Intel XE#400] / [Intel XE#616])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10263/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3.html

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

  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
  [Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
  [Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530
  [Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749
  [Intel XE#764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/764
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346


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

  * IGT: IGT_7601 -> IGTPW_10263

  IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
  IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-518-1832821c7e4c5bd24353183f060f1435b2eb7992: 1832821c7e4c5bd24353183f060f1435b2eb7992

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
                   ` (2 preceding siblings ...)
  2023-11-24 12:50 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-11-25 14:19 ` Patchwork
  2023-11-27 17:18   ` Kamil Konieczny
  2023-11-29 18:30   ` Kamil Konieczny
  2023-12-02 22:42 ` Patchwork
  2023-12-07 10:29 ` ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 2 replies; 13+ messages in thread
From: Patchwork @ 2023-11-25 14:19 UTC (permalink / raw)
  To: Laguna, Lukasz; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_core: initialize srandom seed on startup (rev2)
URL   : https://patchwork.freedesktop.org/series/126757/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_balancer@nohangcheck:
    - shard-dg2:          [PASS][1] -> [TIMEOUT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html

  * igt@gem_workarounds@suspend-resume:
    - shard-tglu:         [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html

  * igt@sysfs_preempt_timeout@idempotent:
    - shard-dg2:          NOTRUN -> [TIMEOUT][5] +1 other test timeout
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html

  
#### Warnings ####

  * igt@gem_mmap_wc@write-read:
    - shard-dg2:          [SKIP][6] ([i915#4083]) -> [TIMEOUT][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][8] ([i915#3458]) -> [TIMEOUT][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@device_reset@cold-reset-bound:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7701])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8414])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html

  * igt@gem_busy@semaphore:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3936])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-snb:          NOTRUN -> [SKIP][15] ([fdo#109271]) +73 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][17] ([i915#9364])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8562])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html

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

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

  * igt@gem_ctx_persistence@legacy-engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html

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

  * igt@gem_eio@hibernate:
    - shard-dg2:          NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [PASS][24] -> [FAIL][25] ([i915#5784])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          NOTRUN -> [FAIL][27] ([i915#2846])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][29] ([i915#4812])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_fence@submit3:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html

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

  * igt@gem_exec_flush@basic-wb-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +5 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-dg2:          NOTRUN -> [SKIP][33] ([fdo#112283])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html

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

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

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html

  * igt@gem_exec_whisper@basic-queues-forked-all:
    - shard-dg2:          [PASS][38] -> [TIMEOUT][39] ([i915#7392])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4613])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

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

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +5 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4083]) +5 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html

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

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

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

  * igt@gem_pxp@create-regular-buffer:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4270]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#8428]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4079])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

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

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4879])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3297]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3323])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4958])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-mtlp:         NOTRUN -> [SKIP][60] ([fdo#109289]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([fdo#109289])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#2856])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][65] ([i915#9559])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html

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

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

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#6621]) +2 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6188])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_query@query-topology-unsupported:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([fdo#109302])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][71] ([i915#9311])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4212])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#8247]) +3 other tests fail
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][75] ([i915#8247]) +3 other tests fail
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html

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

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][78] ([fdo#111614]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#5190]) +15 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-tglu:         NOTRUN -> [SKIP][81] ([fdo#111615])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([fdo#111615]) +5 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@2x-modeset:
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2705])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html

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

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4087]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

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

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#7828]) +4 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([fdo#111827])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111827]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +101 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#7828]) +9 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#7828])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#7118]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3299])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][96] ([i915#7173])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#3359]) +2 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3555]) +5 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3359]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3546]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#109274])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([fdo#109274] / [i915#5354]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

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

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8588])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3469])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([fdo#109274] / [fdo#111767])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
    - shard-snb:          NOTRUN -> [SKIP][111] ([fdo#109271] / [fdo#111767])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#8381]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#109274]) +6 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#3637]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#3637])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#2672]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [FAIL][120] ([i915#6880])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          [PASS][122] -> [FAIL][123] ([i915#6880])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#8708]) +15 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5354]) +34 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3458]) +14 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][127] ([fdo#109280]) +2 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#1825]) +17 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][132] ([i915#7862]) +1 other test fail
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8806])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][135] -> [FAIL][136] ([i915#8292])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3555] / [i915#5235]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#5235]) +5 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#9683]) +2 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_basic:
    - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#9681])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr2_basic.html

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

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4235])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#4235])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#4235] / [i915#5190])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#8623])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([fdo#109309])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [FAIL][149] ([i915#9196])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
    - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#9196])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html

  * igt@perf_pmu@busy-double-start@vcs1:
    - shard-mtlp:         [PASS][153] -> [FAIL][154] ([i915#4349]) +2 other tests fail
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html

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

  * igt@perf_pmu@event-wait@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8807])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html

  * igt@perf_pmu@module-unload:
    - shard-dg2:          NOTRUN -> [FAIL][157] ([i915#5793])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html

  * igt@prime_udl:
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#109291])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html

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

  * igt@prime_vgem@basic-fence-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3708] / [i915#4077])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html

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

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#2575]) +5 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_submit_cl@multi-and-single-sync:
    - shard-tglu:         NOTRUN -> [SKIP][164] ([fdo#109315] / [i915#2575])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html

  * igt@v3d/v3d_submit_csd@single-out-sync:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#2575]) +10 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html

  * igt@vc4/vc4_tiling@get-after-free:
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#7711]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
    - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#7711]) +8 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html

  
#### Possible fixes ####

  * igt@gem_eio@kms:
    - shard-dg1:          [FAIL][168] ([i915#5784]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [FAIL][170] ([i915#2842]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][172] ([i915#2842]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_workarounds@reset-fd:
    - shard-mtlp:         [ABORT][174] ([i915#9414]) -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-mtlp:         [DMESG-FAIL][176] ([i915#9579]) -> [PASS][177]
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html

  * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-WARN][178] ([i915#2017]) -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][180] ([i915#5138]) -> [PASS][181] +1 other test pass
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [FAIL][182] ([i915#3743]) -> [PASS][183] +1 other test pass
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
    - shard-dg2:          [SKIP][184] ([i915#9519]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [FAIL][186] ([IGT#2]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [FAIL][188] ([i915#7484]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html

  * igt@sysfs_timeslice_duration@timeout@vcs0:
    - shard-dg2:          [ABORT][190] -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html

  
#### Warnings ####

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [DMESG-WARN][192] ([i915#4936] / [i915#5493]) -> [TIMEOUT][193] ([i915#5493])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][194] ([i915#7118]) -> [SKIP][195] ([i915#7118] / [i915#7162])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][196] ([i915#9351]) -> [INCOMPLETE][197] ([i915#5493])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
  [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
  [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
  [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
  [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
  [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
  [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
  [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
  [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
  [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
  [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
  [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
  [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
  [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
  [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
  [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
  [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
  [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
  [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
  [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
  [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
  [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7601 -> IGTPW_10263
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
  IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure  for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-25 14:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-27 17:18   ` Kamil Konieczny
  2023-11-29 18:30   ` Kamil Konieczny
  1 sibling, 0 replies; 13+ messages in thread
From: Kamil Konieczny @ 2023-11-27 17:18 UTC (permalink / raw)
  To: igt-dev; +Cc: lgci.bug.filing

Hi,

below regressions are unrelated to change,

Regards,
Kamil

On 2023-11-25 at 14:19:45 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_core: initialize srandom seed on startup (rev2)
> URL   : https://patchwork.freedesktop.org/series/126757/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10263_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10263_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10263_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_balancer@nohangcheck:
>     - shard-dg2:          [PASS][1] -> [TIMEOUT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-tglu:         [PASS][3] -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@sysfs_preempt_timeout@idempotent:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][5] +1 other test timeout
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_mmap_wc@write-read:
>     - shard-dg2:          [SKIP][6] ([i915#4083]) -> [TIMEOUT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>     - shard-dg2:          [SKIP][8] ([i915#3458]) -> [TIMEOUT][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10263_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@blit-reloc-keep-cache:
>     - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8411])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html
> 
>   * igt@device_reset@cold-reset-bound:
>     - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7701])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html
> 
>   * igt@drm_fdinfo@all-busy-check-all:
>     - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8414])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
> 
>   * igt@gem_busy@semaphore:
>     - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3936])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-snb:          NOTRUN -> [SKIP][15] ([fdo#109271]) +73 other tests skip
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
>     - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_create@create-ext-cpu-access-big:
>     - shard-dg2:          NOTRUN -> [INCOMPLETE][17] ([i915#9364])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
> 
>   * igt@gem_create@create-ext-set-pat:
>     - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8562])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
> 
>   * igt@gem_ctx_persistence@heartbeat-hang:
>     - shard-mtlp:         NOTRUN -> [SKIP][19] ([i915#8555])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html
> 
>   * igt@gem_ctx_persistence@heartbeat-many:
>     - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8555])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-cleanup:
>     - shard-snb:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html
> 
>   * igt@gem_ctx_sseu@invalid-sseu:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#280])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-dg2:          NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-dg1:          [PASS][24] -> [FAIL][25] ([i915#5784])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_capture@capture-invisible@lmem0:
>     - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-glk:          NOTRUN -> [FAIL][27] ([i915#2846])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul:
>     - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +2 other tests skip
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html
> 
>   * igt@gem_exec_fence@concurrent:
>     - shard-mtlp:         NOTRUN -> [SKIP][29] ([i915#4812])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
> 
>   * igt@gem_exec_fence@submit3:
>     - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html
> 
>   * igt@gem_exec_flush@basic-uc-set-default:
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#3539]) +1 other test skip
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
> 
>   * igt@gem_exec_flush@basic-wb-prw-default:
>     - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +5 other tests skip
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
> 
>   * igt@gem_exec_params@secure-non-root:
>     - shard-dg2:          NOTRUN -> [SKIP][33] ([fdo#112283])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html
> 
>   * igt@gem_exec_reloc@basic-wc-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html
> 
>   * igt@gem_exec_reloc@basic-write-cpu-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_schedule@preempt-queue-contexts-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
> 
>   * igt@gem_exec_whisper@basic-queues-forked-all:
>     - shard-dg2:          [PASS][38] -> [TIMEOUT][39] ([i915#7392])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html
> 
>   * igt@gem_fence_thrash@bo-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4860]) +4 other tests skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-random:
>     - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +1 other test skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4613])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_mmap_gtt@basic-write-read:
>     - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4077]) +8 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read.html
> 
>   * igt@gem_mmap_gtt@zero-extend:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +5 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
> 
>   * igt@gem_mmap_wc@bad-offset:
>     - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4083]) +5 other tests skip
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
> 
>   * igt@gem_mmap_wc@write-prefaulted:
>     - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
> 
>   * igt@gem_pread@display:
>     - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pread@display.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][48] ([i915#2658])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pread@snoop:
>     - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pread@snoop.html
> 
>   * igt@gem_pxp@create-regular-buffer:
>     - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4270]) +2 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html
> 
>   * igt@gem_pxp@verify-pxp-stale-ctx-execution:
>     - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#8428]) +1 other test skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4079])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_softpin@evict-snoop-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4885])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4879])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@coherency-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3297]) +3 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3323])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@sd-probe:
>     - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4958])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
> 
>   * igt@gen7_exec_parse@basic-allocation:
>     - shard-mtlp:         NOTRUN -> [SKIP][60] ([fdo#109289]) +3 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html
> 
>   * igt@gen7_exec_parse@batch-without-end:
>     - shard-dg2:          NOTRUN -> [SKIP][61] ([fdo#109289])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html
> 
>   * igt@gen9_exec_parse@batch-invalid-length:
>     - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#2856])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html
> 
>   * igt@gen9_exec_parse@batch-zero-length:
>     - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html
> 
>   * igt@gen9_exec_parse@shadow-peek:
>     - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#2856]) +4 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][65] ([i915#9559])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_module_load@resize-bar:
>     - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#6412])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@i915_module_load@resize-bar.html
> 
>   * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#7091])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@i915_pm_rps@min-max-config-idle:
>     - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#6621]) +2 other tests skip
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
> 
>   * igt@i915_query@query-topology-coherent-slice-mask:
>     - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6188])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
> 
>   * igt@i915_query@query-topology-unsupported:
>     - shard-mtlp:         NOTRUN -> [SKIP][70] ([fdo#109302])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
> 
>   * igt@i915_selftest@mock@memory_region:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][71] ([i915#9311])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html
> 
>   * igt@kms_addfb_basic@basic-x-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4212])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> 
>   * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
>     - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#8247]) +3 other tests fail
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [FAIL][75] ([i915#8247]) +3 other tests fail
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#4098] / [i915#9531])
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#1769] / [i915#3555])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][78] ([fdo#111614]) +3 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>     - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#5190]) +15 other tests skip
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5190]) +7 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>     - shard-tglu:         NOTRUN -> [SKIP][81] ([fdo#111615])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>     - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#6187]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][83] ([fdo#111615]) +5 other tests skip
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_joiner@2x-modeset:
>     - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2705])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4087] / [i915#7213]) +3 other tests skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4087]) +3 other tests skip
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4087]) +3 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> 
>   * igt@kms_chamelium_audio@hdmi-audio-edid:
>     - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#7828]) +4 other tests skip
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium_color@ctm-green-to-red:
>     - shard-mtlp:         NOTRUN -> [SKIP][89] ([fdo#111827])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html
> 
>   * igt@kms_chamelium_color@ctm-max:
>     - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111827]) +1 other test skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html
> 
>   * igt@kms_chamelium_color@ctm-negative:
>     - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +101 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html
> 
>   * igt@kms_chamelium_frames@dp-crc-fast:
>     - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#7828]) +9 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
> 
>   * igt@kms_chamelium_frames@dp-frame-dump:
>     - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#7828])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#7118]) +1 other test skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-1:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3299])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
> 
>   * igt@kms_content_protection@legacy@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][96] ([i915#7173])
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#3359]) +2 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) +1 other test skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x10:
>     - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3555]) +5 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3359]) +1 other test skip
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767] / [i915#5354])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
>     - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3546]) +1 other test skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>     - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#109274])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][105] ([fdo#109274] / [i915#5354]) +6 other tests skip
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>     - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4103] / [i915#4213]) +1 other test skip
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8588])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3469])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][110] ([fdo#109274] / [fdo#111767])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
>     - shard-snb:          NOTRUN -> [SKIP][111] ([fdo#109271] / [fdo#111767])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-fences-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#8381]) +1 other test skip
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#109274]) +6 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check:
>     - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#3637]) +3 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-tglu:         NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#3637])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#2672]) +1 other test skip
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#2672]) +3 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8810])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8810])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [FAIL][120] ([i915#6880])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][121] ([i915#8708]) +1 other test skip
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-dg2:          [PASS][122] -> [FAIL][123] ([i915#6880])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#8708]) +15 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5354]) +34 other tests skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3458]) +14 other tests skip
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-tglu:         NOTRUN -> [SKIP][127] ([fdo#109280]) +2 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
>     - shard-tglu:         NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#5460])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
>     - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#1825]) +17 other tests skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [FAIL][132] ([i915#7862]) +1 other test fail
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#3582]) +3 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
> 
>   * igt@kms_plane_multiple@tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8806])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
>     - shard-tglu:         [PASS][135] -> [FAIL][136] ([i915#8292])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#5235]) +7 other tests skip
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3555] / [i915#5235]) +1 other test skip
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#5235]) +19 other tests skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#5235]) +5 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#9683]) +2 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@psr2_basic:
>     - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#9681])
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr2_basic.html
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>     - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#9685])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4235])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#4235])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
>     - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#4235] / [i915#5190])
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#8623])
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-dg2:          NOTRUN -> [SKIP][148] ([fdo#109309])
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
>     - shard-snb:          NOTRUN -> [FAIL][149] ([i915#9196])
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
>     - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#9196])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@perf_pmu@busy-double-start@vcs1:
>     - shard-mtlp:         [PASS][153] -> [FAIL][154] ([i915#4349]) +2 other tests fail
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#8850])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@event-wait@rcs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8807])
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
> 
>   * igt@perf_pmu@module-unload:
>     - shard-dg2:          NOTRUN -> [FAIL][157] ([i915#5793])
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html
> 
>   * igt@prime_udl:
>     - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#109291])
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html
> 
>   * igt@prime_vgem@basic-fence-flip:
>     - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3708])
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
> 
>   * igt@prime_vgem@basic-fence-mmap:
>     - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077])
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
> 
>   * igt@prime_vgem@basic-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3708] / [i915#4077])
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html
> 
>   * igt@prime_vgem@basic-read:
>     - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#3291] / [i915#3708])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@prime_vgem@basic-read.html
> 
>   * igt@v3d/v3d_job_submission@array-job-submission:
>     - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#2575]) +5 other tests skip
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html
> 
>   * igt@v3d/v3d_submit_cl@multi-and-single-sync:
>     - shard-tglu:         NOTRUN -> [SKIP][164] ([fdo#109315] / [i915#2575])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html
> 
>   * igt@v3d/v3d_submit_csd@single-out-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#2575]) +10 other tests skip
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html
> 
>   * igt@vc4/vc4_tiling@get-after-free:
>     - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#7711]) +3 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html
> 
>   * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
>     - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#7711]) +8 other tests skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@kms:
>     - shard-dg1:          [FAIL][168] ([i915#5784]) -> [PASS][169]
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-tglu:         [FAIL][170] ([i915#2842]) -> [PASS][171]
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][172] ([i915#2842]) -> [PASS][173]
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_workarounds@reset-fd:
>     - shard-mtlp:         [ABORT][174] ([i915#9414]) -> [PASS][175]
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - shard-mtlp:         [DMESG-FAIL][176] ([i915#9579]) -> [PASS][177]
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html
> 
>   * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
>     - shard-mtlp:         [DMESG-WARN][178] ([i915#2017]) -> [PASS][179]
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-mtlp:         [FAIL][180] ([i915#5138]) -> [PASS][181] +1 other test pass
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-tglu:         [FAIL][182] ([i915#3743]) -> [PASS][183] +1 other test pass
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
>     - shard-dg2:          [SKIP][184] ([i915#9519]) -> [PASS][185]
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          [FAIL][186] ([IGT#2]) -> [PASS][187]
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html
> 
>   * igt@perf@non-zero-reason@0-rcs0:
>     - shard-dg2:          [FAIL][188] ([i915#7484]) -> [PASS][189]
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
> 
>   * igt@sysfs_timeslice_duration@timeout@vcs0:
>     - shard-dg2:          [ABORT][190] -> [PASS][191]
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          [DMESG-WARN][192] ([i915#4936] / [i915#5493]) -> [TIMEOUT][193] ([i915#5493])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-dg2:          [SKIP][194] ([i915#7118]) -> [SKIP][195] ([i915#7118] / [i915#7162])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg2:          [CRASH][196] ([i915#9351]) -> [INCOMPLETE][197] ([i915#5493])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>   [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
>   [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
>   [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
>   [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
>   [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
>   [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
>   [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
>   [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
>   [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
>   [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
>   [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
>   [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
>   [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
>   [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>   [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
>   [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
>   [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
>   [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
>   [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
>   [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
>   [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
>   [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
>   [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
>   [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
>   [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
>   [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
>   [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
>   [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
>   [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
>   [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
>   [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
>   [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
>   [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
>   [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
>   [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
>   [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
>   [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
>   [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
>   [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
>   [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
>   [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
>   [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
>   [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
>   [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
>   [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
>   [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
>   [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
>   [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
>   [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
>   [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
>   [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
>   [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
>   [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
>   [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
>   [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7601 -> IGTPW_10263
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
>   IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure  for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-25 14:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2023-11-27 17:18   ` Kamil Konieczny
@ 2023-11-29 18:30   ` Kamil Konieczny
  2023-12-07 11:51     ` Illipilli, TejasreeX
  1 sibling, 1 reply; 13+ messages in thread
From: Kamil Konieczny @ 2023-11-29 18:30 UTC (permalink / raw)
  To: igt-dev; +Cc: I915-ci-infra, lgci.bug.filing

Hi,

below regressions are unrelated to change,

Regards,
Kamil

On 2023-11-25 at 14:19:45 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_core: initialize srandom seed on startup (rev2)
> URL   : https://patchwork.freedesktop.org/series/126757/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10263_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10263_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10263_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_balancer@nohangcheck:
>     - shard-dg2:          [PASS][1] -> [TIMEOUT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-tglu:         [PASS][3] -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@sysfs_preempt_timeout@idempotent:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][5] +1 other test timeout
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_mmap_wc@write-read:
>     - shard-dg2:          [SKIP][6] ([i915#4083]) -> [TIMEOUT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>     - shard-dg2:          [SKIP][8] ([i915#3458]) -> [TIMEOUT][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10263_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@blit-reloc-keep-cache:
>     - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8411])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html
> 
>   * igt@device_reset@cold-reset-bound:
>     - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7701])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html
> 
>   * igt@drm_fdinfo@all-busy-check-all:
>     - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8414])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
> 
>   * igt@gem_busy@semaphore:
>     - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3936])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-snb:          NOTRUN -> [SKIP][15] ([fdo#109271]) +73 other tests skip
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
>     - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_create@create-ext-cpu-access-big:
>     - shard-dg2:          NOTRUN -> [INCOMPLETE][17] ([i915#9364])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
> 
>   * igt@gem_create@create-ext-set-pat:
>     - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8562])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
> 
>   * igt@gem_ctx_persistence@heartbeat-hang:
>     - shard-mtlp:         NOTRUN -> [SKIP][19] ([i915#8555])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html
> 
>   * igt@gem_ctx_persistence@heartbeat-many:
>     - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8555])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-cleanup:
>     - shard-snb:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html
> 
>   * igt@gem_ctx_sseu@invalid-sseu:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#280])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-dg2:          NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-dg1:          [PASS][24] -> [FAIL][25] ([i915#5784])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_capture@capture-invisible@lmem0:
>     - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-glk:          NOTRUN -> [FAIL][27] ([i915#2846])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul:
>     - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +2 other tests skip
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html
> 
>   * igt@gem_exec_fence@concurrent:
>     - shard-mtlp:         NOTRUN -> [SKIP][29] ([i915#4812])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
> 
>   * igt@gem_exec_fence@submit3:
>     - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html
> 
>   * igt@gem_exec_flush@basic-uc-set-default:
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#3539]) +1 other test skip
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
> 
>   * igt@gem_exec_flush@basic-wb-prw-default:
>     - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +5 other tests skip
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
> 
>   * igt@gem_exec_params@secure-non-root:
>     - shard-dg2:          NOTRUN -> [SKIP][33] ([fdo#112283])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html
> 
>   * igt@gem_exec_reloc@basic-wc-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html
> 
>   * igt@gem_exec_reloc@basic-write-cpu-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_schedule@preempt-queue-contexts-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
> 
>   * igt@gem_exec_whisper@basic-queues-forked-all:
>     - shard-dg2:          [PASS][38] -> [TIMEOUT][39] ([i915#7392])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html
> 
>   * igt@gem_fence_thrash@bo-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4860]) +4 other tests skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-random:
>     - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +1 other test skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4613])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_mmap_gtt@basic-write-read:
>     - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4077]) +8 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read.html
> 
>   * igt@gem_mmap_gtt@zero-extend:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +5 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
> 
>   * igt@gem_mmap_wc@bad-offset:
>     - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4083]) +5 other tests skip
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
> 
>   * igt@gem_mmap_wc@write-prefaulted:
>     - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
> 
>   * igt@gem_pread@display:
>     - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pread@display.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][48] ([i915#2658])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pread@snoop:
>     - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pread@snoop.html
> 
>   * igt@gem_pxp@create-regular-buffer:
>     - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4270]) +2 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html
> 
>   * igt@gem_pxp@verify-pxp-stale-ctx-execution:
>     - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#8428]) +1 other test skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4079])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_softpin@evict-snoop-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4885])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4879])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@coherency-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3297]) +3 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3323])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@sd-probe:
>     - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4958])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
> 
>   * igt@gen7_exec_parse@basic-allocation:
>     - shard-mtlp:         NOTRUN -> [SKIP][60] ([fdo#109289]) +3 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html
> 
>   * igt@gen7_exec_parse@batch-without-end:
>     - shard-dg2:          NOTRUN -> [SKIP][61] ([fdo#109289])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html
> 
>   * igt@gen9_exec_parse@batch-invalid-length:
>     - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#2856])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html
> 
>   * igt@gen9_exec_parse@batch-zero-length:
>     - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html
> 
>   * igt@gen9_exec_parse@shadow-peek:
>     - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#2856]) +4 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][65] ([i915#9559])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_module_load@resize-bar:
>     - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#6412])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@i915_module_load@resize-bar.html
> 
>   * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#7091])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@i915_pm_rps@min-max-config-idle:
>     - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#6621]) +2 other tests skip
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
> 
>   * igt@i915_query@query-topology-coherent-slice-mask:
>     - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6188])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
> 
>   * igt@i915_query@query-topology-unsupported:
>     - shard-mtlp:         NOTRUN -> [SKIP][70] ([fdo#109302])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
> 
>   * igt@i915_selftest@mock@memory_region:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][71] ([i915#9311])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html
> 
>   * igt@kms_addfb_basic@basic-x-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4212])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> 
>   * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
>     - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#8247]) +3 other tests fail
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [FAIL][75] ([i915#8247]) +3 other tests fail
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#4098] / [i915#9531])
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#1769] / [i915#3555])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][78] ([fdo#111614]) +3 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>     - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#5190]) +15 other tests skip
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5190]) +7 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>     - shard-tglu:         NOTRUN -> [SKIP][81] ([fdo#111615])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>     - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#6187]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][83] ([fdo#111615]) +5 other tests skip
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_joiner@2x-modeset:
>     - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2705])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4087] / [i915#7213]) +3 other tests skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4087]) +3 other tests skip
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4087]) +3 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> 
>   * igt@kms_chamelium_audio@hdmi-audio-edid:
>     - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#7828]) +4 other tests skip
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium_color@ctm-green-to-red:
>     - shard-mtlp:         NOTRUN -> [SKIP][89] ([fdo#111827])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html
> 
>   * igt@kms_chamelium_color@ctm-max:
>     - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111827]) +1 other test skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html
> 
>   * igt@kms_chamelium_color@ctm-negative:
>     - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +101 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html
> 
>   * igt@kms_chamelium_frames@dp-crc-fast:
>     - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#7828]) +9 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
> 
>   * igt@kms_chamelium_frames@dp-frame-dump:
>     - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#7828])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#7118]) +1 other test skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-1:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3299])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
> 
>   * igt@kms_content_protection@legacy@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][96] ([i915#7173])
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#3359]) +2 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) +1 other test skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x10:
>     - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3555]) +5 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3359]) +1 other test skip
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767] / [i915#5354])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
>     - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3546]) +1 other test skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>     - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#109274])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][105] ([fdo#109274] / [i915#5354]) +6 other tests skip
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>     - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4103] / [i915#4213]) +1 other test skip
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8588])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3469])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][110] ([fdo#109274] / [fdo#111767])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
>     - shard-snb:          NOTRUN -> [SKIP][111] ([fdo#109271] / [fdo#111767])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-fences-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#8381]) +1 other test skip
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#109274]) +6 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check:
>     - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#3637]) +3 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-tglu:         NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#3637])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#2672]) +1 other test skip
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#2672]) +3 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8810])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8810])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [FAIL][120] ([i915#6880])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][121] ([i915#8708]) +1 other test skip
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-dg2:          [PASS][122] -> [FAIL][123] ([i915#6880])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#8708]) +15 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5354]) +34 other tests skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3458]) +14 other tests skip
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-tglu:         NOTRUN -> [SKIP][127] ([fdo#109280]) +2 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
>     - shard-tglu:         NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#5460])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
>     - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#1825]) +17 other tests skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [FAIL][132] ([i915#7862]) +1 other test fail
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#3582]) +3 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
> 
>   * igt@kms_plane_multiple@tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8806])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
>     - shard-tglu:         [PASS][135] -> [FAIL][136] ([i915#8292])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#5235]) +7 other tests skip
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3555] / [i915#5235]) +1 other test skip
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#5235]) +19 other tests skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#5235]) +5 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#9683]) +2 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@psr2_basic:
>     - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#9681])
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr2_basic.html
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>     - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#9685])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4235])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#4235])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
>     - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#4235] / [i915#5190])
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#8623])
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-dg2:          NOTRUN -> [SKIP][148] ([fdo#109309])
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
>     - shard-snb:          NOTRUN -> [FAIL][149] ([i915#9196])
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
>     - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#9196])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@perf_pmu@busy-double-start@vcs1:
>     - shard-mtlp:         [PASS][153] -> [FAIL][154] ([i915#4349]) +2 other tests fail
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#8850])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@event-wait@rcs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8807])
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
> 
>   * igt@perf_pmu@module-unload:
>     - shard-dg2:          NOTRUN -> [FAIL][157] ([i915#5793])
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html
> 
>   * igt@prime_udl:
>     - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#109291])
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html
> 
>   * igt@prime_vgem@basic-fence-flip:
>     - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3708])
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
> 
>   * igt@prime_vgem@basic-fence-mmap:
>     - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077])
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
> 
>   * igt@prime_vgem@basic-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3708] / [i915#4077])
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html
> 
>   * igt@prime_vgem@basic-read:
>     - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#3291] / [i915#3708])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@prime_vgem@basic-read.html
> 
>   * igt@v3d/v3d_job_submission@array-job-submission:
>     - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#2575]) +5 other tests skip
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html
> 
>   * igt@v3d/v3d_submit_cl@multi-and-single-sync:
>     - shard-tglu:         NOTRUN -> [SKIP][164] ([fdo#109315] / [i915#2575])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html
> 
>   * igt@v3d/v3d_submit_csd@single-out-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#2575]) +10 other tests skip
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html
> 
>   * igt@vc4/vc4_tiling@get-after-free:
>     - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#7711]) +3 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html
> 
>   * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
>     - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#7711]) +8 other tests skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@kms:
>     - shard-dg1:          [FAIL][168] ([i915#5784]) -> [PASS][169]
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-tglu:         [FAIL][170] ([i915#2842]) -> [PASS][171]
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][172] ([i915#2842]) -> [PASS][173]
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_workarounds@reset-fd:
>     - shard-mtlp:         [ABORT][174] ([i915#9414]) -> [PASS][175]
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - shard-mtlp:         [DMESG-FAIL][176] ([i915#9579]) -> [PASS][177]
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html
> 
>   * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
>     - shard-mtlp:         [DMESG-WARN][178] ([i915#2017]) -> [PASS][179]
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-mtlp:         [FAIL][180] ([i915#5138]) -> [PASS][181] +1 other test pass
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-tglu:         [FAIL][182] ([i915#3743]) -> [PASS][183] +1 other test pass
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
>     - shard-dg2:          [SKIP][184] ([i915#9519]) -> [PASS][185]
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          [FAIL][186] ([IGT#2]) -> [PASS][187]
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html
> 
>   * igt@perf@non-zero-reason@0-rcs0:
>     - shard-dg2:          [FAIL][188] ([i915#7484]) -> [PASS][189]
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
> 
>   * igt@sysfs_timeslice_duration@timeout@vcs0:
>     - shard-dg2:          [ABORT][190] -> [PASS][191]
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          [DMESG-WARN][192] ([i915#4936] / [i915#5493]) -> [TIMEOUT][193] ([i915#5493])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-dg2:          [SKIP][194] ([i915#7118]) -> [SKIP][195] ([i915#7118] / [i915#7162])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg2:          [CRASH][196] ([i915#9351]) -> [INCOMPLETE][197] ([i915#5493])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>   [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
>   [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
>   [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
>   [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
>   [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
>   [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
>   [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
>   [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
>   [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
>   [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
>   [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
>   [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
>   [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
>   [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>   [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
>   [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
>   [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
>   [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
>   [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
>   [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
>   [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
>   [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
>   [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
>   [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
>   [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
>   [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
>   [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
>   [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
>   [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
>   [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
>   [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
>   [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
>   [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
>   [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
>   [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
>   [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
>   [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
>   [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
>   [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
>   [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
>   [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
>   [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
>   [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
>   [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
>   [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
>   [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
>   [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
>   [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
>   [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
>   [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
>   [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
>   [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
>   [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
>   [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
>   [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7601 -> IGTPW_10263
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
>   IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
                   ` (3 preceding siblings ...)
  2023-11-25 14:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-12-02 22:42 ` Patchwork
  2023-12-07 10:29 ` ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-12-02 22:42 UTC (permalink / raw)
  To: Lukasz Laguna; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_core: initialize srandom seed on startup (rev2)
URL   : https://patchwork.freedesktop.org/series/126757/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_balancer@nohangcheck:
    - shard-dg2:          [PASS][1] -> [TIMEOUT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-dg2:          NOTRUN -> [TIMEOUT][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_psr@psr2_primary_blt.html

  
#### Warnings ####

  * igt@gem_mmap_wc@write-read:
    - shard-dg2:          [SKIP][4] ([i915#4083]) -> [TIMEOUT][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][6] ([i915#3458]) -> [TIMEOUT][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-keep-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#8411])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html

  * igt@device_reset@cold-reset-bound:
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#7701])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][10] ([i915#8414])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][11] ([i915#8414]) +11 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html

  * igt@gem_busy@semaphore:
    - shard-mtlp:         NOTRUN -> [SKIP][12] ([i915#3936])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-snb:          NOTRUN -> [SKIP][13] ([fdo#109271]) +73 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][15] ([i915#9364])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8562])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html

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

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

  * igt@gem_ctx_persistence@legacy-engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html

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

  * igt@gem_eio@hibernate:
    - shard-dg2:          NOTRUN -> [ABORT][21] ([i915#7975] / [i915#8213])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [PASS][22] -> [FAIL][23] ([i915#5784])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          NOTRUN -> [FAIL][25] ([i915#2846])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul:
    - shard-mtlp:         NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][27] ([i915#4812])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_fence@submit3:
    - shard-dg2:          NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html

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

  * igt@gem_exec_flush@basic-wb-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +5 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-dg2:          NOTRUN -> [SKIP][31] ([fdo#112283])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html

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

  * igt@gem_exec_reloc@basic-write-cpu-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#3281]) +4 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain:
    - shard-dg2:          NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html

  * igt@gem_exec_whisper@basic-queues-forked-all:
    - shard-dg2:          [PASS][36] -> [TIMEOUT][37] ([i915#7392])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#4613]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#4613])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

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

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#4077]) +5 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4083]) +5 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4083]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html

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

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

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

  * igt@gem_pxp@create-regular-buffer:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#4270]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4270]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#8428]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][51] ([i915#4079])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

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

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#4879])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#3297]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3323])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][56] ([i915#3297]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#3297] / [i915#4958])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_workarounds@suspend-resume:
    - shard-tglu:         [PASS][58] -> [INCOMPLETE][59] ([i915#8797])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-mtlp:         NOTRUN -> [SKIP][60] ([fdo#109289]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([fdo#109289])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#2856])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][65] ([i915#9559])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html

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

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

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#6621]) +2 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6188])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_query@query-topology-unsupported:
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([fdo#109302])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][71] ([i915#9311])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4212])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#8247]) +3 other tests fail
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][75] ([i915#8247]) +3 other tests fail
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html

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

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][78] ([fdo#111614]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#5190]) +15 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-tglu:         NOTRUN -> [SKIP][81] ([fdo#111615])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][83] ([fdo#111615]) +5 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@2x-modeset:
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2705])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html

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

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4087]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

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

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#7828]) +4 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][89] ([fdo#111827])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111827]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +101 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#7828]) +9 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#7828])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#7118]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3299])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][96] ([i915#7173])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#3359]) +2 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3555]) +5 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3359]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3546]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#109274])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([fdo#109274] / [i915#5354]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

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

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8588])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3469])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([fdo#109274] / [fdo#111767])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
    - shard-snb:          NOTRUN -> [SKIP][111] ([fdo#109271] / [fdo#111767])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#8381]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#109274]) +6 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#3637]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#3637])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#2672]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [FAIL][120] ([i915#6880])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          [PASS][122] -> [FAIL][123] ([i915#6880])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#8708]) +15 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5354]) +34 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3458]) +14 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][127] ([fdo#109280]) +2 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html

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

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#1825]) +17 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][132] ([i915#7862]) +1 other test fail
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8806])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][135] -> [FAIL][136] ([i915#8292])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3555] / [i915#5235]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#5235]) +5 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#9683]) +2 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2_basic:
    - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#9681])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr2_basic.html

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

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4235])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#4235])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#4235] / [i915#5190])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#8623])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([fdo#109309])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [FAIL][149] ([i915#9196])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
    - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#9196])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html

  * igt@perf_pmu@busy-double-start@vcs1:
    - shard-mtlp:         [PASS][153] -> [FAIL][154] ([i915#4349]) +2 other tests fail
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html

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

  * igt@perf_pmu@event-wait@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8807])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html

  * igt@perf_pmu@module-unload:
    - shard-dg2:          NOTRUN -> [FAIL][157] ([i915#5793])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html

  * igt@prime_udl:
    - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#109291])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html

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

  * igt@prime_vgem@basic-fence-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3708] / [i915#4077])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html

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

  * igt@sysfs_preempt_timeout@idempotent:
    - shard-dg2:          NOTRUN -> [TIMEOUT][163] ([i915#9776])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#2575]) +5 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_submit_cl@multi-and-single-sync:
    - shard-tglu:         NOTRUN -> [SKIP][165] ([fdo#109315] / [i915#2575])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html

  * igt@v3d/v3d_submit_csd@single-out-sync:
    - shard-dg2:          NOTRUN -> [SKIP][166] ([i915#2575]) +10 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html

  * igt@vc4/vc4_tiling@get-after-free:
    - shard-mtlp:         NOTRUN -> [SKIP][167] ([i915#7711]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#7711]) +8 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html

  
#### Possible fixes ####

  * igt@gem_eio@kms:
    - shard-dg1:          [FAIL][169] ([i915#5784]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [FAIL][171] ([i915#2842]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][173] ([i915#2842]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_workarounds@reset-fd:
    - shard-mtlp:         [ABORT][175] ([i915#9414]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-mtlp:         [DMESG-FAIL][177] ([i915#9579]) -> [PASS][178]
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html

  * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-WARN][179] ([i915#2017]) -> [PASS][180]
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][181] ([i915#5138]) -> [PASS][182] +1 other test pass
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [FAIL][183] ([i915#3743]) -> [PASS][184] +1 other test pass
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
    - shard-dg2:          [SKIP][185] ([i915#9519]) -> [PASS][186]
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [FAIL][187] ([IGT#2]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [FAIL][189] ([i915#7484]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html

  * igt@sysfs_timeslice_duration@timeout@vcs0:
    - shard-dg2:          [ABORT][191] -> [PASS][192]
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html

  
#### Warnings ####

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [DMESG-WARN][193] ([i915#4936] / [i915#5493]) -> [TIMEOUT][194] ([i915#5493])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][195] ([i915#7118]) -> [SKIP][196] ([i915#7118] / [i915#7162])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][197] ([i915#9351]) -> [INCOMPLETE][198] ([i915#5493])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
  [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
  [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
  [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
  [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
  [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
  [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
  [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
  [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
  [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
  [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
  [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
  [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
  [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
  [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
  [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
  [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
  [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
  [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
  [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
  [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
  [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
  [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
  [i915#9776]: https://gitlab.freedesktop.org/drm/intel/issues/9776


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7601 -> IGTPW_10263
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
  IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* ✓ Fi.CI.IGT: success for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
                   ` (4 preceding siblings ...)
  2023-12-02 22:42 ` Patchwork
@ 2023-12-07 10:29 ` Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2023-12-07 10:29 UTC (permalink / raw)
  To: Lukasz Laguna; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_core: initialize srandom seed on startup (rev2)
URL   : https://patchwork.freedesktop.org/series/126757/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
====================================================

Summary
-------

  **WARNING**

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

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

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

  Additional (3): shard-snb-0 shard-glk-0 shard-rkl 

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

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

### IGT changes ###

#### Warnings ####

  * igt@gem_mmap_wc@write-read:
    - shard-dg2:          [SKIP][1] ([i915#4083]) -> [TIMEOUT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][3] ([i915#3458]) -> [TIMEOUT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-keep-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#8411])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html

  * igt@device_reset@cold-reset-bound:
    - shard-dg2:          NOTRUN -> [SKIP][6] ([i915#7701])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html

  * igt@drm_fdinfo@all-busy-check-all:
    - shard-dg2:          NOTRUN -> [SKIP][7] ([i915#8414])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html

  * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#8414]) +11 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html

  * igt@gem_busy@semaphore:
    - shard-mtlp:         NOTRUN -> [SKIP][9] ([i915#3936])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-snb:          NOTRUN -> [SKIP][10] ([fdo#109271]) +92 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][12] ([i915#9364])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][13] ([i915#8562])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8555])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html

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

  * igt@gem_ctx_persistence@legacy-engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#1099])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html

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

  * igt@gem_eio@hibernate:
    - shard-dg2:          NOTRUN -> [ABORT][18] ([i915#7975] / [i915#8213])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [PASS][19] -> [FAIL][20] ([i915#5784])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@nohangcheck:
    - shard-dg2:          [PASS][21] -> [TIMEOUT][22] ([i915#9822])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html

  * igt@gem_exec_capture@capture-invisible@lmem0:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          NOTRUN -> [FAIL][24] ([i915#2846])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul:
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#4473] / [i915#4771]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][26] ([i915#4812])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_fence@submit3:
    - shard-dg2:          NOTRUN -> [SKIP][27] ([i915#4812]) +2 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html

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

  * igt@gem_exec_flush@basic-wb-prw-default:
    - shard-dg2:          NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +5 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([fdo#112283])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html

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

  * igt@gem_exec_reloc@basic-write-cpu-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html

  * igt@gem_exec_whisper@basic-queues-forked-all:
    - shard-dg2:          [PASS][35] -> [TIMEOUT][36] ([i915#7392])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-glk:          NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#4613]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][39] ([i915#4613])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

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

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4077]) +6 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@bad-offset:
    - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4083]) +5 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#4083]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html

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

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

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

  * igt@gem_pxp@create-regular-buffer:
    - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html

  * igt@gem_pxp@verify-pxp-stale-ctx-execution:
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#4270]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#8428]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4079])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

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

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4879])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#3297]) +3 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3323])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4958])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_workarounds@suspend-resume:
    - shard-tglu:         [PASS][57] -> [INCOMPLETE][58] ([i915#8797])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-mtlp:         NOTRUN -> [SKIP][59] ([fdo#109289]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([fdo#109289])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-mtlp:         NOTRUN -> [SKIP][61] ([i915#2856])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html

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

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][64] ([i915#9559])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html

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

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

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
    - shard-dg1:          [PASS][67] -> [FAIL][68] ([i915#3591])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6621]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#6188])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_query@query-topology-unsupported:
    - shard-mtlp:         NOTRUN -> [SKIP][71] ([fdo#109302])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][73] ([i915#9311])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html

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

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#4212])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html

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

  * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [FAIL][77] ([i915#8247]) +3 other tests fail
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html

  * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [FAIL][78] ([i915#8247]) +3 other tests fail
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html

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

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

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][81] ([fdo#111614]) +3 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#5190]) +15 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-tglu:         NOTRUN -> [SKIP][84] ([fdo#111615])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][86] ([fdo#111615]) +5 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@2x-modeset:
    - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#2705])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#5354] / [i915#6095]) +30 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][89] ([i915#5354] / [i915#6095]) +7 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([i915#5354]) +84 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

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

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#4087]) +3 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

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

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-mtlp:         NOTRUN -> [SKIP][94] ([i915#7828]) +4 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([fdo#111827])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([fdo#111827]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-glk:          NOTRUN -> [SKIP][97] ([fdo#109271]) +143 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][98] ([i915#7828]) +9 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-tglu:         NOTRUN -> [SKIP][99] ([i915#7828])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][100] ([i915#7118]) +1 other test skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#3299])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][102] ([i915#7173])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html

  * igt@kms_content_protection@mei-interface:
    - shard-mtlp:         NOTRUN -> [SKIP][103] ([i915#8063] / [i915#9433])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][104] ([i915#3359]) +2 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][105] ([i915#3555] / [i915#8814]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#3555]) +5 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][107] ([i915#3359]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([fdo#109274] / [fdo#111767] / [i915#5354])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-mtlp:         NOTRUN -> [SKIP][109] ([i915#3546]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-tglu:         NOTRUN -> [SKIP][111] ([fdo#109274])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([fdo#109274] / [i915#5354]) +6 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

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

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#8588])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][115] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#3469])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@chamelium:
    - shard-tglu:         NOTRUN -> [SKIP][117] ([i915#2065] / [i915#4854])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-6/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#658])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([fdo#109274] / [fdo#111767])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
    - shard-snb:          NOTRUN -> [SKIP][120] ([fdo#109271] / [fdo#111767])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#8381]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][122] ([fdo#109274]) +6 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#3637]) +3 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][124] ([fdo#109274] / [i915#3637])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][125] ([i915#2672]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [FAIL][129] ([i915#6880])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html

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

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-dg2:          [PASS][131] -> [FAIL][132] ([i915#6880])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][133] ([i915#8708]) +15 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][134] ([i915#3458]) +14 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([fdo#109280]) +2 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([fdo#110189]) +2 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html

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

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#9653])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-mtlp:         NOTRUN -> [SKIP][139] ([i915#1825]) +17 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8228]) +1 other test skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][141] ([i915#7862]) +1 other test fail
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

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

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#3555] / [i915#8806])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][144] -> [FAIL][145] ([i915#8292])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#9423]) +7 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-dp-4.html

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

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][149] ([i915#3555] / [i915#5235]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html

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

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][151] ([i915#5235]) +5 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#5978])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
    - shard-tglu:         [PASS][153] -> [FAIL][154] ([i915#9295])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][155] ([i915#8430])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2:          [PASS][156] -> [SKIP][157] ([i915#9519])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@pc8-residency:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([fdo#109293] / [fdo#109506]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_pm_rpm@pc8-residency.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#9683]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@pr_sprite_plane_onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#9688]) +3 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_psr@pr_sprite_plane_onoff.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-dg2:          NOTRUN -> [TIMEOUT][161] ([i915#9823])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_psr@psr_cursor_plane_onoff:
    - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#9681]) +6 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_psr@psr_cursor_plane_onoff.html

  * igt@kms_psr@psr_primary_mmap_gtt:
    - shard-dg2:          NOTRUN -> [SKIP][163] ([i915#9673])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr_primary_mmap_gtt.html

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

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#4235])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#4235])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#4235] / [i915#5190])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#8623])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2:          NOTRUN -> [SKIP][169] ([fdo#109309])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [FAIL][170] ([i915#9196])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-4.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [FAIL][171] ([i915#9196])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
    - shard-tglu:         [PASS][172] -> [FAIL][173] ([i915#9196])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-glk:          NOTRUN -> [SKIP][174] ([fdo#109271] / [i915#2437])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#2437]) +2 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-mtlp:         NOTRUN -> [SKIP][176] ([i915#2437] / [i915#9412])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@perf_pmu@busy-double-start@vcs1:
    - shard-mtlp:         [PASS][177] -> [FAIL][178] ([i915#4349]) +2 other tests fail
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html

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

  * igt@perf_pmu@event-wait@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8807])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html

  * igt@perf_pmu@module-unload:
    - shard-dg2:          NOTRUN -> [FAIL][181] ([i915#5793])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html

  * igt@prime_udl:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([fdo#109291])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html

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

  * igt@prime_vgem@basic-fence-mmap:
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#3708] / [i915#4077])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#3708] / [i915#4077])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html

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

  * igt@sysfs_preempt_timeout@idempotent:
    - shard-dg2:          NOTRUN -> [TIMEOUT][187] ([i915#9776])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#2575]) +5 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_submit_cl@multi-and-single-sync:
    - shard-tglu:         NOTRUN -> [SKIP][189] ([fdo#109315] / [i915#2575])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html

  * igt@v3d/v3d_submit_csd@single-out-sync:
    - shard-dg2:          NOTRUN -> [SKIP][190] ([i915#2575]) +10 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html

  * igt@vc4/vc4_tiling@get-after-free:
    - shard-mtlp:         NOTRUN -> [SKIP][191] ([i915#7711]) +3 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html

  * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([i915#7711]) +8 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html

  
#### Possible fixes ####

  * igt@gem_eio@kms:
    - shard-dg1:          [FAIL][193] ([i915#5784]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglu:         [FAIL][195] ([i915#2842]) -> [PASS][196]
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][197] ([i915#2842]) -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_workarounds@reset-fd:
    - shard-mtlp:         [ABORT][199] ([i915#9414]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-mtlp:         [DMESG-FAIL][201] ([i915#9579]) -> [PASS][202]
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html

  * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-WARN][203] ([i915#2017]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][205] ([i915#5138]) -> [PASS][206] +1 other test pass
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         [FAIL][207] ([i915#3743]) -> [PASS][208] +1 other test pass
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [SKIP][209] ([i915#9519]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_sysfs_edid_timing:
    - shard-dg2:          [FAIL][211] ([IGT#2]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          [FAIL][213] ([i915#7484]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html

  * igt@sysfs_timeslice_duration@timeout@vcs0:
    - shard-dg2:          [ABORT][215] -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html

  
#### Warnings ####

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [DMESG-WARN][217] ([i915#4936] / [i915#5493]) -> [TIMEOUT][218] ([i915#5493])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          [SKIP][219] ([i915#7118]) -> [SKIP][220] ([i915#7118] / [i915#7162])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          [CRASH][221] ([i915#9351]) -> [INCOMPLETE][222] ([i915#5493])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  
  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
  [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
  [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
  [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
  [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
  [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
  [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
  [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
  [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
  [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
  [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
  [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
  [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
  [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
  [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
  [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
  [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
  [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
  [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
  [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
  [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
  [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
  [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
  [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
  [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
  [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
  [i915#9776]: https://gitlab.freedesktop.org/drm/intel/issues/9776
  [i915#9822]: https://gitlab.freedesktop.org/drm/intel/issues/9822
  [i915#9823]: https://gitlab.freedesktop.org/drm/intel/issues/9823


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7601 -> IGTPW_10263
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
  IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* RE: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_core: initialize srandom seed on startup (rev2)
  2023-11-29 18:30   ` Kamil Konieczny
@ 2023-12-07 11:51     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 13+ messages in thread
From: Illipilli, TejasreeX @ 2023-12-07 11:51 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev@lists.freedesktop.org
  Cc: I915-ci-infra@lists.freedesktop.org, LGCI Bug Filing

Hi, 

https://patchwork.freedesktop.org/series/126757/#rev2 - Re-reported

Thanks, 
Tejasree

-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com> 
Sent: Thursday, November 30, 2023 12:01 AM
To: igt-dev@lists.freedesktop.org
Cc: Laguna, Lukasz <lukasz.laguna@intel.com>; I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_core: initialize srandom seed on startup (rev2)

Hi,

below regressions are unrelated to change,

Regards,
Kamil

On 2023-11-25 at 14:19:45 -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_core: initialize srandom seed on startup (rev2)
> URL   : https://patchwork.freedesktop.org/series/126757/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10263_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_10263_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_10263_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
> 
> Participating hosts (10 -> 10)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_10263_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_exec_balancer@nohangcheck:
>     - shard-dg2:          [PASS][1] -> [TIMEOUT][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_balancer@nohangcheck.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-tglu:         [PASS][3] -> [INCOMPLETE][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@sysfs_preempt_timeout@idempotent:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][5] +1 other test timeout
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_preempt_timeout@idempotent.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_mmap_wc@write-read:
>     - shard-dg2:          [SKIP][6] ([i915#4083]) -> [TIMEOUT][7]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_mmap_wc@write-read.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_mmap_wc@write-read.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>     - shard-dg2:          [SKIP][8] ([i915#3458]) -> [TIMEOUT][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_10263_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@api_intel_bb@blit-reloc-keep-cache:
>     - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#8411])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html
> 
>   * igt@device_reset@cold-reset-bound:
>     - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#7701])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@device_reset@cold-reset-bound.html
> 
>   * igt@drm_fdinfo@all-busy-check-all:
>     - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#8414])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html
> 
>   * igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
> 
>   * igt@gem_busy@semaphore:
>     - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#3936])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@gem_busy@semaphore.html
> 
>   * igt@gem_close_race@multigpu-basic-process:
>     - shard-snb:          NOTRUN -> [SKIP][15] ([fdo#109271]) +73 other tests skip
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_close_race@multigpu-basic-process.html
>     - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
> 
>   * igt@gem_create@create-ext-cpu-access-big:
>     - shard-dg2:          NOTRUN -> [INCOMPLETE][17] ([i915#9364])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
> 
>   * igt@gem_create@create-ext-set-pat:
>     - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8562])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
> 
>   * igt@gem_ctx_persistence@heartbeat-hang:
>     - shard-mtlp:         NOTRUN -> [SKIP][19] ([i915#8555])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html
> 
>   * igt@gem_ctx_persistence@heartbeat-many:
>     - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#8555])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-cleanup:
>     - shard-snb:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1099])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html
> 
>   * igt@gem_ctx_sseu@invalid-sseu:
>     - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#280])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
> 
>   * igt@gem_eio@hibernate:
>     - shard-dg2:          NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@gem_eio@hibernate.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-dg1:          [PASS][24] -> [FAIL][25] ([i915#5784])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_capture@capture-invisible@lmem0:
>     - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-glk:          NOTRUN -> [FAIL][27] ([i915#2846])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk9/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul:
>     - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) +2 other tests skip
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html
> 
>   * igt@gem_exec_fence@concurrent:
>     - shard-mtlp:         NOTRUN -> [SKIP][29] ([i915#4812])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
> 
>   * igt@gem_exec_fence@submit3:
>     - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_exec_fence@submit3.html
> 
>   * igt@gem_exec_flush@basic-uc-set-default:
>     - shard-dg2:          NOTRUN -> [SKIP][31] ([i915#3539]) +1 other test skip
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
> 
>   * igt@gem_exec_flush@basic-wb-prw-default:
>     - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +5 other tests skip
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_flush@basic-wb-prw-default.html
> 
>   * igt@gem_exec_params@secure-non-root:
>     - shard-dg2:          NOTRUN -> [SKIP][33] ([fdo#112283])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_exec_params@secure-non-root.html
> 
>   * igt@gem_exec_reloc@basic-wc-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html
> 
>   * igt@gem_exec_reloc@basic-write-cpu-noreloc:
>     - shard-mtlp:         NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
> 
>   * igt@gem_exec_schedule@preempt-queue-chain:
>     - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
> 
>   * igt@gem_exec_schedule@preempt-queue-contexts-chain:
>     - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) +1 other test skip
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
> 
>   * igt@gem_exec_whisper@basic-queues-forked-all:
>     - shard-dg2:          [PASS][38] -> [TIMEOUT][39] ([i915#7392])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-6/igt@gem_exec_whisper@basic-queues-forked-all.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_exec_whisper@basic-queues-forked-all.html
> 
>   * igt@gem_fence_thrash@bo-copy:
>     - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#4860]) +4 other tests skip
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
> 
>   * igt@gem_lmem_swapping@heavy-random:
>     - shard-glk:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +1 other test skip
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk7/igt@gem_lmem_swapping@heavy-random.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][42] ([i915#4613])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
> 
>   * igt@gem_mmap_gtt@basic-write-read:
>     - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4077]) +8 other tests skip
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read.html
> 
>   * igt@gem_mmap_gtt@zero-extend:
>     - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +5 other tests skip
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
> 
>   * igt@gem_mmap_wc@bad-offset:
>     - shard-mtlp:         NOTRUN -> [SKIP][45] ([i915#4083]) +5 other tests skip
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html
> 
>   * igt@gem_mmap_wc@write-prefaulted:
>     - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
> 
>   * igt@gem_pread@display:
>     - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pread@display.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-glk:          NOTRUN -> [WARN][48] ([i915#2658])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_pread@snoop:
>     - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pread@snoop.html
> 
>   * igt@gem_pxp@create-regular-buffer:
>     - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4270]) +2 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html
> 
>   * igt@gem_pxp@verify-pxp-stale-ctx-execution:
>     - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
> 
>   * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>     - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#8428]) +1 other test skip
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
> 
>   * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
>     - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4079])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
> 
>   * igt@gem_softpin@evict-snoop-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4885])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
> 
>   * igt@gem_unfence_active_buffers:
>     - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4879])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@gem_unfence_active_buffers.html
> 
>   * igt@gem_userptr_blits@coherency-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3297]) +3 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3323])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-tglu:         NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@sd-probe:
>     - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4958])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html
> 
>   * igt@gen7_exec_parse@basic-allocation:
>     - shard-mtlp:         NOTRUN -> [SKIP][60] ([fdo#109289]) +3 other tests skip
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html
> 
>   * igt@gen7_exec_parse@batch-without-end:
>     - shard-dg2:          NOTRUN -> [SKIP][61] ([fdo#109289])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html
> 
>   * igt@gen9_exec_parse@batch-invalid-length:
>     - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#2856])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html
> 
>   * igt@gen9_exec_parse@batch-zero-length:
>     - shard-tglu:         NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gen9_exec_parse@batch-zero-length.html
> 
>   * igt@gen9_exec_parse@shadow-peek:
>     - shard-dg2:          NOTRUN -> [SKIP][64] ([i915#2856]) +4 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][65] ([i915#9559])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_module_load@resize-bar:
>     - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#6412])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@i915_module_load@resize-bar.html
> 
>   * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#7091])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@i915_pm_rps@min-max-config-idle:
>     - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#6621]) +2 other tests skip
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
> 
>   * igt@i915_query@query-topology-coherent-slice-mask:
>     - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#6188])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
> 
>   * igt@i915_query@query-topology-unsupported:
>     - shard-mtlp:         NOTRUN -> [SKIP][70] ([fdo#109302])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
> 
>   * igt@i915_selftest@mock@memory_region:
>     - shard-dg2:          NOTRUN -> [DMESG-WARN][71] ([i915#9311])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][72] ([i915#9311])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb4/igt@i915_selftest@mock@memory_region.html
> 
>   * igt@kms_addfb_basic@basic-x-tiled-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#4212])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> 
>   * igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
>     - shard-dg2:          NOTRUN -> [FAIL][74] ([i915#8247]) +3 other tests fail
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
> 
>   * igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>     - shard-dg1:          NOTRUN -> [FAIL][75] ([i915#8247]) +3 other tests fail
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> 
>   * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>     - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#4098] / [i915#9531])
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>     - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#1769] / [i915#3555])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> 
>   * igt@kms_big_fb@linear-64bpp-rotate-270:
>     - shard-dg2:          NOTRUN -> [SKIP][78] ([fdo#111614]) +3 other tests skip
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>     - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#5190]) +15 other tests skip
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5190]) +7 other tests skip
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>     - shard-tglu:         NOTRUN -> [SKIP][81] ([fdo#111615])
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>     - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#6187]) +1 other test skip
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-mtlp:         NOTRUN -> [SKIP][83] ([fdo#111615]) +5 other tests skip
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_joiner@2x-modeset:
>     - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#2705])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_big_joiner@2x-modeset.html
> 
>   * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][85] ([i915#4087] / [i915#7213]) +3 other tests skip
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][86] ([i915#4087]) +3 other tests skip
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
> 
>   * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][87] ([i915#4087]) +3 other tests skip
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> 
>   * igt@kms_chamelium_audio@hdmi-audio-edid:
>     - shard-mtlp:         NOTRUN -> [SKIP][88] ([i915#7828]) +4 other tests skip
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
> 
>   * igt@kms_chamelium_color@ctm-green-to-red:
>     - shard-mtlp:         NOTRUN -> [SKIP][89] ([fdo#111827])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_chamelium_color@ctm-green-to-red.html
> 
>   * igt@kms_chamelium_color@ctm-max:
>     - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111827]) +1 other test skip
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html
> 
>   * igt@kms_chamelium_color@ctm-negative:
>     - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +101 other tests skip
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk3/igt@kms_chamelium_color@ctm-negative.html
> 
>   * igt@kms_chamelium_frames@dp-crc-fast:
>     - shard-dg2:          NOTRUN -> [SKIP][92] ([i915#7828]) +9 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
> 
>   * igt@kms_chamelium_frames@dp-frame-dump:
>     - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#7828])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_chamelium_frames@dp-frame-dump.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#7118]) +1 other test skip
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-lic-type-1:
>     - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#3299])
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
> 
>   * igt@kms_content_protection@legacy@pipe-a-dp-4:
>     - shard-dg2:          NOTRUN -> [TIMEOUT][96] ([i915#7173])
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x512:
>     - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#3359]) +2 other tests skip
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-32x10:
>     - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) +1 other test skip
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x10:
>     - shard-dg2:          NOTRUN -> [SKIP][99] ([i915#3555]) +5 other tests skip
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#3359]) +1 other test skip
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#111767] / [i915#5354])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
>     - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3546]) +1 other test skip
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>     - shard-tglu:         NOTRUN -> [SKIP][104] ([fdo#109274])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
>     - shard-dg2:          NOTRUN -> [SKIP][105] ([fdo#109274] / [i915#5354]) +6 other tests skip
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>     - shard-dg2:          NOTRUN -> [SKIP][106] ([i915#4103] / [i915#4213]) +1 other test skip
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
> 
>   * igt@kms_display_modes@mst-extended-mode-negative:
>     - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#8588])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
> 
>   * igt@kms_dsc@dsc-basic:
>     - shard-mtlp:         NOTRUN -> [SKIP][108] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_dsc@dsc-basic.html
> 
>   * igt@kms_fbcon_fbt@psr:
>     - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#3469])
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_fbcon_fbt@psr.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][110] ([fdo#109274] / [fdo#111767])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
>     - shard-snb:          NOTRUN -> [SKIP][111] ([fdo#109271] / [fdo#111767])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-fences-interruptible:
>     - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#8381]) +1 other test skip
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html
> 
>   * igt@kms_flip@2x-modeset-vs-vblank-race:
>     - shard-dg2:          NOTRUN -> [SKIP][113] ([fdo#109274]) +6 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check:
>     - shard-mtlp:         NOTRUN -> [SKIP][114] ([i915#3637]) +3 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_flip@2x-wf_vblank-ts-check.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-tglu:         NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#3637])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][116] ([i915#2672]) +1 other test skip
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#2672]) +3 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][118] ([i915#8810])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>     - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#3555] / [i915#8810])
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [FAIL][120] ([i915#6880])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
>     - shard-mtlp:         NOTRUN -> [SKIP][121] ([i915#8708]) +1 other test skip
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-dg2:          [PASS][122] -> [FAIL][123] ([i915#6880])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#8708]) +15 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>     - shard-dg2:          NOTRUN -> [SKIP][125] ([i915#5354]) +34 other tests skip
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
>     - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3458]) +14 other tests skip
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-tglu:         NOTRUN -> [SKIP][127] ([fdo#109280]) +2 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
>     - shard-tglu:         NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][129] ([i915#5460])
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
>     - shard-mtlp:         NOTRUN -> [SKIP][130] ([i915#1825]) +17 other tests skip
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-dg2:          NOTRUN -> [SKIP][131] ([i915#3555] / [i915#8228]) +1 other test skip
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
>     - shard-glk:          NOTRUN -> [FAIL][132] ([i915#7862]) +1 other test fail
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#3582]) +3 other tests skip
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
> 
>   * igt@kms_plane_multiple@tiling-y:
>     - shard-mtlp:         NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8806])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
> 
>   * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
>     - shard-tglu:         [PASS][135] -> [FAIL][136] ([i915#8292])
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
>     - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#5235]) +7 other tests skip
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][138] ([i915#3555] / [i915#5235]) +1 other test skip
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
>     - shard-dg2:          NOTRUN -> [SKIP][139] ([i915#5235]) +19 other tests skip
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
>     - shard-mtlp:         NOTRUN -> [SKIP][140] ([i915#5235]) +5 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
> 
>   * igt@kms_psr2_su@frontbuffer-xrgb8888:
>     - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#9683]) +2 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
> 
>   * igt@kms_psr@psr2_basic:
>     - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#9681])
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_psr@psr2_basic.html
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>     - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#9685])
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-dg2:          NOTRUN -> [SKIP][144] ([i915#4235])
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#4235])
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
>     - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#4235] / [i915#5190])
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2:          NOTRUN -> [SKIP][147] ([i915#8623])
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-dg2:          NOTRUN -> [SKIP][148] ([fdo#109309])
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-5/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
>     - shard-snb:          NOTRUN -> [FAIL][149] ([i915#9196])
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
>     - shard-tglu:         [PASS][150] -> [FAIL][151] ([i915#9196])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@perf_pmu@busy-double-start@vcs1:
>     - shard-mtlp:         [PASS][153] -> [FAIL][154] ([i915#4349]) +2 other tests fail
>    [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
>    [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
> 
>   * igt@perf_pmu@cpu-hotplug:
>     - shard-mtlp:         NOTRUN -> [SKIP][155] ([i915#8850])
>    [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html
> 
>   * igt@perf_pmu@event-wait@rcs0:
>     - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8807])
>    [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
> 
>   * igt@perf_pmu@module-unload:
>     - shard-dg2:          NOTRUN -> [FAIL][157] ([i915#5793])
>    [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@perf_pmu@module-unload.html
> 
>   * igt@prime_udl:
>     - shard-mtlp:         NOTRUN -> [SKIP][158] ([fdo#109291])
>    [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_udl.html
> 
>   * igt@prime_vgem@basic-fence-flip:
>     - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3708])
>    [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
> 
>   * igt@prime_vgem@basic-fence-mmap:
>     - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077])
>    [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
> 
>   * igt@prime_vgem@basic-gtt:
>     - shard-dg2:          NOTRUN -> [SKIP][161] ([i915#3708] / [i915#4077])
>    [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@prime_vgem@basic-gtt.html
> 
>   * igt@prime_vgem@basic-read:
>     - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#3291] / [i915#3708])
>    [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@prime_vgem@basic-read.html
> 
>   * igt@v3d/v3d_job_submission@array-job-submission:
>     - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#2575]) +5 other tests skip
>    [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-8/igt@v3d/v3d_job_submission@array-job-submission.html
> 
>   * igt@v3d/v3d_submit_cl@multi-and-single-sync:
>     - shard-tglu:         NOTRUN -> [SKIP][164] ([fdo#109315] / [i915#2575])
>    [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-9/igt@v3d/v3d_submit_cl@multi-and-single-sync.html
> 
>   * igt@v3d/v3d_submit_csd@single-out-sync:
>     - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#2575]) +10 other tests skip
>    [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html
> 
>   * igt@vc4/vc4_tiling@get-after-free:
>     - shard-mtlp:         NOTRUN -> [SKIP][166] ([i915#7711]) +3 other tests skip
>    [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@vc4/vc4_tiling@get-after-free.html
> 
>   * igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
>     - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#7711]) +8 other tests skip
>    [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@kms:
>     - shard-dg1:          [FAIL][168] ([i915#5784]) -> [PASS][169]
>    [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@kms.html
>    [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-16/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-tglu:         [FAIL][170] ([i915#2842]) -> [PASS][171]
>    [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
>    [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][172] ([i915#2842]) -> [PASS][173]
>    [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_workarounds@reset-fd:
>     - shard-mtlp:         [ABORT][174] ([i915#9414]) -> [PASS][175]
>    [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@gem_workarounds@reset-fd.html
>    [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
> 
>   * igt@i915_selftest@live@gem_contexts:
>     - shard-mtlp:         [DMESG-FAIL][176] ([i915#9579]) -> [PASS][177]
>    [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
>    [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html
> 
>   * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1:
>     - shard-mtlp:         [DMESG-WARN][178] ([i915#2017]) -> [PASS][179]
>    [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
>    [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-mtlp:         [FAIL][180] ([i915#5138]) -> [PASS][181] +1 other test pass
>    [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>    [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-tglu:         [FAIL][182] ([i915#3743]) -> [PASS][183] +1 other test pass
>    [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>    [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * {igt@kms_pm_rpm@dpms-mode-unset-non-lpsp}:
>     - shard-dg2:          [SKIP][184] ([i915#9519]) -> [PASS][185]
>    [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@kms_sysfs_edid_timing:
>     - shard-dg2:          [FAIL][186] ([IGT#2]) -> [PASS][187]
>    [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@kms_sysfs_edid_timing.html
>    [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_sysfs_edid_timing.html
> 
>   * igt@perf@non-zero-reason@0-rcs0:
>     - shard-dg2:          [FAIL][188] ([i915#7484]) -> [PASS][189]
>    [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
>    [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
> 
>   * igt@sysfs_timeslice_duration@timeout@vcs0:
>     - shard-dg2:          [ABORT][190] -> [PASS][191]
>    [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
>    [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_lmem_swapping@smem-oom@lmem0:
>     - shard-dg1:          [DMESG-WARN][192] ([i915#4936] / [i915#5493]) -> [TIMEOUT][193] ([i915#5493])
>    [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
>    [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-dg2:          [SKIP][194] ([i915#7118]) -> [SKIP][195] ([i915#7118] / [i915#7162])
>    [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@kms_content_protection@type1.html
>    [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-11/igt@kms_content_protection@type1.html
> 
>   * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>     - shard-dg2:          [CRASH][196] ([i915#9351]) -> [INCOMPLETE][197] ([i915#5493])
>    [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
>    [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>   [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
>   [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
>   [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>   [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
>   [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
>   [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
>   [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>   [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
>   [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
>   [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
>   [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>   [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
>   [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
>   [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
>   [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
>   [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>   [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
>   [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>   [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
>   [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
>   [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
>   [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
>   [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
>   [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>   [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
>   [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
>   [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>   [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
>   [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
>   [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
>   [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
>   [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
>   [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
>   [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
>   [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
>   [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
>   [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
>   [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
>   [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
>   [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
>   [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>   [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>   [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>   [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
>   [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
>   [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
>   [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>   [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
>   [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
>   [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
>   [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
>   [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
>   [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
>   [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>   [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
>   [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
>   [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
>   [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
>   [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
>   [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
>   [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
>   [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
>   [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
>   [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
>   [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
>   [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
>   [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
>   [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
>   [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
>   [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
>   [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
>   [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
>   [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
>   [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
>   [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
>   [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
>   [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
>   [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
>   [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
>   [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
>   [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
>   [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
>   [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
>   [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
>   [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
>   [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
>   [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807
>   [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
>   [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
>   [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
>   [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
>   [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
>   [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
>   [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
>   [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
>   [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
>   [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
>   [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
>   [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
>   [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
>   [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
>   [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
>   [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559
>   [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
>   [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
>   [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
>   [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
>   [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
>   [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
>   [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7601 -> IGTPW_10263
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_10263: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html
>   IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10263/index.html

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

end of thread, other threads:[~2023-12-07 11:51 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-24  9:03 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
2023-11-24  9:03 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
2023-11-24 11:48 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_core: initialize srandom seed on startup (rev2) Patchwork
2023-11-24 12:50 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-25 14:19 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-27 17:18   ` Kamil Konieczny
2023-11-29 18:30   ` Kamil Konieczny
2023-12-07 11:51     ` Illipilli, TejasreeX
2023-12-02 22:42 ` Patchwork
2023-12-07 10:29 ` ✓ Fi.CI.IGT: success " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2023-11-22 12:40 [igt-dev] [PATCH i-g-t 0/1] lib/igt_core: initialize srandom seed on startup Lukasz Laguna
2023-11-22 12:40 ` [igt-dev] [PATCH i-g-t 1/1] " Lukasz Laguna
2023-11-23 17:35   ` Kamil Konieczny
2023-11-24  9:04     ` Laguna, Lukasz

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