All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [RFC 0/4] Rename the blocked test lists
@ 2023-03-23 16:29 Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 1/4] tests/intel-ci: rename block list files Mauro Carvalho Chehab
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-23 16:29 UTC (permalink / raw)
  To: igt-dev

From: Mauro Carvalho Chehab <mchehab@kernel.org>


This series contain a a continuation of the discussions with
regards to blacklist/blocklist patches from xe module load
series.

I'm sending it in separate from the original patch series,
in order to not mix subjects.

Mauro Carvalho Chehab (4):
  tests/intel-ci: rename block list files
  tests/intel-ci: add symlinks to avoid breaking CI pipelines
  i915-blocklist.txt: sort the other driver block list
  xe-blocklist.txt: add a blocklist for the Xe driver

 tests/intel-ci/blacklist-pre-merge.txt      | 113 +---------------
 tests/intel-ci/blacklist.txt                | 135 +------------------
 tests/intel-ci/i915-blocklist-pre-merge.txt | 112 ++++++++++++++++
 tests/intel-ci/i915-blocklist.txt           | 140 ++++++++++++++++++++
 tests/intel-ci/xe-blocklist.txt             |  23 ++++
 5 files changed, 277 insertions(+), 246 deletions(-)
 mode change 100644 => 120000 tests/intel-ci/blacklist-pre-merge.txt
 mode change 100644 => 120000 tests/intel-ci/blacklist.txt
 create mode 100644 tests/intel-ci/i915-blocklist-pre-merge.txt
 create mode 100644 tests/intel-ci/i915-blocklist.txt
 create mode 100644 tests/intel-ci/xe-blocklist.txt

-- 
2.39.2

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

* [igt-dev] [RFC 1/4] tests/intel-ci: rename block list files
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
@ 2023-03-23 16:29 ` Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 2/4] tests/intel-ci: add symlinks to avoid breaking CI pipelines Mauro Carvalho Chehab
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-23 16:29 UTC (permalink / raw)
  To: igt-dev

From: Mauro Carvalho Chehab <mchehab@kernel.org>

Use a new namespace and add a driver prefix to the name.

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 .../{blacklist-pre-merge.txt => i915-blocklist-pre-merge.txt}     | 0
 tests/intel-ci/{blacklist.txt => i915-blocklist.txt}              | 0
 2 files changed, 0 insertions(+), 0 deletions(-)
 rename tests/intel-ci/{blacklist-pre-merge.txt => i915-blocklist-pre-merge.txt} (100%)
 rename tests/intel-ci/{blacklist.txt => i915-blocklist.txt} (100%)

diff --git a/tests/intel-ci/blacklist-pre-merge.txt b/tests/intel-ci/i915-blocklist-pre-merge.txt
similarity index 100%
rename from tests/intel-ci/blacklist-pre-merge.txt
rename to tests/intel-ci/i915-blocklist-pre-merge.txt
diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/i915-blocklist.txt
similarity index 100%
rename from tests/intel-ci/blacklist.txt
rename to tests/intel-ci/i915-blocklist.txt
-- 
2.39.2

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

* [igt-dev] [RFC 2/4] tests/intel-ci: add symlinks to avoid breaking CI pipelines
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 1/4] tests/intel-ci: rename block list files Mauro Carvalho Chehab
@ 2023-03-23 16:29 ` Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list Mauro Carvalho Chehab
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-23 16:29 UTC (permalink / raw)
  To: igt-dev

From: Mauro Carvalho Chehab <mchehab@kernel.org>

There are lots of CI pipelines that rely on the old namespace
and testset.

Preserve them by adding symlinks to the old namespace.

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 tests/intel-ci/blacklist-pre-merge.txt | 1 +
 tests/intel-ci/blacklist.txt           | 1 +
 2 files changed, 2 insertions(+)
 create mode 120000 tests/intel-ci/blacklist-pre-merge.txt
 create mode 120000 tests/intel-ci/blacklist.txt

diff --git a/tests/intel-ci/blacklist-pre-merge.txt b/tests/intel-ci/blacklist-pre-merge.txt
new file mode 120000
index 000000000000..2d241498cacf
--- /dev/null
+++ b/tests/intel-ci/blacklist-pre-merge.txt
@@ -0,0 +1 @@
+i915-blocklist-pre-merge.txt
\ No newline at end of file
diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
new file mode 120000
index 000000000000..cc445e71e488
--- /dev/null
+++ b/tests/intel-ci/blacklist.txt
@@ -0,0 +1 @@
+i915-blocklist.txt
\ No newline at end of file
-- 
2.39.2

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

* [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 1/4] tests/intel-ci: rename block list files Mauro Carvalho Chehab
  2023-03-23 16:29 ` [igt-dev] [RFC 2/4] tests/intel-ci: add symlinks to avoid breaking CI pipelines Mauro Carvalho Chehab
@ 2023-03-23 16:29 ` Mauro Carvalho Chehab
  2023-04-04 15:57   ` Kamil Konieczny
  2023-03-23 16:29 ` [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver Mauro Carvalho Chehab
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-23 16:29 UTC (permalink / raw)
  To: igt-dev

From: Mauro Carvalho Chehab <mchehab@kernel.org>

Place other driver-specific tests at the beginning of the file,
sorting them on alphabetical order.

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 tests/intel-ci/i915-blocklist.txt | 44 ++++++++++++++++++-------------
 1 file changed, 25 insertions(+), 19 deletions(-)

diff --git a/tests/intel-ci/i915-blocklist.txt b/tests/intel-ci/i915-blocklist.txt
index 243bc60934f6..e1569150b59f 100644
--- a/tests/intel-ci/i915-blocklist.txt
+++ b/tests/intel-ci/i915-blocklist.txt
@@ -1,7 +1,30 @@
+#############################################################
+# This file is for blocking tests from running on i915 driver
+#############################################################
+
+################################################################
+# Block tests for other hardware - please keep sorted per vendor
+################################################################
+
+# AMD
+igt@amdgpu/.*
+
+# Broadcom
+igt@vc4_.*
+igt@v3d_.*
+
+# Intel
+igt@xe.*
+
+# Panfrost
+igt@panfrost_.*
+
+# Qualcomm
+igt@msm_.*
+
 ###############################################
-# This file is for non-Xe tests only
+# Block other tests
 ###############################################
-igt@xe.*
 
 igt@meta_test(@.*)?
 ###############################################
@@ -84,23 +107,6 @@ igt@kms_frontbuffer_tracking@.*drrs.*
 ###############################################
 igt@kms_chamelium_frames@hdmi-.*-planes-random
 ###############################################
-# Broadcom
-###############################################
-igt@vc4_.*
-igt@v3d_.*
-###############################################
-# AMD
-###############################################
-igt@amdgpu/.*
-###############################################
-# Panfrost
-###############################################
-igt@panfrost_.*
-###############################################
-# Qualcomm
-###############################################
-igt@msm_.*
-###############################################
 # Hibernate: not configured correctly on CI
 ###############################################
 igt@.*@.*-hibernate
-- 
2.39.2

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

* [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
                   ` (2 preceding siblings ...)
  2023-03-23 16:29 ` [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list Mauro Carvalho Chehab
@ 2023-03-23 16:29 ` Mauro Carvalho Chehab
  2023-04-04 16:01   ` Kamil Konieczny
  2023-03-23 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Rename the blocked test lists Patchwork
  2023-03-23 23:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 1 reply; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-23 16:29 UTC (permalink / raw)
  To: igt-dev

From: Mauro Carvalho Chehab <mchehab@kernel.org>

The same way we have a blocklist for i915, add one for the Xe
driver. It currently contain only non-xe drivers that also
have test definitions.

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
 tests/intel-ci/xe-blocklist.txt | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 tests/intel-ci/xe-blocklist.txt

diff --git a/tests/intel-ci/xe-blocklist.txt b/tests/intel-ci/xe-blocklist.txt
new file mode 100644
index 000000000000..190b76293937
--- /dev/null
+++ b/tests/intel-ci/xe-blocklist.txt
@@ -0,0 +1,23 @@
+#############################################################
+# This file is for blocking tests from running on i915 driver
+#############################################################
+
+################################################################
+# Block tests for other hardware - please keep sorted per vendor
+################################################################
+
+# AMD
+igt@amdgpu/.*
+
+# Broadcom
+igt@vc4_.*
+igt@v3d_.*
+
+# Intel
+igt@i915.*
+
+# Panfrost
+igt@panfrost_.*
+
+# Qualcomm
+igt@msm_.*
-- 
2.39.2

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

* [igt-dev] ✓ Fi.CI.BAT: success for Rename the blocked test lists
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
                   ` (3 preceding siblings ...)
  2023-03-23 16:29 ` [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver Mauro Carvalho Chehab
@ 2023-03-23 17:40 ` Patchwork
  2023-03-23 23:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-03-23 17:40 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: igt-dev

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

== Series Details ==

Series: Rename the blocked test lists
URL   : https://patchwork.freedesktop.org/series/115559/
State : success

== Summary ==

CI Bug Log - changes from IGT_7212 -> IGTPW_8670
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (1): fi-pnv-d510 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [PASS][1] -> [ABORT][2] ([i915#4983])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-rpls-1/igt@i915_selftest@live@reset.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/bat-rpls-1/igt@i915_selftest@live@reset.html

  * igt@i915_selftest@live@slpc:
    - bat-rpls-2:         NOTRUN -> [DMESG-FAIL][3] ([i915#6367] / [i915#7913] / [i915#7996])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/bat-rpls-2/igt@i915_selftest@live@slpc.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-rpls-2:         NOTRUN -> [SKIP][4] ([i915#7828])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-rpls-2:         NOTRUN -> [SKIP][5] ([i915#1845])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_psr@primary_page_flip:
    - fi-pnv-d510:        NOTRUN -> [SKIP][6] ([fdo#109271]) +38 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/fi-pnv-d510/igt@kms_psr@primary_page_flip.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][7] ([i915#5334]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-2:         [ABORT][9] ([i915#4983] / [i915#7913]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/bat-rpls-2/igt@i915_selftest@live@reset.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/bat-rpls-2/igt@i915_selftest@live@reset.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7212 -> IGTPW_8670

  CI-20190529: 20190529
  CI_DRM_12905: 3a266f994a6b752953eb974ab7bf1dc382a2d1b8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8670: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/index.html
  IGT_7212: c67b6c8993c509ca06eca222287c58ade43292e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Rename the blocked test lists
  2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
                   ` (4 preceding siblings ...)
  2023-03-23 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Rename the blocked test lists Patchwork
@ 2023-03-23 23:02 ` Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-03-23 23:02 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: igt-dev

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

== Series Details ==

Series: Rename the blocked test lists
URL   : https://patchwork.freedesktop.org/series/115559/
State : success

== Summary ==

CI Bug Log - changes from IGT_7212_full -> IGTPW_8670_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@gem_barrier_race@remote-request@rcs0}:
    - {shard-tglu}:       [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-2/igt@gem_barrier_race@remote-request@rcs0.html

  * igt@kms_vblank@pipe-b-wait-idle-hang:
    - {shard-rkl}:        [SKIP][3] ([i915#1845] / [i915#4098]) -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@kms_vblank@pipe-b-wait-idle-hang.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@kms_vblank@pipe-b-wait-idle-hang.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-glk:          [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_userptr_blits@access-control:
    - shard-glk:          NOTRUN -> [SKIP][7] ([fdo#109271]) +17 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk2/igt@gem_userptr_blits@access-control.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [PASS][10] -> [FAIL][11] ([i915#2346])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
    - shard-apl:          [PASS][12] -> [ABORT][13] ([i915#180])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271]) +24 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  
#### Possible fixes ####

  * igt@fbdev@info:
    - {shard-tglu}:       [SKIP][15] ([i915#2582]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@fbdev@info.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-7/igt@fbdev@info.html

  * igt@fbdev@nullptr:
    - {shard-rkl}:        [SKIP][17] ([i915#2582]) -> [PASS][18] +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-2/igt@fbdev@nullptr.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@fbdev@nullptr.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - {shard-tglu}:       [FAIL][19] ([i915#6268]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_eio@hibernate:
    - {shard-tglu}:       [ABORT][21] ([i915#7975]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@gem_eio@hibernate.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-8/igt@gem_eio@hibernate.html

  * igt@gem_eio@in-flight-suspend:
    - {shard-rkl}:        [FAIL][23] ([fdo#103375]) -> [PASS][24] +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@suspend:
    - {shard-rkl}:        [FAIL][25] ([i915#5115] / [i915#7052]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@gem_eio@suspend.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@gem_eio@suspend.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][27] ([i915#2842]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - {shard-tglu}:       [FAIL][29] ([i915#2842]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][31] ([i915#2842]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - {shard-rkl}:        [SKIP][33] ([i915#3281]) -> [PASS][34] +13 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - {shard-rkl}:        [SKIP][35] ([i915#3282]) -> [PASS][36] +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - {shard-rkl}:        [SKIP][37] ([i915#2527]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_module_load@load:
    - shard-snb:          [SKIP][39] ([fdo#109271]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-snb5/igt@i915_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-snb7/igt@i915_module_load@load.html
    - shard-apl:          [SKIP][41] ([fdo#109271]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl3/igt@i915_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl2/igt@i915_module_load@load.html
    - {shard-tglu}:       [SKIP][43] ([i915#6227]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@i915_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-5/igt@i915_module_load@load.html
    - shard-glk:          [SKIP][45] ([fdo#109271]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk3/igt@i915_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk5/igt@i915_module_load@load.html
    - {shard-rkl}:        [SKIP][47] ([i915#6227]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-2/igt@i915_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-4/igt@i915_module_load@load.html

  * igt@i915_pipe_stress@stress-xrgb8888-untiled:
    - {shard-rkl}:        [SKIP][49] ([i915#4098]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html

  * igt@i915_pm_dc@dc6-dpms:
    - {shard-rkl}:        [SKIP][51] ([i915#3361]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-5/igt@i915_pm_dc@dc6-dpms.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_sseu@full-enable:
    - {shard-rkl}:        [SKIP][53] ([i915#4387]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@i915_pm_sseu@full-enable.html

  * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
    - {shard-rkl}:        [SKIP][55] ([i915#1845] / [i915#4098]) -> [PASS][56] +35 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs:
    - {shard-tglu}:       [SKIP][57] ([i915#1845] / [i915#7651]) -> [PASS][58] +36 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [ABORT][59] ([i915#180]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][61] ([i915#2346]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
    - shard-apl:          [FAIL][63] ([i915#2346]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@single-bo@pipe-a:
    - {shard-rkl}:        [INCOMPLETE][65] -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-1/igt@kms_cursor_legacy@single-bo@pipe-a.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-4/igt@kms_cursor_legacy@single-bo@pipe-a.html

  * igt@kms_cursor_legacy@single-bo@pipe-b:
    - {shard-tglu}:       [INCOMPLETE][67] ([i915#8011]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-1/igt@kms_cursor_legacy@single-bo@pipe-b.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-5/igt@kms_cursor_legacy@single-bo@pipe-b.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
    - shard-glk:          [FAIL][69] ([i915#79]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
    - shard-apl:          [FAIL][71] ([i915#79]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite:
    - {shard-tglu}:       [SKIP][73] ([i915#1849]) -> [PASS][74] +9 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - {shard-rkl}:        [SKIP][75] ([i915#1849] / [i915#4098]) -> [PASS][76] +13 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_psr@primary_mmap_gtt:
    - {shard-rkl}:        [SKIP][77] ([i915#1072]) -> [PASS][78] +3 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-4/igt@kms_psr@primary_mmap_gtt.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@kms_psr@primary_mmap_gtt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - {shard-rkl}:        [SKIP][79] ([i915#5461]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_universal_plane@universal-plane-pipe-c-sanity:
    - {shard-tglu}:       [SKIP][81] ([i915#1845]) -> [PASS][82] +20 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@kms_universal_plane@universal-plane-pipe-c-sanity.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-7/igt@kms_universal_plane@universal-plane-pipe-c-sanity.html

  * igt@perf_pmu@idle@rcs0:
    - {shard-rkl}:        [FAIL][83] ([i915#4349]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-2/igt@perf_pmu@idle@rcs0.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-3/igt@perf_pmu@idle@rcs0.html

  * igt@prime_mmap_kms@buffer-sharing:
    - {shard-tglu}:       [SKIP][85] ([fdo#109274]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-tglu-9/igt@prime_mmap_kms@buffer-sharing.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-tglu-7/igt@prime_mmap_kms@buffer-sharing.html

  * igt@prime_vgem@coherency-gtt:
    - {shard-rkl}:        [SKIP][87] ([fdo#109295] / [fdo#111656] / [i915#3708]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7212/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/shard-rkl-5/igt@prime_vgem@coherency-gtt.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [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#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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
  [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
  [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190
  [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7212 -> IGTPW_8670

  CI-20190529: 20190529
  CI_DRM_12905: 3a266f994a6b752953eb974ab7bf1dc382a2d1b8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8670: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8670/index.html
  IGT_7212: c67b6c8993c509ca06eca222287c58ade43292e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list
  2023-03-23 16:29 ` [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list Mauro Carvalho Chehab
@ 2023-04-04 15:57   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2023-04-04 15:57 UTC (permalink / raw)
  To: igt-dev

Hi Mauro,

On 2023-03-23 at 17:29:42 +0100, Mauro Carvalho Chehab wrote:
> From: Mauro Carvalho Chehab <mchehab@kernel.org>
> 
> Place other driver-specific tests at the beginning of the file,
> sorting them on alphabetical order.

imho you should keep meta_test as it is at beginning,
it has special meaning for trybot and should be there.

Rest could be moved.

Regards,
Kamil

> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
>  tests/intel-ci/i915-blocklist.txt | 44 ++++++++++++++++++-------------
>  1 file changed, 25 insertions(+), 19 deletions(-)
> 
> diff --git a/tests/intel-ci/i915-blocklist.txt b/tests/intel-ci/i915-blocklist.txt
> index 243bc60934f6..e1569150b59f 100644
> --- a/tests/intel-ci/i915-blocklist.txt
> +++ b/tests/intel-ci/i915-blocklist.txt
> @@ -1,7 +1,30 @@
> +#############################################################
> +# This file is for blocking tests from running on i915 driver
> +#############################################################
> +
> +################################################################
> +# Block tests for other hardware - please keep sorted per vendor
> +################################################################
> +
> +# AMD
> +igt@amdgpu/.*
> +
> +# Broadcom
> +igt@vc4_.*
> +igt@v3d_.*
> +
> +# Intel
> +igt@xe.*
> +
> +# Panfrost
> +igt@panfrost_.*
> +
> +# Qualcomm
> +igt@msm_.*
> +
>  ###############################################
> -# This file is for non-Xe tests only
> +# Block other tests
>  ###############################################
> -igt@xe.*
>  
>  igt@meta_test(@.*)?
>  ###############################################
> @@ -84,23 +107,6 @@ igt@kms_frontbuffer_tracking@.*drrs.*
>  ###############################################
>  igt@kms_chamelium_frames@hdmi-.*-planes-random
>  ###############################################
> -# Broadcom
> -###############################################
> -igt@vc4_.*
> -igt@v3d_.*
> -###############################################
> -# AMD
> -###############################################
> -igt@amdgpu/.*
> -###############################################
> -# Panfrost
> -###############################################
> -igt@panfrost_.*
> -###############################################
> -# Qualcomm
> -###############################################
> -igt@msm_.*
> -###############################################
>  # Hibernate: not configured correctly on CI
>  ###############################################
>  igt@.*@.*-hibernate
> -- 
> 2.39.2
> 


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

* Re: [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver
  2023-03-23 16:29 ` [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver Mauro Carvalho Chehab
@ 2023-04-04 16:01   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2023-04-04 16:01 UTC (permalink / raw)
  To: igt-dev

Hi Mauro,

On 2023-03-23 at 17:29:43 +0100, Mauro Carvalho Chehab wrote:
> From: Mauro Carvalho Chehab <mchehab@kernel.org>
> 
> The same way we have a blocklist for i915, add one for the Xe
> driver. It currently contain only non-xe drivers that also
> have test definitions.
> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
>  tests/intel-ci/xe-blocklist.txt | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 tests/intel-ci/xe-blocklist.txt
> 
> diff --git a/tests/intel-ci/xe-blocklist.txt b/tests/intel-ci/xe-blocklist.txt
> new file mode 100644
> index 000000000000..190b76293937
> --- /dev/null
> +++ b/tests/intel-ci/xe-blocklist.txt
> @@ -0,0 +1,23 @@
> +#############################################################
> +# This file is for blocking tests from running on i915 driver
---------------------------------------------------- ^^^^
This should be s/i915/Xe/

> +#############################################################

Put here special meta_tests, like in i915 (maybe with comment):

igt@meta_test(@.*)?

imho this (and other ci specific patches) should be also +cc
to ci team.

Regards,
Kamil

> +
> +################################################################
> +# Block tests for other hardware - please keep sorted per vendor
> +################################################################
> +
> +# AMD
> +igt@amdgpu/.*
> +
> +# Broadcom
> +igt@vc4_.*
> +igt@v3d_.*
> +
> +# Intel
> +igt@i915.*
> +
> +# Panfrost
> +igt@panfrost_.*
> +
> +# Qualcomm
> +igt@msm_.*
> -- 
> 2.39.2
> 


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

end of thread, other threads:[~2023-04-04 16:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-23 16:29 [igt-dev] [RFC 0/4] Rename the blocked test lists Mauro Carvalho Chehab
2023-03-23 16:29 ` [igt-dev] [RFC 1/4] tests/intel-ci: rename block list files Mauro Carvalho Chehab
2023-03-23 16:29 ` [igt-dev] [RFC 2/4] tests/intel-ci: add symlinks to avoid breaking CI pipelines Mauro Carvalho Chehab
2023-03-23 16:29 ` [igt-dev] [RFC 3/4] i915-blocklist.txt: sort the other driver block list Mauro Carvalho Chehab
2023-04-04 15:57   ` Kamil Konieczny
2023-03-23 16:29 ` [igt-dev] [RFC 4/4] xe-blocklist.txt: add a blocklist for the Xe driver Mauro Carvalho Chehab
2023-04-04 16:01   ` Kamil Konieczny
2023-03-23 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for Rename the blocked test lists Patchwork
2023-03-23 23:02 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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