All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase
@ 2022-11-02  4:38 Riana Tauro
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/debugfs_test: Add basic-hwmon test Riana Tauro
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Riana Tauro @ 2022-11-02  4:38 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar, petri.latvala

Add a new testcase to verify the hwmon directory in dgfx

Rev2 : Add the test to fast-feedback
       Addressed cosmetic review comments

Riana Tauro (2):
  tests/debugfs_test: Add basic-hwmon test
  tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT

 tests/debugfs_test.c                  | 14 ++++++++++++--
 tests/intel-ci/fast-feedback.testlist |  1 +
 2 files changed, 13 insertions(+), 2 deletions(-)

-- 
2.25.1

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

* [igt-dev] [PATCH i-g-t v2 1/2] tests/debugfs_test: Add basic-hwmon test
  2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
@ 2022-11-02  4:38 ` Riana Tauro
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT Riana Tauro
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2022-11-02  4:38 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar, petri.latvala

Add a testcase that verifies hwmon directory in dgfx and prints all
the entries

v2 : Addressed cosmetic review comments (Ashutosh)

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
 tests/debugfs_test.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/tests/debugfs_test.c b/tests/debugfs_test.c
index 0b4b6e23..8c775158 100644
--- a/tests/debugfs_test.c
+++ b/tests/debugfs_test.c
@@ -24,12 +24,13 @@
 
 #include "i915/gem.h"
 #include "igt.h"
+#include "igt_hwmon.h"
 #include "igt_sysfs.h"
 #include <fcntl.h>
 #include <sys/types.h>
 #include <dirent.h>
 
-IGT_TEST_DESCRIPTION("Read entries from debugfs and sysfs paths.");
+IGT_TEST_DESCRIPTION("Read entries from debugfs, hwmon and sysfs paths.");
 
 static void read_and_discard_sysfs_entries(int path_fd, int indent)
 {
@@ -178,7 +179,7 @@ retry:
 
 igt_main
 {
-	int fd = -1, debugfs, sysfs;
+	int fd = -1, debugfs, sysfs, hwmon_fd;
 
 	igt_fixture {
 		fd = drm_open_driver_master(DRIVER_INTEL);
@@ -196,6 +197,15 @@ igt_main
 	igt_subtest("read_all_entries")
 		read_and_discard_sysfs_entries(debugfs, 0);
 
+	igt_describe("Read all entries from hwmon path");
+	igt_subtest("basic-hwmon") {
+		igt_require_f(gem_has_lmem(fd), "Test applicable only for dgfx\n");
+		hwmon_fd = igt_hwmon_open(fd);
+		igt_assert(hwmon_fd >= 0);
+		read_and_discard_sysfs_entries(hwmon_fd, 0);
+		close(hwmon_fd);
+	}
+
 	igt_describe("Read all debugfs entries with display on/off.");
 	igt_subtest_group
 		kms_tests(fd, debugfs);
-- 
2.25.1

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

* [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT
  2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/debugfs_test: Add basic-hwmon test Riana Tauro
@ 2022-11-02  4:38 ` Riana Tauro
  2022-11-02  8:49   ` Petri Latvala
  2022-11-02  5:43 ` [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2) Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Riana Tauro @ 2022-11-02  4:38 UTC (permalink / raw)
  To: igt-dev; +Cc: badal.nilawar, petri.latvala

Add basic-hwmon test to fast-feedback list. This test verifies the
hwmon directory for dgfx and prints all its entries.

Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
 tests/intel-ci/fast-feedback.testlist | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index bd5538a0..f57f8ff3 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -4,6 +4,7 @@ igt@i915_module_load@load
 # Keep alphabetically sorted by default
 igt@core_auth@basic-auth
 igt@debugfs_test@read_all_entries
+igt@debugfs_test@basic-hwmon
 igt@fbdev@eof
 igt@fbdev@info
 igt@fbdev@nullptr
-- 
2.25.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2)
  2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/debugfs_test: Add basic-hwmon test Riana Tauro
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT Riana Tauro
@ 2022-11-02  5:43 ` Patchwork
  2022-11-02  8:49   ` Petri Latvala
  2022-11-02 11:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2022-11-02 17:47 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-11-02  5:43 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

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

== Series Details ==

Series: Add a basic hwmon testcase (rev2)
URL   : https://patchwork.freedesktop.org/series/110311/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12330 -> IGTPW_8029
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (3): fi-icl-u2 fi-tgl-dsi fi-pnv-d510 
  Missing    (1): bat-adlp-6 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@debugfs_test@basic-hwmon} (NEW):
    - {bat-rpls-2}:       NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
    - {fi-tgl-mst}:       NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@debugfs_test@basic-hwmon.html
    - fi-icl-u2:          NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@debugfs_test@basic-hwmon.html
    - fi-rkl-guc:         NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-rkl-guc/igt@debugfs_test@basic-hwmon.html
    - bat-adlp-4:         NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlp-4/igt@debugfs_test@basic-hwmon.html
    - {bat-adlm-1}:       NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@debugfs_test@basic-hwmon.html
    - {bat-jsl-1}:        NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
    - {fi-jsl-1}:         NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-jsl-1/igt@debugfs_test@basic-hwmon.html
    - {bat-rpls-1}:       NOTRUN -> [SKIP][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-1/igt@debugfs_test@basic-hwmon.html
    - {fi-tgl-dsi}:       NOTRUN -> [SKIP][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-dsi/igt@debugfs_test@basic-hwmon.html
    - {bat-rplp-1}:       NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@debugfs_test@basic-hwmon.html
    - {bat-adln-1}:       NOTRUN -> [SKIP][12]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@debugfs_test@basic-hwmon.html
    - fi-adl-ddr5:        NOTRUN -> [SKIP][13]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-adl-ddr5/igt@debugfs_test@basic-hwmon.html
    - {fi-ehl-2}:         NOTRUN -> [SKIP][14]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ehl-2/igt@debugfs_test@basic-hwmon.html

  
#### Suppressed ####

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

  * igt@i915_pm_rpm@basic-rte:
    - {bat-adln-1}:       [PASS][15] -> [DMESG-WARN][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@i915_pm_rpm@basic-rte.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12330 and IGTPW_8029:

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

  * igt@debugfs_test@basic-hwmon:
    - Statuses : 3 pass(s) 37 skip(s)
    - Exec time: [0.0, 0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * {igt@debugfs_test@basic-hwmon} (NEW):
    - fi-cfl-8700k:       NOTRUN -> [SKIP][17] ([fdo#109271])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8700k/igt@debugfs_test@basic-hwmon.html
    - fi-blb-e6850:       NOTRUN -> [SKIP][18] ([fdo#109271])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-blb-e6850/igt@debugfs_test@basic-hwmon.html
    - fi-apl-guc:         NOTRUN -> [SKIP][19] ([fdo#109271])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-apl-guc/igt@debugfs_test@basic-hwmon.html
    - fi-bdw-gvtdvm:      NOTRUN -> [SKIP][20] ([fdo#109271])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-gvtdvm/igt@debugfs_test@basic-hwmon.html
    - fi-bsw-kefka:       NOTRUN -> [SKIP][21] ([fdo#109271])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-kefka/igt@debugfs_test@basic-hwmon.html
    - fi-snb-2520m:       NOTRUN -> [SKIP][22] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-snb-2520m/igt@debugfs_test@basic-hwmon.html
    - fi-skl-guc:         NOTRUN -> [SKIP][23] ([fdo#109271])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-guc/igt@debugfs_test@basic-hwmon.html
    - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html
    - fi-ivb-3770:        NOTRUN -> [SKIP][25] ([fdo#109271])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ivb-3770/igt@debugfs_test@basic-hwmon.html
    - fi-elk-e7500:       NOTRUN -> [SKIP][26] ([fdo#109271])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-elk-e7500/igt@debugfs_test@basic-hwmon.html
    - fi-bsw-nick:        NOTRUN -> [SKIP][27] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-nick/igt@debugfs_test@basic-hwmon.html
    - fi-hsw-g3258:       NOTRUN -> [SKIP][28] ([fdo#109271])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-g3258/igt@debugfs_test@basic-hwmon.html
    - fi-glk-j4005:       NOTRUN -> [SKIP][29] ([fdo#109271])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-glk-j4005/igt@debugfs_test@basic-hwmon.html
    - fi-bxt-dsi:         NOTRUN -> [SKIP][30] ([fdo#109271])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bxt-dsi/igt@debugfs_test@basic-hwmon.html
    - fi-skl-6700k2:      NOTRUN -> [SKIP][31] ([fdo#109271])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6700k2/igt@debugfs_test@basic-hwmon.html
    - fi-cfl-8109u:       NOTRUN -> [SKIP][32] ([fdo#109271])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8109u/igt@debugfs_test@basic-hwmon.html
    - fi-kbl-7567u:       NOTRUN -> [SKIP][33] ([fdo#109271])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-7567u/igt@debugfs_test@basic-hwmon.html
    - fi-kbl-8809g:       NOTRUN -> [SKIP][34] ([fdo#109271])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-8809g/igt@debugfs_test@basic-hwmon.html
    - fi-ilk-650:         NOTRUN -> [SKIP][35] ([fdo#109271])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ilk-650/igt@debugfs_test@basic-hwmon.html
    - fi-cfl-guc:         NOTRUN -> [SKIP][36] ([fdo#109271])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-guc/igt@debugfs_test@basic-hwmon.html
    - fi-skl-6600u:       NOTRUN -> [SKIP][37] ([fdo#109271])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6600u/igt@debugfs_test@basic-hwmon.html
    - fi-bdw-5557u:       NOTRUN -> [SKIP][38] ([fdo#109271])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-5557u/igt@debugfs_test@basic-hwmon.html

  * igt@gem_exec_gttfill@basic:
    - fi-pnv-d510:        NOTRUN -> [FAIL][39] ([i915#7229])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-pnv-d510/igt@gem_exec_gttfill@basic.html

  * igt@gem_huc_copy@huc-copy:
    - fi-icl-u2:          NOTRUN -> [SKIP][40] ([i915#2190])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-icl-u2:          NOTRUN -> [DMESG-WARN][41] ([i915#4890])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][43] ([fdo#111827]) +7 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
    - fi-icl-u2:          NOTRUN -> [SKIP][44] ([i915#4103])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-icl-u2:          NOTRUN -> [SKIP][45] ([fdo#109285])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

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

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-icl-u2:          NOTRUN -> [SKIP][47] ([i915#3555])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@runner@aborted:
    - fi-icl-u2:          NOTRUN -> [FAIL][48] ([i915#4312])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - {bat-adlm-1}:       [DMESG-WARN][49] ([i915#2867]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_ctx_create@basic-files:
    - {fi-tgl-mst}:       [DMESG-WARN][51] ([i915#6434]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-tgl-mst/igt@gem_ctx_create@basic-files.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@gem_ctx_create@basic-files.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - {bat-rplp-1}:       [DMESG-WARN][53] ([i915#2867]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@i915_selftest@live@hangcheck:
    - fi-hsw-4770:        [INCOMPLETE][55] ([i915#4785]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#4890]: https://gitlab.freedesktop.org/drm/intel/issues/4890
  [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856
  [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029
  [i915#7125]: https://gitlab.freedesktop.org/drm/intel/issues/7125
  [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7037 -> IGTPW_8029

  CI-20190529: 20190529
  CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
  IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

+++ 61 lines
--- 360 lines

== Logs ==

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

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

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

* Re: [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2)
  2022-11-02  5:43 ` [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2) Patchwork
@ 2022-11-02  8:49   ` Petri Latvala
  2022-11-02 16:47     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 11+ messages in thread
From: Petri Latvala @ 2022-11-02  8:49 UTC (permalink / raw)
  To: igt-dev, Lakshminarayana Vudum

On Wed, Nov 02, 2022 at 05:43:23AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Add a basic hwmon testcase (rev2)
> URL   : https://patchwork.freedesktop.org/series/110311/
> State : success
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_12330 -> IGTPW_8029
> ====================================================
> 
> Summary
> -------
> 
>   **SUCCESS**
> 
>   No regressions found.
> 
>   External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
> 
> Participating hosts (38 -> 40)
> ------------------------------
> 
>   Additional (3): fi-icl-u2 fi-tgl-dsi fi-pnv-d510 
>   Missing    (1): bat-adlp-6 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8029:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * {igt@debugfs_test@basic-hwmon} (NEW):
>     - {bat-rpls-2}:       NOTRUN -> [SKIP][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
>     - {fi-tgl-mst}:       NOTRUN -> [SKIP][2]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@debugfs_test@basic-hwmon.html
>     - fi-icl-u2:          NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@debugfs_test@basic-hwmon.html
>     - fi-rkl-guc:         NOTRUN -> [SKIP][4]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-rkl-guc/igt@debugfs_test@basic-hwmon.html
>     - bat-adlp-4:         NOTRUN -> [SKIP][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlp-4/igt@debugfs_test@basic-hwmon.html
>     - {bat-adlm-1}:       NOTRUN -> [SKIP][6]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-jsl-1}:        NOTRUN -> [SKIP][7]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
>     - {fi-jsl-1}:         NOTRUN -> [SKIP][8]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-jsl-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-rpls-1}:       NOTRUN -> [SKIP][9]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-1/igt@debugfs_test@basic-hwmon.html
>     - {fi-tgl-dsi}:       NOTRUN -> [SKIP][10]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-dsi/igt@debugfs_test@basic-hwmon.html
>     - {bat-rplp-1}:       NOTRUN -> [SKIP][11]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-adln-1}:       NOTRUN -> [SKIP][12]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@debugfs_test@basic-hwmon.html
>     - fi-adl-ddr5:        NOTRUN -> [SKIP][13]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-adl-ddr5/igt@debugfs_test@basic-hwmon.html
>     - {fi-ehl-2}:         NOTRUN -> [SKIP][14]
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ehl-2/igt@debugfs_test@basic-hwmon.html


Lakshmi, do note:

When this gets merged the above skips are expected on igfx hosts.


-- 
Petri Latvala



> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - {bat-adln-1}:       [PASS][15] -> [DMESG-WARN][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_12330 and IGTPW_8029:
> 
> ### New IGT tests (1) ###
> 
>   * igt@debugfs_test@basic-hwmon:
>     - Statuses : 3 pass(s) 37 skip(s)
>     - Exec time: [0.0, 0.01] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8029 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * {igt@debugfs_test@basic-hwmon} (NEW):
>     - fi-cfl-8700k:       NOTRUN -> [SKIP][17] ([fdo#109271])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8700k/igt@debugfs_test@basic-hwmon.html
>     - fi-blb-e6850:       NOTRUN -> [SKIP][18] ([fdo#109271])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-blb-e6850/igt@debugfs_test@basic-hwmon.html
>     - fi-apl-guc:         NOTRUN -> [SKIP][19] ([fdo#109271])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-apl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-bdw-gvtdvm:      NOTRUN -> [SKIP][20] ([fdo#109271])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-gvtdvm/igt@debugfs_test@basic-hwmon.html
>     - fi-bsw-kefka:       NOTRUN -> [SKIP][21] ([fdo#109271])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-kefka/igt@debugfs_test@basic-hwmon.html
>     - fi-snb-2520m:       NOTRUN -> [SKIP][22] ([fdo#109271])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-snb-2520m/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-guc:         NOTRUN -> [SKIP][23] ([fdo#109271])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html
>     - fi-ivb-3770:        NOTRUN -> [SKIP][25] ([fdo#109271])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ivb-3770/igt@debugfs_test@basic-hwmon.html
>     - fi-elk-e7500:       NOTRUN -> [SKIP][26] ([fdo#109271])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-elk-e7500/igt@debugfs_test@basic-hwmon.html
>     - fi-bsw-nick:        NOTRUN -> [SKIP][27] ([fdo#109271])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-nick/igt@debugfs_test@basic-hwmon.html
>     - fi-hsw-g3258:       NOTRUN -> [SKIP][28] ([fdo#109271])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-g3258/igt@debugfs_test@basic-hwmon.html
>     - fi-glk-j4005:       NOTRUN -> [SKIP][29] ([fdo#109271])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-glk-j4005/igt@debugfs_test@basic-hwmon.html
>     - fi-bxt-dsi:         NOTRUN -> [SKIP][30] ([fdo#109271])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bxt-dsi/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-6700k2:      NOTRUN -> [SKIP][31] ([fdo#109271])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6700k2/igt@debugfs_test@basic-hwmon.html
>     - fi-cfl-8109u:       NOTRUN -> [SKIP][32] ([fdo#109271])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8109u/igt@debugfs_test@basic-hwmon.html
>     - fi-kbl-7567u:       NOTRUN -> [SKIP][33] ([fdo#109271])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-7567u/igt@debugfs_test@basic-hwmon.html
>     - fi-kbl-8809g:       NOTRUN -> [SKIP][34] ([fdo#109271])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-8809g/igt@debugfs_test@basic-hwmon.html
>     - fi-ilk-650:         NOTRUN -> [SKIP][35] ([fdo#109271])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ilk-650/igt@debugfs_test@basic-hwmon.html
>     - fi-cfl-guc:         NOTRUN -> [SKIP][36] ([fdo#109271])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-6600u:       NOTRUN -> [SKIP][37] ([fdo#109271])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6600u/igt@debugfs_test@basic-hwmon.html
>     - fi-bdw-5557u:       NOTRUN -> [SKIP][38] ([fdo#109271])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-5557u/igt@debugfs_test@basic-hwmon.html
> 
>   * igt@gem_exec_gttfill@basic:
>     - fi-pnv-d510:        NOTRUN -> [FAIL][39] ([i915#7229])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-icl-u2:          NOTRUN -> [SKIP][40] ([i915#2190])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-icl-u2:          NOTRUN -> [DMESG-WARN][41] ([i915#4890])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@kms_chamelium@common-hpd-after-suspend:
>     - fi-hsw-4770:        NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html
> 
>   * igt@kms_chamelium@hdmi-hpd-fast:
>     - fi-icl-u2:          NOTRUN -> [SKIP][43] ([fdo#111827]) +7 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
>     - fi-icl-u2:          NOTRUN -> [SKIP][44] ([i915#4103])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html
> 
>   * igt@kms_force_connector_basic@force-load-detect:
>     - fi-icl-u2:          NOTRUN -> [SKIP][45] ([fdo#109285])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
> 
>   * igt@kms_psr@primary_page_flip:
>     - fi-pnv-d510:        NOTRUN -> [SKIP][46] ([fdo#109271]) +44 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - fi-icl-u2:          NOTRUN -> [SKIP][47] ([i915#3555])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@runner@aborted:
>     - fi-icl-u2:          NOTRUN -> [FAIL][48] ([i915#4312])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@runner@aborted.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - {bat-adlm-1}:       [DMESG-WARN][49] ([i915#2867]) -> [PASS][50]
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@gem_ctx_create@basic-files:
>     - {fi-tgl-mst}:       [DMESG-WARN][51] ([i915#6434]) -> [PASS][52]
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-tgl-mst/igt@gem_ctx_create@basic-files.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@gem_ctx_create@basic-files.html
> 
>   * igt@gem_exec_suspend@basic-s0@smem:
>     - {bat-rplp-1}:       [DMESG-WARN][53] ([i915#2867]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-hsw-4770:        [INCOMPLETE][55] ([i915#4785]) -> [PASS][56]
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
>   [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
>   [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
>   [i915#4890]: https://gitlab.freedesktop.org/drm/intel/issues/4890
>   [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434
>   [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
>   [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856
>   [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029
>   [i915#7125]: https://gitlab.freedesktop.org/drm/intel/issues/7125
>   [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7037 -> IGTPW_8029
> 
>   CI-20190529: 20190529
>   CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
>   IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> 
> Testlist changes
> ----------------
> 
> +++ 61 lines
> --- 360 lines
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html

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

* Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT
  2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT Riana Tauro
@ 2022-11-02  8:49   ` Petri Latvala
  0 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2022-11-02  8:49 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev, badal.nilawar

On Wed, Nov 02, 2022 at 10:08:14AM +0530, Riana Tauro wrote:
> Add basic-hwmon test to fast-feedback list. This test verifies the
> hwmon directory for dgfx and prints all its entries.
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>

Acked-by: Petri Latvala <petri.latvala@intel.com>

> ---
>  tests/intel-ci/fast-feedback.testlist | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
> index bd5538a0..f57f8ff3 100644
> --- a/tests/intel-ci/fast-feedback.testlist
> +++ b/tests/intel-ci/fast-feedback.testlist
> @@ -4,6 +4,7 @@ igt@i915_module_load@load
>  # Keep alphabetically sorted by default
>  igt@core_auth@basic-auth
>  igt@debugfs_test@read_all_entries
> +igt@debugfs_test@basic-hwmon
>  igt@fbdev@eof
>  igt@fbdev@info
>  igt@fbdev@nullptr
> -- 
> 2.25.1
> 

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

* [igt-dev] ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)
  2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
                   ` (2 preceding siblings ...)
  2022-11-02  5:43 ` [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2) Patchwork
@ 2022-11-02 11:06 ` Patchwork
  2022-11-02 16:24   ` Tauro, Riana
  2022-11-02 17:47 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-11-02 11:06 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

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

== Series Details ==

Series: Add a basic hwmon testcase (rev2)
URL   : https://patchwork.freedesktop.org/series/110311/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12330_full -> IGTPW_8029_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8029_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8029_full, please notify your bug team 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_8029/index.html

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

  Missing    (1): pig-kbl-iris 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@kms_plane@plane-position-hole@pipe-b-planes:
    - shard-tglb:         [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html

  
New tests
---------

  New tests have been introduced between CI_DRM_12330_full and IGTPW_8029_full:

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

  * igt@debugfs_test@basic-hwmon:
    - Statuses :
    - Exec time: [None] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#6230])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@api_intel_bb@crc32.html
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#6230])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@api_intel_bb@crc32.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([fdo#109314])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][8] ([fdo#109314])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb5/igt@gem_ctx_persistence@file.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([i915#4525])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][13] -> [FAIL][14] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_lmem_swapping@verify-random.html
    - shard-tglb:         NOTRUN -> [SKIP][17] ([i915#4613])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@gem_lmem_swapping@verify-random.html
    - shard-glk:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@gem_lmem_swapping@verify-random.html
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#4613])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([i915#768]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#2856])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gen9_exec_parse@secure-batches.html
    - shard-tglb:         NOTRUN -> [SKIP][22] ([i915#2527] / [i915#2856])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_module_load@reload-no-display:
    - shard-iclb:         [PASS][23] -> [DMESG-WARN][24] ([i915#2867]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@i915_module_load@reload-no-display.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([i915#3989] / [i915#454])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#6590])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#6590])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rps@engine-order:
    - shard-apl:          [PASS][29] -> [FAIL][30] ([i915#6537])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_rps@engine-order.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@i915_pm_rps@engine-order.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#5286]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#5286]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#111614])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#110725] / [fdo#111614])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#111615])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#111615] / [i915#3689])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109278] / [i915#3886])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([i915#3689] / [i915#6095])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3689]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-glk:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl2/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-snb:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_chamelium@vga-hpd-enable-disable-mode:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_chamelium@vga-hpd-enable-disable-mode.html

  * igt@kms_color@deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#3555]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_color@deep-color.html

  * igt@kms_content_protection@uevent:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#7118])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#6944] / [i915#7118])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3555]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271]) +29 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#3359])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3359])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#2346])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109274]) +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [PASS][58] -> [DMESG-WARN][59] ([i915#180]) +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#2587] / [i915#2672]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#2587] / [i915#2672]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#2672]) +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#6497])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) +6 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271]) +39 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +6 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#658])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#2920])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#658])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-tglb:         NOTRUN -> [FAIL][71] ([i915#132] / [i915#3467])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_psr@psr2_cursor_mmap_cpu.html
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109441])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][73] -> [SKIP][74] ([fdo#109441]) +3 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_selftest@all:
    - shard-snb:          NOTRUN -> [SKIP][75] ([fdo#109271]) +59 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_selftest@all.html
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#6433])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_selftest@all.html
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#6433])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_selftest@all.html

  * igt@kms_vblank@pipe-d-query-forked-hang:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109278]) +5 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_vblank@pipe-d-query-forked-hang.html

  * igt@prime_vgem@basic-userptr:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109295] / [i915#3301])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@prime_vgem@basic-userptr.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109295] / [i915#3301])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@prime_vgem@basic-userptr.html

  * igt@sysfs_clients@fair-3:
    - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2994]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@sysfs_clients@fair-3.html
    - shard-tglb:         NOTRUN -> [SKIP][82] ([i915#2994]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@sema-10:
    - shard-glk:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2994]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@sysfs_clients@sema-10.html
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#2994]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@fbdev@nullptr:
    - {shard-rkl}:        [SKIP][85] ([i915#2582]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@fbdev@nullptr.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@fbdev@nullptr.html

  * igt@gem_create@create-clear@smem0:
    - {shard-rkl}:        [INCOMPLETE][87] -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_create@create-clear@smem0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_create@create-clear@smem0.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglb:         [FAIL][89] ([i915#6268]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_eio@suspend:
    - {shard-rkl}:        [FAIL][91] ([i915#7052]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@gem_eio@suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-1/igt@gem_eio@suspend.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][93] ([i915#4525]) -> [PASS][94] +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-tglb:         [FAIL][95] ([i915#2842]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - {shard-rkl}:        [SKIP][97] ([i915#6251]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_exec_fence@basic-busy@bcs0.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_exec_reloc@basic-write-read:
    - {shard-rkl}:        [SKIP][99] ([i915#3281]) -> [PASS][100] +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [SKIP][101] ([i915#2190]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_huc_copy@huc-copy.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gem_huc_copy@huc-copy.html

  * igt@gem_tiled_partial_pwrite_pread@writes:
    - {shard-rkl}:        [SKIP][103] ([i915#3282]) -> [PASS][104] +4 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][105] ([i915#5566] / [i915#716]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@gen9_exec_parse@allowed-single.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-chained:
    - {shard-rkl}:        [SKIP][107] ([i915#2527]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html

  * igt@i915_pm_backlight@basic-brightness:
    - {shard-rkl}:        [SKIP][109] ([i915#3012]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][111] ([fdo#109271]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
    - {shard-dg1}:        [FAIL][113] ([i915#3591]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - {shard-rkl}:        [SKIP][115] ([i915#1397]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - {shard-rkl}:        [FAIL][117] ([fdo#103375]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_pm_rps@waitboost:
    - {shard-rkl}:        [FAIL][119] ([i915#7142]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@i915_pm_rps@waitboost.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rps@waitboost.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
    - shard-glk:          [FAIL][121] -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk9/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][123] ([i915#79]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][125] ([i915#2122]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
    - {shard-rkl}:        [SKIP][127] ([i915#1849] / [i915#4098]) -> [PASS][128] +7 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html

  * igt@kms_plane@pixel-format@pipe-b-planes:
    - {shard-rkl}:        [SKIP][129] ([i915#1849] / [i915#3558]) -> [PASS][130] +1 similar issue
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_plane@pixel-format@pipe-b-planes.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][131] ([fdo#109441]) -> [PASS][132] +2 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr@suspend:
    - {shard-rkl}:        [SKIP][133] ([i915#1072]) -> [PASS][134] +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_psr@suspend.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_psr@suspend.html

  * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b:
    - {shard-rkl}:        [SKIP][135] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html

  * igt@kms_vblank@pipe-b-accuracy-idle:
    - {shard-rkl}:        [SKIP][137] ([i915#1845] / [i915#4098]) -> [PASS][138] +11 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_vblank@pipe-b-accuracy-idle.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_vblank@pipe-b-accuracy-idle.html

  * igt@perf@gen12-mi-rpc:
    - {shard-rkl}:        [SKIP][139] ([fdo#109289]) -> [PASS][140]
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@perf@gen12-mi-rpc.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@perf@gen12-mi-rpc.html

  * igt@prime_vgem@basic-write:
    - {shard-rkl}:        [SKIP][141] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@prime_vgem@basic-write.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@prime_vgem@basic-write.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [FAIL][143] ([i915#6117]) -> [SKIP][144] ([i915#4525])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][145] ([i915#658]) -> [SKIP][146] ([i915#588])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][147] ([i915#2920]) -> [SKIP][148] ([i915#658])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][149] ([i915#658]) -> [SKIP][150] ([i915#2920])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][151] ([fdo#111068] / [i915#658]) -> [SKIP][152] ([i915#2920])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][153], [FAIL][154], [FAIL][155]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159]) ([i915#180] / [i915#3002] / [i915#4312])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@runner@aborted.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl8/igt@runner@aborted.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl1/igt@runner@aborted.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@runner@aborted.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@runner@aborted.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [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#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [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#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [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#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
  [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#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [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#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#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [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#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [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#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#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7037 -> IGTPW_8029
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
  IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ 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_8029/index.html

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)
  2022-11-02 11:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-02 16:24   ` Tauro, Riana
  2022-11-02 18:22     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 11+ messages in thread
From: Tauro, Riana @ 2022-11-02 16:24 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana

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

Hi @Vudum, Lakshminarayana<mailto:lakshminarayana.vudum@intel.com>

These failures are not related to the patch. Could you please repost the results.

  *   igt@gem_exec_whisper@basic-contexts-priority:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html>
  *   igt@kms_plane@plane-position-hole@pipe-b-planes:
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html>
Thanks
Riana Tauro

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, November 2, 2022 4:36 PM
To: Tauro, Riana <riana.tauro@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)

Patch Details
Series:
Add a basic hwmon testcase (rev2)
URL:
https://patchwork.freedesktop.org/series/110311/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
CI Bug Log - changes from CI_DRM_12330_full -> IGTPW_8029_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_8029_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8029_full, please notify your bug team 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_8029/index.html

Participating hosts (9 -> 8)

Missing (1): pig-kbl-iris

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_exec_whisper@basic-contexts-priority:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html>
  *   igt@kms_plane@plane-position-hole@pipe-b-planes:
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html>

New tests

New tests have been introduced between CI_DRM_12330_full and IGTPW_8029_full:

New IGT tests (1)

  *   igt@debugfs_test@basic-hwmon:
     *   Statuses :
     *   Exec time: [None] s

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@crc32:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/intel/issues/6230>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/intel/issues/6230>)
  *   igt@gem_ctx_param@set-priority-not-supported:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314<https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314<https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
  *   igt@gem_ctx_persistence@file:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb5/igt@gem_ctx_persistence@file.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>)
  *   igt@gem_exec_balancer@parallel-keep-in-fence:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>)
  *   igt@gem_exec_fair@basic-pace-share@rcs0:
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-pace-solo@rcs0:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-pace@vcs1:
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_lmem_swapping@verify-random:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_lmem_swapping@verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@gem_lmem_swapping@verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue
  *   igt@gen9_exec_parse@secure-batches:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
  *   igt@i915_module_load@reload-no-display:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@i915_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@i915_module_load@reload-no-display.html> (i915#2867<https://gitlab.freedesktop.org/drm/intel/issues/2867>) +3 similar issues
  *   igt@i915_pm_dc@dc6-psr:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@i915_pm_dc@dc6-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>)
  *   igt@i915_pm_freq_mult@media-freq@gt0:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>)
  *   igt@i915_pm_rps@engine-order:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_rps@engine-order.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@i915_pm_rps@engine-order.html> (i915#6537<https://gitlab.freedesktop.org/drm/intel/issues/6537>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
  *   igt@kms_big_fb@linear-8bpp-rotate-270:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_big_fb@linear-8bpp-rotate-270.html> (fdo#110725<https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
  *   igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>)
  *   igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 similar issue
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
  *   igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
  *   igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue
  *   igt@kms_chamelium@hdmi-crc-fast:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl2/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
  *   igt@kms_chamelium@vga-hpd-enable-disable-mode:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_chamelium@vga-hpd-enable-disable-mode.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
  *   igt@kms_color@deep-color:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_color@deep-color.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +3 similar issues
  *   igt@kms_content_protection@uevent:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_content_protection@uevent.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_content_protection@uevent.html> (i915#6944<https://gitlab.freedesktop.org/drm/intel/issues/6944> / i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-max-size:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 similar issues
  *   igt@kms_cursor_crc@cursor-sliding-512x170:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@kms_cursor_crc@cursor-sliding-512x170.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +29 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
  *   igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
  *   igt@kms_flip@2x-flip-vs-rmfb:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_flip@2x-flip-vs-rmfb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +2 similar issues
  *   igt@kms_flip@2x-nonexisting-fb-interruptible:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +2 similar issues
  *   igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 similar issues
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html> (i915#6497<https://gitlab.freedesktop.org/drm/intel/issues/6497>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +6 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +39 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +6 similar issues
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
  *   igt@kms_psr@psr2_cursor_mmap_cpu:
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_psr@psr2_cursor_mmap_cpu.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467<https://gitlab.freedesktop.org/drm/intel/issues/3467>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
  *   igt@kms_psr@psr2_primary_mmap_cpu:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3 similar issues
  *   igt@kms_selftest@all:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_selftest@all.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +59 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_selftest@all.html> (i915#6433<https://gitlab.freedesktop.org/drm/intel/issues/6433>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_selftest@all.html> (i915#6433<https://gitlab.freedesktop.org/drm/intel/issues/6433>)
  *   igt@kms_vblank@pipe-d-query-forked-hang:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_vblank@pipe-d-query-forked-hang.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +5 similar issues
  *   igt@prime_vgem@basic-userptr:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@prime_vgem@basic-userptr.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3301<https://gitlab.freedesktop.org/drm/intel/issues/3301>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@prime_vgem@basic-userptr.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3301<https://gitlab.freedesktop.org/drm/intel/issues/3301>)
  *   igt@sysfs_clients@fair-3:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@sysfs_clients@fair-3.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@sysfs_clients@fair-3.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
  *   igt@sysfs_clients@sema-10:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@sysfs_clients@sema-10.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue

Possible fixes

  *   igt@fbdev@nullptr:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@fbdev@nullptr.html> (i915#2582<https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@fbdev@nullptr.html>
  *   igt@gem_create@create-clear@smem0:
     *   {shard-rkl}: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_create@create-clear@smem0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_create@create-clear@smem0.html>
  *   igt@gem_ctx_exec@basic-nohangcheck:
     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html>
  *   igt@gem_eio@suspend:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@gem_eio@suspend.html> (i915#7052<https://gitlab.freedesktop.org/drm/intel/issues/7052>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-1/igt@gem_eio@suspend.html>
  *   igt@gem_exec_balancer@parallel-bb-first:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> +1 similar issue
  *   igt@gem_exec_fair@basic-throttle@rcs0:
     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb1/igt@gem_exec_fair@basic-throttle@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_exec_fair@basic-throttle@rcs0.html>
  *   igt@gem_exec_fence@basic-busy@bcs0:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_exec_fence@basic-busy@bcs0.html> (i915#6251<https://gitlab.freedesktop.org/drm/intel/issues/6251>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_exec_fence@basic-busy@bcs0.html>
  *   igt@gem_exec_reloc@basic-write-read:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html> +3 similar issues
  *   igt@gem_huc_copy@huc-copy:
     *   shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gem_huc_copy@huc-copy.html>
  *   igt@gem_tiled_partial_pwrite_pread@writes:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html> +4 similar issues
  *   igt@gen9_exec_parse@allowed-single:
     *   shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@gen9_exec_parse@allowed-single.html>
  *   igt@gen9_exec_parse@bb-chained:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html>
  *   igt@i915_pm_backlight@basic-brightness:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html> (i915#3012<https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
  *   igt@i915_pm_dc@dc9-dpms:
     *   shard-apl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_dc@dc9-dpms.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
  *   igt@i915_pm_rc6_residency@rc6-idle@rcs0:
     *   {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
  *   igt@i915_pm_rpm@dpms-mode-unset-lpsp:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html>
  *   igt@i915_pm_rpm@system-suspend-execbuf:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html>
  *   igt@i915_pm_rps@waitboost:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@i915_pm_rps@waitboost.html> (i915#7142<https://gitlab.freedesktop.org/drm/intel/issues/7142>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rps@waitboost.html>
  *   igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk9/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html>
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html>
  *   igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html>
  *   igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html> +7 similar issues
  *   igt@kms_plane@pixel-format@pipe-b-planes:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_plane@pixel-format@pipe-b-planes.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#3558<https://gitlab.freedesktop.org/drm/intel/issues/3558>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html> +1 similar issue
  *   igt@kms_psr@psr2_sprite_plane_move:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html> +2 similar issues
  *   igt@kms_psr@suspend:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_psr@suspend.html> +2 similar issues
  *   igt@kms_universal_plane@disable-primary-vs-flip-pipe-b:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html>
  *   igt@kms_vblank@pipe-b-accuracy-idle:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_vblank@pipe-b-accuracy-idle.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_vblank@pipe-b-accuracy-idle.html> +11 similar issues
  *   igt@perf@gen12-mi-rpc:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@perf@gen12-mi-rpc.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@perf@gen12-mi-rpc.html>
  *   igt@prime_vgem@basic-write:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@prime_vgem@basic-write.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@prime_vgem@basic-write.html>

Warnings

  *   igt@gem_exec_balancer@parallel-ordering:
     *   shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>)
  *   igt@i915_pm_dc@dc3co-vpb-simulation:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>)
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
  *   igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
  *   igt@runner@aborted:
     *   shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>)

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

Build changes

  *   CI: CI-20190529 -> None
  *   IGT: IGT_7037 -> IGTPW_8029
  *   Piglit: piglit_4509 -> None

CI-20190529: 20190529
CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

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

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

* Re: [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2)
  2022-11-02  8:49   ` Petri Latvala
@ 2022-11-02 16:47     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 11+ messages in thread
From: Vudum, Lakshminarayana @ 2022-11-02 16:47 UTC (permalink / raw)
  To: Latvala, Petri, igt-dev, Tauro, Riana

@Tauro, Riana I have Re-reported long back but didn't see updated results. Once I see, I will update you.

-----Original Message-----
From: Latvala, Petri <petri.latvala@intel.com> 
Sent: Wednesday, November 2, 2022 1:49 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: Tauro, Riana <riana.tauro@intel.com>
Subject: Re: [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2)

On Wed, Nov 02, 2022 at 05:43:23AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Add a basic hwmon testcase (rev2)
> URL   : https://patchwork.freedesktop.org/series/110311/
> State : success
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_12330 -> IGTPW_8029 
> ====================================================
> 
> Summary
> -------
> 
>   **SUCCESS**
> 
>   No regressions found.
> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
> 
> Participating hosts (38 -> 40)
> ------------------------------
> 
>   Additional (3): fi-icl-u2 fi-tgl-dsi fi-pnv-d510 
>   Missing    (1): bat-adlp-6 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_8029:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * {igt@debugfs_test@basic-hwmon} (NEW):
>     - {bat-rpls-2}:       NOTRUN -> [SKIP][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
>     - {fi-tgl-mst}:       NOTRUN -> [SKIP][2]
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@debugfs_test@basic-hwmon.html
>     - fi-icl-u2:          NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@debugfs_test@basic-hwmon.html
>     - fi-rkl-guc:         NOTRUN -> [SKIP][4]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-rkl-guc/igt@debugfs_test@basic-hwmon.html
>     - bat-adlp-4:         NOTRUN -> [SKIP][5]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlp-4/igt@debugfs_test@basic-hwmon.html
>     - {bat-adlm-1}:       NOTRUN -> [SKIP][6]
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-jsl-1}:        NOTRUN -> [SKIP][7]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
>     - {fi-jsl-1}:         NOTRUN -> [SKIP][8]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-jsl-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-rpls-1}:       NOTRUN -> [SKIP][9]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rpls-1/igt@debugfs_test@basic-hwmon.html
>     - {fi-tgl-dsi}:       NOTRUN -> [SKIP][10]
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-dsi/igt@debugfs_test@basic-hwmon.html
>     - {bat-rplp-1}:       NOTRUN -> [SKIP][11]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@debugfs_test@basic-hwmon.html
>     - {bat-adln-1}:       NOTRUN -> [SKIP][12]
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@debugfs_test@basic-hwmon.html
>     - fi-adl-ddr5:        NOTRUN -> [SKIP][13]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-adl-ddr5/igt@debugfs_test@basic-hwmon.html
>     - {fi-ehl-2}:         NOTRUN -> [SKIP][14]
>    [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ehl-2/igt@debug
> fs_test@basic-hwmon.html


Lakshmi, do note:

When this gets merged the above skips are expected on igfx hosts.


--
Petri Latvala



> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - {bat-adln-1}:       [PASS][15] -> [DMESG-WARN][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
> 
>   
> New tests
> ---------
> 
>   New tests have been introduced between CI_DRM_12330 and IGTPW_8029:
> 
> ### New IGT tests (1) ###
> 
>   * igt@debugfs_test@basic-hwmon:
>     - Statuses : 3 pass(s) 37 skip(s)
>     - Exec time: [0.0, 0.01] s
> 
>   
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_8029 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * {igt@debugfs_test@basic-hwmon} (NEW):
>     - fi-cfl-8700k:       NOTRUN -> [SKIP][17] ([fdo#109271])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8700k/igt@debugfs_test@basic-hwmon.html
>     - fi-blb-e6850:       NOTRUN -> [SKIP][18] ([fdo#109271])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-blb-e6850/igt@debugfs_test@basic-hwmon.html
>     - fi-apl-guc:         NOTRUN -> [SKIP][19] ([fdo#109271])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-apl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-bdw-gvtdvm:      NOTRUN -> [SKIP][20] ([fdo#109271])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-gvtdvm/igt@debugfs_test@basic-hwmon.html
>     - fi-bsw-kefka:       NOTRUN -> [SKIP][21] ([fdo#109271])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-kefka/igt@debugfs_test@basic-hwmon.html
>     - fi-snb-2520m:       NOTRUN -> [SKIP][22] ([fdo#109271])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-snb-2520m/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-guc:         NOTRUN -> [SKIP][23] ([fdo#109271])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-hsw-4770:        NOTRUN -> [SKIP][24] ([fdo#109271])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html
>     - fi-ivb-3770:        NOTRUN -> [SKIP][25] ([fdo#109271])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ivb-3770/igt@debugfs_test@basic-hwmon.html
>     - fi-elk-e7500:       NOTRUN -> [SKIP][26] ([fdo#109271])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-elk-e7500/igt@debugfs_test@basic-hwmon.html
>     - fi-bsw-nick:        NOTRUN -> [SKIP][27] ([fdo#109271])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bsw-nick/igt@debugfs_test@basic-hwmon.html
>     - fi-hsw-g3258:       NOTRUN -> [SKIP][28] ([fdo#109271])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-g3258/igt@debugfs_test@basic-hwmon.html
>     - fi-glk-j4005:       NOTRUN -> [SKIP][29] ([fdo#109271])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-glk-j4005/igt@debugfs_test@basic-hwmon.html
>     - fi-bxt-dsi:         NOTRUN -> [SKIP][30] ([fdo#109271])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bxt-dsi/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-6700k2:      NOTRUN -> [SKIP][31] ([fdo#109271])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6700k2/igt@debugfs_test@basic-hwmon.html
>     - fi-cfl-8109u:       NOTRUN -> [SKIP][32] ([fdo#109271])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-8109u/igt@debugfs_test@basic-hwmon.html
>     - fi-kbl-7567u:       NOTRUN -> [SKIP][33] ([fdo#109271])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-7567u/igt@debugfs_test@basic-hwmon.html
>     - fi-kbl-8809g:       NOTRUN -> [SKIP][34] ([fdo#109271])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-kbl-8809g/igt@debugfs_test@basic-hwmon.html
>     - fi-ilk-650:         NOTRUN -> [SKIP][35] ([fdo#109271])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-ilk-650/igt@debugfs_test@basic-hwmon.html
>     - fi-cfl-guc:         NOTRUN -> [SKIP][36] ([fdo#109271])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-cfl-guc/igt@debugfs_test@basic-hwmon.html
>     - fi-skl-6600u:       NOTRUN -> [SKIP][37] ([fdo#109271])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-skl-6600u/igt@debugfs_test@basic-hwmon.html
>     - fi-bdw-5557u:       NOTRUN -> [SKIP][38] ([fdo#109271])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-bdw-5557u/igt@debugfs_test@basic-hwmon.html
> 
>   * igt@gem_exec_gttfill@basic:
>     - fi-pnv-d510:        NOTRUN -> [FAIL][39] ([i915#7229])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - fi-icl-u2:          NOTRUN -> [SKIP][40] ([i915#2190])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-icl-u2:          NOTRUN -> [DMESG-WARN][41] ([i915#4890])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@kms_chamelium@common-hpd-after-suspend:
>     - fi-hsw-4770:        NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html
> 
>   * igt@kms_chamelium@hdmi-hpd-fast:
>     - fi-icl-u2:          NOTRUN -> [SKIP][43] ([fdo#111827]) +7 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
>     - fi-icl-u2:          NOTRUN -> [SKIP][44] ([i915#4103])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html
> 
>   * igt@kms_force_connector_basic@force-load-detect:
>     - fi-icl-u2:          NOTRUN -> [SKIP][45] ([fdo#109285])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
> 
>   * igt@kms_psr@primary_page_flip:
>     - fi-pnv-d510:        NOTRUN -> [SKIP][46] ([fdo#109271]) +44 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
> 
>   * igt@kms_setmode@basic-clone-single-crtc:
>     - fi-icl-u2:          NOTRUN -> [SKIP][47] ([i915#3555])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html
> 
>   * igt@runner@aborted:
>     - fi-icl-u2:          NOTRUN -> [FAIL][48] ([i915#4312])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-icl-u2/igt@runner@aborted.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - {bat-adlm-1}:       [DMESG-WARN][49] ([i915#2867]) -> [PASS][50]
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-adlm-1/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@gem_ctx_create@basic-files:
>     - {fi-tgl-mst}:       [DMESG-WARN][51] ([i915#6434]) -> [PASS][52]
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-tgl-mst/igt@gem_ctx_create@basic-files.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-tgl-mst/igt@gem_ctx_create@basic-files.html
> 
>   * igt@gem_exec_suspend@basic-s0@smem:
>     - {bat-rplp-1}:       [DMESG-WARN][53] ([i915#2867]) -> [PASS][54]
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-hsw-4770:        [INCOMPLETE][55] ([i915#4785]) -> [PASS][56]
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>   [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>   [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
>   [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
>   [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
>   [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
>   [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>   [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>   [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
>   [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>   [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
>   [i915#4890]: https://gitlab.freedesktop.org/drm/intel/issues/4890
>   [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434
>   [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
>   [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856
>   [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029
>   [i915#7125]: https://gitlab.freedesktop.org/drm/intel/issues/7125
>   [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7037 -> IGTPW_8029
> 
>   CI-20190529: 20190529
>   CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
>   IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> 
> Testlist changes
> ----------------
> 
> +++ 61 lines
> --- 360 lines
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html

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

* [igt-dev] ✓ Fi.CI.IGT: success for Add a basic hwmon testcase (rev2)
  2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
                   ` (3 preceding siblings ...)
  2022-11-02 11:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-02 17:47 ` Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-11-02 17:47 UTC (permalink / raw)
  To: Riana Tauro; +Cc: igt-dev

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

== Series Details ==

Series: Add a basic hwmon testcase (rev2)
URL   : https://patchwork.freedesktop.org/series/110311/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12330_full -> IGTPW_8029_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (1): pig-kbl-iris 

New tests
---------

  New tests have been introduced between CI_DRM_12330_full and IGTPW_8029_full:

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

  * igt@debugfs_test@basic-hwmon:
    - Statuses :
    - Exec time: [None] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-iclb:         NOTRUN -> [SKIP][1] ([i915#6230])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@api_intel_bb@crc32.html
    - shard-tglb:         NOTRUN -> [SKIP][2] ([i915#6230])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@api_intel_bb@crc32.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#109314])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][4] ([fdo#109314])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb5/igt@gem_ctx_persistence@file.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([i915#4525])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][8] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][11] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][12] -> [INCOMPLETE][13] ([i915#6755])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_lmem_swapping@verify-random.html
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@gem_lmem_swapping@verify-random.html
    - shard-glk:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@gem_lmem_swapping@verify-random.html
    - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4613])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#768]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#2856])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gen9_exec_parse@secure-batches.html
    - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#2527] / [i915#2856])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_module_load@reload-no-display:
    - shard-iclb:         [PASS][21] -> [DMESG-WARN][22] ([i915#2867]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@i915_module_load@reload-no-display.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@i915_module_load@reload-no-display.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#3989] / [i915#454])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#6590])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#6590])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rps@engine-order:
    - shard-apl:          [PASS][27] -> [FAIL][28] ([i915#6537])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_rps@engine-order.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@i915_pm_rps@engine-order.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#5286]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
    - shard-iclb:         NOTRUN -> [SKIP][30] ([i915#5286]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111614])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#110725] / [fdo#111614])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#111615])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111615] / [i915#3689])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#109278] / [i915#3886])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#3689] / [i915#6095])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3689]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-glk:          NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl2/igt@kms_chamelium@hdmi-crc-fast.html
    - shard-snb:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_chamelium@vga-hpd-enable-disable-mode:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_chamelium@vga-hpd-enable-disable-mode.html

  * igt@kms_color@deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#3555]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_color@deep-color.html

  * igt@kms_content_protection@uevent:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([i915#7118])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#6944] / [i915#7118])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#3555]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271]) +29 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#3359])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - shard-glk:          [PASS][52] -> [FAIL][53] ([i915#2346])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [PASS][56] -> [DMESG-WARN][57] ([i915#180]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#2587] / [i915#2672]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#2672]) +3 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#6497])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109280] / [fdo#111825]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271]) +39 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +6 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_plane@plane-position-hole@pipe-b-planes:
    - shard-tglb:         [PASS][65] -> [INCOMPLETE][66] ([i915#6453])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#658])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#2920])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#658])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-tglb:         NOTRUN -> [FAIL][71] ([i915#132] / [i915#3467])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_psr@psr2_cursor_mmap_cpu.html
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109441])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][73] -> [SKIP][74] ([fdo#109441]) +3 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_selftest@all:
    - shard-snb:          NOTRUN -> [SKIP][75] ([fdo#109271]) +59 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_selftest@all.html
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#6433])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_selftest@all.html
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#6433])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_selftest@all.html

  * igt@kms_vblank@pipe-d-query-forked-hang:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109278]) +5 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_vblank@pipe-d-query-forked-hang.html

  * igt@prime_vgem@basic-userptr:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109295] / [i915#3301])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@prime_vgem@basic-userptr.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109295] / [i915#3301])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@prime_vgem@basic-userptr.html

  * igt@sysfs_clients@fair-3:
    - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2994]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@sysfs_clients@fair-3.html
    - shard-tglb:         NOTRUN -> [SKIP][82] ([i915#2994]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@sema-10:
    - shard-glk:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2994]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@sysfs_clients@sema-10.html
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#2994]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@gem_busy@close-race:
    - {shard-rkl}:        [TIMEOUT][85] ([i915#5748]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@gem_busy@close-race.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@gem_busy@close-race.html

  * igt@gem_create@create-clear@smem0:
    - {shard-rkl}:        [INCOMPLETE][87] -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_create@create-clear@smem0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_create@create-clear@smem0.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-tglb:         [FAIL][89] ([i915#6268]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_persistence@many-contexts:
    - {shard-rkl}:        [FAIL][91] ([i915#2410]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@suspend:
    - {shard-rkl}:        [FAIL][93] ([i915#7052]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@gem_eio@suspend.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-1/igt@gem_eio@suspend.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][95] ([i915#4525]) -> [PASS][96] +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-tglb:         [FAIL][97] ([i915#2842]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - {shard-rkl}:        [SKIP][99] ([i915#6251]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_exec_fence@basic-busy@bcs0.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_exec_reloc@basic-wc-active:
    - {shard-rkl}:        [SKIP][101] ([i915#3281]) -> [PASS][102] +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gem_exec_reloc@basic-wc-active.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_exec_reloc@basic-wc-active.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [SKIP][103] ([i915#2190]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_huc_copy@huc-copy.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gem_huc_copy@huc-copy.html

  * igt@gem_partial_pwrite_pread@write-display:
    - {shard-rkl}:        [SKIP][105] ([i915#3282]) -> [PASS][106] +2 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@gem_partial_pwrite_pread@write-display.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][107] ([i915#5566] / [i915#716]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@gen9_exec_parse@allowed-single.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][109] ([fdo#109271]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
    - {shard-dg1}:        [FAIL][111] ([i915#3591]) -> ([PASS][112], [PASS][113])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - {shard-rkl}:        [FAIL][114] ([fdo#103375]) -> ([PASS][115], [PASS][116])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_pm_rps@waitboost:
    - {shard-rkl}:        [FAIL][117] ([i915#7142]) -> ([PASS][118], [PASS][119])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@i915_pm_rps@waitboost.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rps@waitboost.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-4/igt@i915_pm_rps@waitboost.html

  * igt@kms_atomic@atomic_plane_damage:
    - {shard-rkl}:        [SKIP][120] ([i915#4098]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@kms_atomic@atomic_plane_damage.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_atomic@atomic_plane_damage.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - {shard-rkl}:        [SKIP][122] ([i915#1845] / [i915#4098]) -> [PASS][123] +3 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
    - shard-glk:          [FAIL][124] -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk9/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][126] ([i915#79]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][128] ([i915#2122]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen:
    - {shard-rkl}:        [SKIP][130] ([i915#1849] / [i915#4098]) -> [PASS][131] +3 similar issues
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_plane@plane-panning-top-left@pipe-a-planes:
    - {shard-rkl}:        [SKIP][132] ([i915#1849] / [i915#3558]) -> [PASS][133] +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][134] ([fdo#109441]) -> [PASS][135] +2 similar issues
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@perf@gen12-mi-rpc:
    - {shard-rkl}:        [SKIP][136] ([fdo#109289]) -> ([PASS][137], [PASS][138])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@perf@gen12-mi-rpc.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@perf@gen12-mi-rpc.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-3/igt@perf@gen12-mi-rpc.html

  * igt@prime_vgem@basic-fence-read:
    - {shard-rkl}:        [SKIP][139] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][140]
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@prime_vgem@basic-fence-read.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [FAIL][141] ([i915#6117]) -> [SKIP][142] ([i915#4525])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][143] ([i915#658]) -> [SKIP][144] ([i915#588])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][145] ([i915#2920]) -> [SKIP][146] ([i915#658])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][147] ([i915#658]) -> [SKIP][148] ([i915#2920])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][149] ([fdo#111068] / [i915#658]) -> [SKIP][150] ([i915#2920])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][151], [FAIL][152], [FAIL][153]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157]) ([i915#180] / [i915#3002] / [i915#4312])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@runner@aborted.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl8/igt@runner@aborted.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl1/igt@runner@aborted.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@runner@aborted.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@runner@aborted.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.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#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [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#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
  [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#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [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#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [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#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [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#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [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#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#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [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#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6453]: https://gitlab.freedesktop.org/drm/intel/issues/6453
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
  [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#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#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7037 -> IGTPW_8029
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
  IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ 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_8029/index.html

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)
  2022-11-02 16:24   ` Tauro, Riana
@ 2022-11-02 18:22     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 11+ messages in thread
From: Vudum, Lakshminarayana @ 2022-11-02 18:22 UTC (permalink / raw)
  To: Tauro, Riana, igt-dev

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

All good now.

From: Tauro, Riana <riana.tauro@intel.com>
Sent: Wednesday, November 2, 2022 9:24 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: RE: ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)

Hi @Vudum, Lakshminarayana<mailto:lakshminarayana.vudum@intel.com>

These failures are not related to the patch. Could you please repost the results.

  *   igt@gem_exec_whisper@basic-contexts-priority:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html>
  *   igt@kms_plane@plane-position-hole@pipe-b-planes:
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html>
Thanks
Riana Tauro

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Wednesday, November 2, 2022 4:36 PM
To: Tauro, Riana <riana.tauro@intel.com<mailto:riana.tauro@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Add a basic hwmon testcase (rev2)

Patch Details
Series:
Add a basic hwmon testcase (rev2)
URL:
https://patchwork.freedesktop.org/series/110311/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
CI Bug Log - changes from CI_DRM_12330_full -> IGTPW_8029_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_8029_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8029_full, please notify your bug team 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_8029/index.html

Participating hosts (9 -> 8)

Missing (1): pig-kbl-iris

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_exec_whisper@basic-contexts-priority:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_exec_whisper@basic-contexts-priority.html>
  *   igt@kms_plane@plane-position-hole@pipe-b-planes:
     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb2/igt@kms_plane@plane-position-hole@pipe-b-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_plane@plane-position-hole@pipe-b-planes.html>

New tests

New tests have been introduced between CI_DRM_12330_full and IGTPW_8029_full:

New IGT tests (1)

  *   igt@debugfs_test@basic-hwmon:
     *   Statuses :
     *   Exec time: [None] s

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@crc32:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/intel/issues/6230>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/intel/issues/6230>)
  *   igt@gem_ctx_param@set-priority-not-supported:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314<https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gem_ctx_param@set-priority-not-supported.html> (fdo#109314<https://bugs.freedesktop.org/show_bug.cgi?id=109314>)
  *   igt@gem_ctx_persistence@file:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb5/igt@gem_ctx_persistence@file.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>)
  *   igt@gem_exec_balancer@parallel-keep-in-fence:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>)
  *   igt@gem_exec_fair@basic-pace-share@rcs0:
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-pace-solo@rcs0:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-pace@vcs1:
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_lmem_swapping@verify-random:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@gem_lmem_swapping@verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@gem_lmem_swapping@verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) +1 similar issue
  *   igt@gen9_exec_parse@secure-batches:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
  *   igt@i915_module_load@reload-no-display:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@i915_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@i915_module_load@reload-no-display.html> (i915#2867<https://gitlab.freedesktop.org/drm/intel/issues/2867>) +3 similar issues
  *   igt@i915_pm_dc@dc6-psr:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@i915_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@i915_pm_dc@dc6-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>)
  *   igt@i915_pm_freq_mult@media-freq@gt0:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>)
  *   igt@i915_pm_rps@engine-order:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_rps@engine-order.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@i915_pm_rps@engine-order.html> (i915#6537<https://gitlab.freedesktop.org/drm/intel/issues/6537>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
  *   igt@kms_big_fb@linear-8bpp-rotate-270:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_big_fb@linear-8bpp-rotate-270.html> (fdo#110725<https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
  *   igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>)
  *   igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 similar issue
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
  *   igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
  *   igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue
  *   igt@kms_chamelium@hdmi-crc-fast:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl2/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_chamelium@hdmi-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
  *   igt@kms_chamelium@vga-hpd-enable-disable-mode:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_chamelium@vga-hpd-enable-disable-mode.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue
  *   igt@kms_color@deep-color:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_color@deep-color.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +3 similar issues
  *   igt@kms_content_protection@uevent:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_content_protection@uevent.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@kms_content_protection@uevent.html> (i915#6944<https://gitlab.freedesktop.org/drm/intel/issues/6944> / i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-max-size:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2 similar issues
  *   igt@kms_cursor_crc@cursor-sliding-512x170:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@kms_cursor_crc@cursor-sliding-512x170.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +29 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb1/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)
  *   igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
  *   igt@kms_flip@2x-flip-vs-rmfb:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_flip@2x-flip-vs-rmfb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +2 similar issues
  *   igt@kms_flip@2x-nonexisting-fb-interruptible:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +2 similar issues
  *   igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 similar issues
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html> (i915#6497<https://gitlab.freedesktop.org/drm/intel/issues/6497>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +6 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +39 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +6 similar issues
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
  *   igt@kms_psr@psr2_cursor_mmap_cpu:
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@kms_psr@psr2_cursor_mmap_cpu.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467<https://gitlab.freedesktop.org/drm/intel/issues/3467>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
  *   igt@kms_psr@psr2_primary_mmap_cpu:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3 similar issues
  *   igt@kms_selftest@all:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-snb4/igt@kms_selftest@all.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +59 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb8/igt@kms_selftest@all.html> (i915#6433<https://gitlab.freedesktop.org/drm/intel/issues/6433>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@kms_selftest@all.html> (i915#6433<https://gitlab.freedesktop.org/drm/intel/issues/6433>)
  *   igt@kms_vblank@pipe-d-query-forked-hang:
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb5/igt@kms_vblank@pipe-d-query-forked-hang.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +5 similar issues
  *   igt@prime_vgem@basic-userptr:
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb5/igt@prime_vgem@basic-userptr.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3301<https://gitlab.freedesktop.org/drm/intel/issues/3301>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@prime_vgem@basic-userptr.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3301<https://gitlab.freedesktop.org/drm/intel/issues/3301>)
  *   igt@sysfs_clients@fair-3:
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@sysfs_clients@fair-3.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb7/igt@sysfs_clients@fair-3.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
  *   igt@sysfs_clients@sema-10:
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk7/igt@sysfs_clients@sema-10.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb8/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue

Possible fixes

  *   igt@fbdev@nullptr:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@fbdev@nullptr.html> (i915#2582<https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@fbdev@nullptr.html>
  *   igt@gem_create@create-clear@smem0:
     *   {shard-rkl}: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_create@create-clear@smem0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_create@create-clear@smem0.html>
  *   igt@gem_ctx_exec@basic-nohangcheck:
     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html>
  *   igt@gem_eio@suspend:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@gem_eio@suspend.html> (i915#7052<https://gitlab.freedesktop.org/drm/intel/issues/7052>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-1/igt@gem_eio@suspend.html>
  *   igt@gem_exec_balancer@parallel-bb-first:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> +1 similar issue
  *   igt@gem_exec_fair@basic-throttle@rcs0:
     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb1/igt@gem_exec_fair@basic-throttle@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb6/igt@gem_exec_fair@basic-throttle@rcs0.html>
  *   igt@gem_exec_fence@basic-busy@bcs0:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@gem_exec_fence@basic-busy@bcs0.html> (i915#6251<https://gitlab.freedesktop.org/drm/intel/issues/6251>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@gem_exec_fence@basic-busy@bcs0.html>
  *   igt@gem_exec_reloc@basic-write-read:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html> +3 similar issues
  *   igt@gem_huc_copy@huc-copy:
     *   shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-tglb6/igt@gem_huc_copy@huc-copy.html> (i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-tglb3/igt@gem_huc_copy@huc-copy.html>
  *   igt@gem_tiled_partial_pwrite_pread@writes:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html> +4 similar issues
  *   igt@gen9_exec_parse@allowed-single:
     *   shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@gen9_exec_parse@allowed-single.html>
  *   igt@gen9_exec_parse@bb-chained:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html>
  *   igt@i915_pm_backlight@basic-brightness:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html> (i915#3012<https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
  *   igt@i915_pm_dc@dc9-dpms:
     *   shard-apl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@i915_pm_dc@dc9-dpms.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
  *   igt@i915_pm_rc6_residency@rc6-idle@rcs0:
     *   {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
  *   igt@i915_pm_rpm@dpms-mode-unset-lpsp:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html>
  *   igt@i915_pm_rpm@system-suspend-execbuf:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html>
  *   igt@i915_pm_rps@waitboost:
     *   {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@i915_pm_rps@waitboost.html> (i915#7142<https://gitlab.freedesktop.org/drm/intel/issues/7142>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@i915_pm_rps@waitboost.html>
  *   igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk9/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html>
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html>
  *   igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html>
  *   igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html> +7 similar issues
  *   igt@kms_plane@pixel-format@pipe-b-planes:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@kms_plane@pixel-format@pipe-b-planes.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#3558<https://gitlab.freedesktop.org/drm/intel/issues/3558>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html> +1 similar issue
  *   igt@kms_psr@psr2_sprite_plane_move:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html> +2 similar issues
  *   igt@kms_psr@suspend:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_psr@suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_psr@suspend.html> +2 similar issues
  *   igt@kms_universal_plane@disable-primary-vs-flip-pipe-b:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html>
  *   igt@kms_vblank@pipe-b-accuracy-idle:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-1/igt@kms_vblank@pipe-b-accuracy-idle.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-6/igt@kms_vblank@pipe-b-accuracy-idle.html> +11 similar issues
  *   igt@perf@gen12-mi-rpc:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-5/igt@perf@gen12-mi-rpc.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-2/igt@perf@gen12-mi-rpc.html>
  *   igt@prime_vgem@basic-write:
     *   {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-rkl-2/igt@prime_vgem@basic-write.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-rkl-5/igt@prime_vgem@basic-write.html>

Warnings

  *   igt@gem_exec_balancer@parallel-ordering:
     *   shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>)
  *   igt@i915_pm_dc@dc3co-vpb-simulation:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>)
  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
  *   igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)
  *   igt@runner@aborted:
     *   shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12330/shard-apl1/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/shard-apl3/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>)

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

Build changes

  *   CI: CI-20190529 -> None
  *   IGT: IGT_7037 -> IGTPW_8029
  *   Piglit: piglit_4509 -> None

CI-20190529: 20190529
CI_DRM_12330: b4169c84bf30172f83c6d365a927dcea0cd7a2ab @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8029: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8029/index.html
IGT_7037: 6a25c53624502fc85cec3cf0a0bf244a2346e30f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

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

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

end of thread, other threads:[~2022-11-02 18:22 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-02  4:38 [igt-dev] [PATCH i-g-t v2 0/2] Add a basic hwmon testcase Riana Tauro
2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/debugfs_test: Add basic-hwmon test Riana Tauro
2022-11-02  4:38 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/intel-ci/fast-feedback: Add basic-hwmon test to BAT Riana Tauro
2022-11-02  8:49   ` Petri Latvala
2022-11-02  5:43 ` [igt-dev] ✓ Fi.CI.BAT: success for Add a basic hwmon testcase (rev2) Patchwork
2022-11-02  8:49   ` Petri Latvala
2022-11-02 16:47     ` Vudum, Lakshminarayana
2022-11-02 11:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-11-02 16:24   ` Tauro, Riana
2022-11-02 18:22     ` Vudum, Lakshminarayana
2022-11-02 17:47 ` [igt-dev] ✓ Fi.CI.IGT: success " 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.