All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
@ 2022-03-31 14:53 Melissa Wen
  2022-03-31 17:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Melissa Wen @ 2022-03-31 14:53 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, markyacoub

The alpha-7efc test takes into account that fg.alpha (pixel alpha
component) and plane_alpha (alpha property) are swappable in the
pre-multiplied blend formula:
 plane_alpha * fg.rgb + (1 - (plane_alpha * fg.alpha)) * bg.rgb

Also, 0xfcfc is double 0x7e7e, so the composition of a given plane_alpha
and 0x7e7e argb_fb would result in the same CRC of plane_alpha/2 and
0xfcfc argb_fb.

However, precision and rounding issues may affect calculation and
results are not consistent between different hw. For example, the test
case fails on i915 gen8 and also for some alpha values on amdgpu (after
applying[1]), but passes on i915 gen11.

Therefore, refactor the test for a more assertive verification that
facilitates debugging when it fails, but keep validating pre-multiplied
alpha property in a alpha-7efc context. For this, remove the loop in a
range of alpha values and just check the swappable property of fg.alpha
and plane_alpha on a pre-multiplied blend mode (default for DRM).

[1] https://lore.kernel.org/dri-devel/20220329201835.2393141-1-mwen@igalia.com/

Signed-off-by: Melissa Wen <mwen@igalia.com>
---
 tests/kms_plane_alpha_blend.c | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/tests/kms_plane_alpha_blend.c b/tests/kms_plane_alpha_blend.c
index d061262d..8e54dfd6 100644
--- a/tests/kms_plane_alpha_blend.c
+++ b/tests/kms_plane_alpha_blend.c
@@ -386,7 +386,6 @@ static void alpha_7efc(data_t *data, enum pipe pipe, igt_plane_t *plane)
 {
 	igt_display_t *display = &data->display;
 	igt_crc_t ref_crc = {}, crc = {};
-	int i;
 
 	if (plane->type != DRM_PLANE_TYPE_PRIMARY)
 		igt_plane_set_fb(igt_pipe_get_plane_type(&display->pipes[pipe], DRM_PLANE_TYPE_PRIMARY), &data->gray_fb);
@@ -394,21 +393,18 @@ static void alpha_7efc(data_t *data, enum pipe pipe, igt_plane_t *plane)
 	igt_display_commit2(display, COMMIT_ATOMIC);
 	igt_pipe_crc_start(data->pipe_crc);
 
-	/* for coverage, plane alpha and fb alpha should be swappable, so swap fb and alpha */
-	for (i = 0; i < 256; i += 8) {
-		igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, ((i/2) << 8) | (i/2));
-		igt_plane_set_fb(plane, &data->argb_fb_fc);
-		igt_display_commit2(display, COMMIT_ATOMIC);
+	igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, 0x7e7e);
+	igt_plane_set_fb(plane, &data->argb_fb_fc);
+	igt_display_commit2(display, COMMIT_ATOMIC);
 
-		igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &ref_crc);
+	igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &ref_crc);
 
-		igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, (i << 8) | i);
-		igt_plane_set_fb(plane, &data->argb_fb_7e);
-		igt_display_commit2(display, COMMIT_ATOMIC);
+	igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, 0xfcfc);
+	igt_plane_set_fb(plane, &data->argb_fb_7e);
+	igt_display_commit2(display, COMMIT_ATOMIC);
 
-		igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc);
-		igt_assert_crc_equal(&ref_crc, &crc);
-	}
+	igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc);
+	igt_assert_crc_equal(&ref_crc, &crc);
 
 	igt_pipe_crc_stop(data->pipe_crc);
 }
@@ -536,7 +532,8 @@ static void run_subtests(data_t *data, enum pipe pipe)
 	igt_subtest_f("pipe-%s-alpha-basic", kmstest_pipe_name(pipe))
 		run_test_on_pipe_planes(data, pipe, false, true, basic_alpha);
 
-	igt_describe("Tests plane alpha-7efc properties.");
+	igt_describe("Uses alpha values 0x7e and 0xfc to validate fg.alpha and "
+		     "plane_alpha are swappable on pre-multiplied blend mode.");
 	igt_subtest_f("pipe-%s-alpha-7efc", kmstest_pipe_name(pipe))
 		run_test_on_pipe_planes(data, pipe, false, true, alpha_7efc);
 
-- 
2.35.1

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

* [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
@ 2022-03-31 17:30 ` Patchwork
  2022-04-05 20:56   ` Melissa Wen
  2022-03-31 17:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-03-31 17:30 UTC (permalink / raw)
  To: Melissa Wen; +Cc: igt-dev

== Series Details ==

Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
URL   : https://patchwork.freedesktop.org/series/102026/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045 for the overview.

test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569675):
  Ok:                   22
  Expected Fail:         3
  Fail:                287
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1648747524:step_script
  section_start:1648747524:upload_artifacts_on_failure
  Uploading artifacts for failed job
  Uploading artifacts...
  build: found 1713 matching files and directories   
  Uploading artifacts as "archive" to coordinator... 201 Created  id=20569675 responseStatus=201 Created token=ZkXD-TSJ
  section_end:1648747535:upload_artifacts_on_failure
  section_start:1648747535:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1648747536:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

test:ninja-test-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569676):
  Ok:                   22
  Expected Fail:         3
  Fail:                287
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1648747524:step_script
  section_start:1648747524:upload_artifacts_on_failure
  Uploading artifacts for failed job
  Uploading artifacts...
  build: found 1713 matching files and directories   
  Uploading artifacts as "archive" to coordinator... 201 Created  id=20569676 responseStatus=201 Created token=GWysfov2
  section_end:1648747535:upload_artifacts_on_failure
  section_start:1648747535:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1648747535:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
  2022-03-31 17:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2022-03-31 17:49 ` Patchwork
  2022-03-31 22:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-03-31 17:49 UTC (permalink / raw)
  To: Melissa Wen; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
URL   : https://patchwork.freedesktop.org/series/102026/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11435 -> IGTPW_6851
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (45 -> 43)
------------------------------

  Additional (2): fi-kbl-soraka bat-dg2-9 
  Missing    (4): fi-bsw-cyan bat-dg2-8 shard-tglu fi-bdw-samus 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][1] ([fdo#109271]) +9 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][4] ([i915#1886])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
    - fi-cfl-8109u:       [PASS][6] -> [DMESG-WARN][7] ([i915#295] / [i915#5341])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#533])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-b:
    - fi-cfl-8109u:       [PASS][9] -> [DMESG-WARN][10] ([i915#295]) +11 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - {bat-adlp-6}:       [DMESG-WARN][11] ([i915#3576]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/bat-adlp-6/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_engines:
    - bat-dg1-6:          [INCOMPLETE][13] ([i915#4418]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/bat-dg1-6/igt@i915_selftest@live@gt_engines.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/bat-dg1-6/igt@i915_selftest@live@gt_engines.html

  * igt@i915_selftest@live@requests:
    - fi-rkl-guc:         [DMESG-WARN][15] -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/fi-rkl-guc/igt@i915_selftest@live@requests.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-rkl-guc/igt@i915_selftest@live@requests.html

  * igt@kms_busy@basic@flip:
    - fi-tgl-u2:          [DMESG-WARN][17] ([i915#402]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/fi-tgl-u2/igt@kms_busy@basic@flip.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/fi-tgl-u2/igt@kms_busy@basic@flip.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5193]: https://gitlab.freedesktop.org/drm/intel/issues/5193
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341
  [i915#750]: https://gitlab.freedesktop.org/drm/intel/issues/750


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6403 -> IGTPW_6851

  CI-20190529: 20190529
  CI_DRM_11435: 4a744c1934fd55c3f705bab1ce6f96f6688c96e2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6851: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/index.html
  IGT_6403: bc3f6833a12221a46659535dac06ebb312490eb4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
  2022-03-31 17:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
  2022-03-31 17:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2022-03-31 22:00 ` Patchwork
  2022-04-01 14:33   ` Melissa Wen
  2022-04-04 18:12 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2022-04-07 14:48 ` [igt-dev] [PATCH i-g-t] " Rodrigo Siqueira Jordao
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-03-31 22:00 UTC (permalink / raw)
  To: Melissa Wen; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
URL   : https://patchwork.freedesktop.org/series/102026/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11435_full -> IGTPW_6851_full
====================================================

Summary
-------

  **FAILURE**

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

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

  Missing    (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-glk:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-2x:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#1839])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@feature_discovery@display-2x.html

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@feature_discovery@psr2.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-glk:          NOTRUN -> [SKIP][5] ([fdo#109271]) +120 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@suspend-resume:
    - shard-iclb:         NOTRUN -> [SKIP][6] ([i915#5327]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_ccs@suspend-resume.html
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#5325]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-massive:
    - shard-apl:          NOTRUN -> [DMESG-WARN][8] ([i915#4991])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@idempotent:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_ctx_persistence@idempotent.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#232])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_balancer@parallel.html
    - shard-iclb:         NOTRUN -> [DMESG-WARN][13] ([i915#5076])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([i915#4525])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][16] ([i915#5076]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
    - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4525])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          [PASS][18] -> [FAIL][19] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][22] -> [FAIL][23] ([i915#2842])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([i915#2842])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][26] ([i915#2842]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-snb:          NOTRUN -> [SKIP][29] ([fdo#109271]) +184 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109313])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109313])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109283])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#109283] / [i915#4877])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#112283])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_exec_params@secure-non-root.html
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#112283])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_exec_params@secure-non-root.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb5/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_softpin@allocator-evict-all-engines:
    - shard-glk:          [PASS][39] -> [FAIL][40] ([i915#4171])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk1/igt@gem_softpin@allocator-evict-all-engines.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk9/igt@gem_softpin@allocator-evict-all-engines.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109312])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3297]) +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_userptr_blits@dmabuf-unsync.html

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

  * igt@gen7_exec_parse@chained-batch:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gen7_exec_parse@chained-batch.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +6 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2527] / [i915#2856]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#454])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#4281])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#1937])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
    - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#1937])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1937])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#1902])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109289] / [fdo#111719])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#110892])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109506] / [i915#2411])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#5286]) +2 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +229 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#5286]) +6 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111614]) +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3777]) +4 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
    - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3777]) +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-glk:          [PASS][67] -> [DMESG-WARN][68] ([i915#118]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110723]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615]) +5 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#2705])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@kms_big_joiner@invalid-modeset.html
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#2705])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +5 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +7 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +10 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#3886]) +6 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#3689]) +7 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) +10 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3689]) +11 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_chamelium@dp-crc-fast:
    - shard-snb:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb7/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_chamelium@hdmi-edid-read:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +19 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_chamelium@hdmi-hpd.html

  * igt@kms_color@pipe-b-deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109278] / [i915#3555])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_color@pipe-b-deep-color.html

  * igt@kms_color@pipe-d-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278] / [i915#1149])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_color@pipe-d-gamma.html

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-b-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl1/igt@kms_color_chamelium@pipe-b-degamma.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_content_protection@atomic.html
    - shard-apl:          NOTRUN -> [TIMEOUT][89] ([i915#1319])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1063]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#3116] / [i915#3299])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109300] / [fdo#111066])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_content_protection@mei_interface.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][93] ([i915#2105])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109278] / [fdo#109279]) +4 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#3319]) +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#3359]) +10 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359]) +8 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#4103]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109274])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287]) +2 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3966])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_flip@2x-absolute-wf_vblank.html

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

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +12 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-suspend@b-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][107] ([i915#180]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_flip@flip-vs-suspend@b-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#4911])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109285])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109280]) +24 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109280] / [fdo#111825]) +49 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#533]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
    - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-b-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_plane_lowres@pipe-b-tiling-yf.html

  * igt@kms_plane_lowres@pipe-c-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-4.html
    - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#5288])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-4.html

  * igt@kms_plane_lowres@pipe-c-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-x.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#5176]) +7 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#5235]) +2 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale.html

  * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation:
    - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#5176]) +5 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][125] ([i915#1836])
   [125]: https://intel-gfx-ci.01.org/tree/drm-

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 22:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-01 14:33   ` Melissa Wen
  2022-04-04 17:59     ` Rodrigo Siqueira Jordao
  0 siblings, 1 reply; 11+ messages in thread
From: Melissa Wen @ 2022-04-01 14:33 UTC (permalink / raw)
  To: igt-dev

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

On 03/31, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
> URL   : https://patchwork.freedesktop.org/series/102026/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_11435_full -> IGTPW_6851_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_6851_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_6851_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_6851/index.html
> 
> Participating hosts (12 -> 7)
> ------------------------------
> 
>   Missing    (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_6851_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
>     - shard-glk:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

Hi,

I don't see how a change limited to kms_plane_alpha_blend code can cause
a regression on kms_big_fb. Is that a flake?

Best Regards,

Melissa

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_6851_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@feature_discovery@display-2x:
>     - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#1839])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@feature_discovery@display-2x.html
> 
>   * igt@feature_discovery@psr2:
>     - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@feature_discovery@psr2.html
> 
>   * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>     - shard-glk:          NOTRUN -> [SKIP][5] ([fdo#109271]) +120 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
> 
>   * igt@gem_ccs@suspend-resume:
>     - shard-iclb:         NOTRUN -> [SKIP][6] ([i915#5327]) +1 similar issue
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_ccs@suspend-resume.html
>     - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#5325]) +1 similar issue
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_ccs@suspend-resume.html
> 
>   * igt@gem_create@create-massive:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][8] ([i915#4991])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_persistence@idempotent:
>     - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +3 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_ctx_persistence@idempotent.html
> 
>   * igt@gem_ctx_sseu@mmap-args:
>     - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html
> 
>   * igt@gem_eio@kms:
>     - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#232])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_balancer@parallel:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076]) +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_balancer@parallel.html
>     - shard-iclb:         NOTRUN -> [DMESG-WARN][13] ([i915#5076])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gem_exec_balancer@parallel.html
> 
>   * igt@gem_exec_balancer@parallel-balancer:
>     - shard-iclb:         [PASS][14] -> [SKIP][15] ([i915#4525])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html
> 
>   * igt@gem_exec_balancer@parallel-keep-in-fence:
>     - shard-tglb:         NOTRUN -> [DMESG-WARN][16] ([i915#5076]) +1 similar issue
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
>     - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4525])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-kbl:          [PASS][18] -> [FAIL][19] ([i915#2842])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-vip@rcs0:
>     - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
>     - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-solo@rcs0:
>     - shard-apl:          [PASS][22] -> [FAIL][23] ([i915#2842])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs0:
>     - shard-iclb:         [PASS][24] -> [FAIL][25] ([i915#2842])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][26] ([i915#2842]) +1 similar issue
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>     - shard-snb:          NOTRUN -> [SKIP][29] ([fdo#109271]) +184 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>     - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109313])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>     - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109313])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
> 
>   * igt@gem_exec_params@no-vebox:
>     - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109283])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_params@no-vebox.html
>     - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#109283] / [i915#4877])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@gem_exec_params@no-vebox.html
> 
>   * igt@gem_exec_params@secure-non-root:
>     - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#112283])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_exec_params@secure-non-root.html
>     - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#112283])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_exec_params@secure-non-root.html
> 
>   * igt@gem_lmem_swapping@parallel-random-verify:
>     - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html
> 
>   * igt@gem_pxp@create-protected-buffer:
>     - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270]) +1 similar issue
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb5/igt@gem_pxp@create-protected-buffer.html
> 
>   * igt@gem_pxp@regular-baseline-src-copy-readible:
>     - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +4 similar issues
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html
> 
>   * igt@gem_softpin@allocator-evict-all-engines:
>     - shard-glk:          [PASS][39] -> [FAIL][40] ([i915#4171])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk1/igt@gem_softpin@allocator-evict-all-engines.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk9/igt@gem_softpin@allocator-evict-all-engines.html
> 
>   * igt@gem_softpin@evict-snoop:
>     - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109312])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_softpin@evict-snoop.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3297]) +3 similar issues
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#3297])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gen7_exec_parse@chained-batch:
>     - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +3 similar issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gen7_exec_parse@chained-batch.html
> 
>   * igt@gen7_exec_parse@cmd-crossing-page:
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +6 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gen7_exec_parse@cmd-crossing-page.html
> 
>   * igt@gen9_exec_parse@bb-large:
>     - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2527] / [i915#2856]) +3 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gen9_exec_parse@bb-large.html
> 
>   * igt@gen9_exec_parse@valid-registers:
>     - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856]) +1 similar issue
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gen9_exec_parse@valid-registers.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#454])
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#4281])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@i915_pm_dc@dc9-dpms.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>     - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#1937])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>     - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#1937])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>     - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1937])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> 
>   * igt@i915_pm_lpsp@screens-disabled:
>     - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#1902])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@i915_pm_lpsp@screens-disabled.html
> 
>   * igt@i915_pm_rc6_residency@media-rc6-accuracy:
>     - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109289] / [fdo#111719])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp:
>     - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#110892])
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109506] / [i915#2411])
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>     - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#5286]) +2 similar issues
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>     - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +229 similar issues
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>     - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#5286]) +6 similar issues
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
>     - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111614]) +4 similar issues
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3777]) +4 similar issues
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>     - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777]) +2 similar issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>     - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>     - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3777]) +2 similar issues
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
>     - shard-glk:          [PASS][67] -> [DMESG-WARN][68] ([i915#118]) +1 similar issue
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>     - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110723]) +1 similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>     - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615]) +5 similar issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
> 
>   * igt@kms_big_joiner@invalid-modeset:
>     - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#2705])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@kms_big_joiner@invalid-modeset.html
>     - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#2705])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_big_joiner@invalid-modeset.html
> 
>   * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +5 similar issues
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>     - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +7 similar issues
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>     - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +10 similar issues
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>     - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#3886]) +6 similar issues
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#3689]) +7 similar issues
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html
> 
>   * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>     - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) +10 similar issues
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
>     - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3689]) +11 similar issues
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html
> 
>   * igt@kms_chamelium@dp-crc-fast:
>     - shard-snb:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +4 similar issues
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb7/igt@kms_chamelium@dp-crc-fast.html
> 
>   * igt@kms_chamelium@hdmi-edid-read:
>     - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +19 similar issues
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html
> 
>   * igt@kms_chamelium@hdmi-hpd:
>     - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +4 similar issues
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_chamelium@hdmi-hpd.html
> 
>   * igt@kms_color@pipe-b-deep-color:
>     - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109278] / [i915#3555])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_color@pipe-b-deep-color.html
> 
>   * igt@kms_color@pipe-d-gamma:
>     - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278] / [i915#1149])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_color@pipe-d-gamma.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
>     - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +17 similar issues
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
>     - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +5 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
> 
>   * igt@kms_color_chamelium@pipe-b-degamma:
>     - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +16 similar issues
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl1/igt@kms_color_chamelium@pipe-b-degamma.html
> 
>   * igt@kms_content_protection@atomic:
>     - shard-kbl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_content_protection@atomic.html
>     - shard-apl:          NOTRUN -> [TIMEOUT][89] ([i915#1319])
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@kms_content_protection@atomic.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1063]) +1 similar issue
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-type-1:
>     - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#3116] / [i915#3299])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@kms_content_protection@dp-mst-type-1.html
> 
>   * igt@kms_content_protection@mei_interface:
>     - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109300] / [fdo#111066])
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_content_protection@mei_interface.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-apl:          NOTRUN -> [FAIL][93] ([i915#2105])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
>     - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109278] / [fdo#109279]) +4 similar issues
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
>     - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#3319]) +2 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#3359]) +10 similar issues
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-512x170-random:
>     - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359]) +8 similar issues
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html
> 
>   * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>     - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +1 similar issue
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>     - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#4103]) +1 similar issue
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
> 
>   * igt@kms_display_modes@extended-mode-basic:
>     - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109274])
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_display_modes@extended-mode-basic.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
>     - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +3 similar issues
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
> 
>   * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
>     - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287]) +2 similar issues
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html
> 
>   * igt@kms_flip@2x-absolute-wf_vblank:
>     - shard-tglb:         NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3966])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_flip@2x-absolute-wf_vblank.html
> 
>   * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>     - shard-iclb:         NOTRUN -> [SKIP][105] ([fdo#109274]) +3 similar issues
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
> 
>   * igt@kms_flip@2x-plain-flip-ts-check:
>     - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +12 similar issues
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check.html
> 
>   * igt@kms_flip@flip-vs-suspend@b-dp1:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][107] ([i915#180]) +1 similar issue
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_flip@flip-vs-suspend@b-dp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>     - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#4911])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
> 
>   * igt@kms_force_connector_basic@force-load-detect:
>     - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109285])
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_force_connector_basic@force-load-detect.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>     - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109280]) +24 similar issues
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
>     - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109280] / [fdo#111825]) +49 similar issues
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#533]) +1 similar issue
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>     - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>     - shard-apl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +3 similar issues
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +2 similar issues
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
>     - shard-glk:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +2 similar issues
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
> 
>   * igt@kms_plane_lowres@pipe-b-tiling-yf:
>     - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_plane_lowres@pipe-b-tiling-yf.html
> 
>   * igt@kms_plane_lowres@pipe-c-tiling-4:
>     - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288]) +1 similar issue
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-4.html
>     - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#5288])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-4.html
> 
>   * igt@kms_plane_lowres@pipe-c-tiling-x:
>     - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536])
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-x.html
> 
>   * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
>     - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#5176]) +7 similar issues
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
>     - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#5235]) +2 similar issues
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale.html
> 
>   * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation:
>     - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#5176]) +5 similar issues
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html
> 
>   * igt@kms_prime@basic-crc@first-to-second:
>     - shard-iclb:         NOTRUN -> [SKIP][125] ([i915#1836])
>    [125]: https://intel-gfx-ci.01.org/tree/drm-
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/index.html

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-04-01 14:33   ` Melissa Wen
@ 2022-04-04 17:59     ` Rodrigo Siqueira Jordao
  2022-04-04 18:19       ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 11+ messages in thread
From: Rodrigo Siqueira Jordao @ 2022-04-04 17:59 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev



On 2022-04-01 10:33, Melissa Wen wrote:
> On 03/31, Patchwork wrote:
>> == Series Details ==
>>
>> Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
>> URL   : https://patchwork.freedesktop.org/series/102026/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_11435_full -> IGTPW_6851_full
>> ====================================================
>>
>> Summary
>> -------
>>
>>    **FAILURE**
>>
>>    Serious unknown changes coming with IGTPW_6851_full absolutely need to be
>>    verified manually.
>>    
>>    If you think the reported changes have nothing to do with the changes
>>    introduced in IGTPW_6851_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_6851/index.html
>>
>> Participating hosts (12 -> 7)
>> ------------------------------
>>
>>    Missing    (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl
>>
>> Possible new issues
>> -------------------
>>
>>    Here are the unknown changes that may have been introduced in IGTPW_6851_full:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>>    * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
>>      - shard-glk:          [PASS][1] -> [FAIL][2]
>>     [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>>     [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
> 
> Hi,
> 
> I don't see how a change limited to kms_plane_alpha_blend code can cause
> a regression on kms_big_fb. Is that a flake?
> 
> Best Regards,
> 
> Melissa

Hi Lakshmi,

I think this is a false positive. Could you trigger the CI again?

Btw, this is the patchwork link:

https://patchwork.freedesktop.org/series/102026/

Thanks
Siqueira

>>
>>    
>> Known issues
>> ------------
>>
>>    Here are the changes found in IGTPW_6851_full that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>>    * igt@feature_discovery@display-2x:
>>      - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#1839])
>>     [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@feature_discovery@display-2x.html
>>
>>    * igt@feature_discovery@psr2:
>>      - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658])
>>     [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@feature_discovery@psr2.html
>>
>>    * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>>      - shard-glk:          NOTRUN -> [SKIP][5] ([fdo#109271]) +120 similar issues
>>     [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>>
>>    * igt@gem_ccs@suspend-resume:
>>      - shard-iclb:         NOTRUN -> [SKIP][6] ([i915#5327]) +1 similar issue
>>     [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_ccs@suspend-resume.html
>>      - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#5325]) +1 similar issue
>>     [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_ccs@suspend-resume.html
>>
>>    * igt@gem_create@create-massive:
>>      - shard-apl:          NOTRUN -> [DMESG-WARN][8] ([i915#4991])
>>     [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@gem_create@create-massive.html
>>
>>    * igt@gem_ctx_persistence@idempotent:
>>      - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +3 similar issues
>>     [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_ctx_persistence@idempotent.html
>>
>>    * igt@gem_ctx_sseu@mmap-args:
>>      - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
>>     [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html
>>
>>    * igt@gem_eio@kms:
>>      - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#232])
>>     [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_eio@kms.html
>>
>>    * igt@gem_exec_balancer@parallel:
>>      - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076]) +1 similar issue
>>     [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_balancer@parallel.html
>>      - shard-iclb:         NOTRUN -> [DMESG-WARN][13] ([i915#5076])
>>     [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gem_exec_balancer@parallel.html
>>
>>    * igt@gem_exec_balancer@parallel-balancer:
>>      - shard-iclb:         [PASS][14] -> [SKIP][15] ([i915#4525])
>>     [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
>>     [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html
>>
>>    * igt@gem_exec_balancer@parallel-keep-in-fence:
>>      - shard-tglb:         NOTRUN -> [DMESG-WARN][16] ([i915#5076]) +1 similar issue
>>     [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
>>      - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4525])
>>     [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html
>>
>>    * igt@gem_exec_fair@basic-none-solo@rcs0:
>>      - shard-kbl:          [PASS][18] -> [FAIL][19] ([i915#2842])
>>     [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
>>     [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-none-vip@rcs0:
>>      - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
>>     [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
>>      - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
>>     [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace-solo@rcs0:
>>      - shard-apl:          [PASS][22] -> [FAIL][23] ([i915#2842])
>>     [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>>     [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace@vcs0:
>>      - shard-iclb:         [PASS][24] -> [FAIL][25] ([i915#2842])
>>     [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
>>     [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace@vcs1:
>>      - shard-iclb:         NOTRUN -> [FAIL][26] ([i915#2842]) +1 similar issue
>>     [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
>>
>>    * igt@gem_exec_fair@basic-pace@vecs0:
>>      - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues
>>     [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
>>     [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
>>
>>    * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>>      - shard-snb:          NOTRUN -> [SKIP][29] ([fdo#109271]) +184 similar issues
>>     [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>>      - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109313])
>>     [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>>      - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109313])
>>     [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>>
>>    * igt@gem_exec_params@no-vebox:
>>      - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109283])
>>     [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_params@no-vebox.html
>>      - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#109283] / [i915#4877])
>>     [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@gem_exec_params@no-vebox.html
>>
>>    * igt@gem_exec_params@secure-non-root:
>>      - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#112283])
>>     [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_exec_params@secure-non-root.html
>>      - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#112283])
>>     [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_exec_params@secure-non-root.html
>>
>>    * igt@gem_lmem_swapping@parallel-random-verify:
>>      - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613])
>>     [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html
>>
>>    * igt@gem_pxp@create-protected-buffer:
>>      - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270]) +1 similar issue
>>     [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb5/igt@gem_pxp@create-protected-buffer.html
>>
>>    * igt@gem_pxp@regular-baseline-src-copy-readible:
>>      - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +4 similar issues
>>     [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html
>>
>>    * igt@gem_softpin@allocator-evict-all-engines:
>>      - shard-glk:          [PASS][39] -> [FAIL][40] ([i915#4171])
>>     [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk1/igt@gem_softpin@allocator-evict-all-engines.html
>>     [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk9/igt@gem_softpin@allocator-evict-all-engines.html
>>
>>    * igt@gem_softpin@evict-snoop:
>>      - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109312])
>>     [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_softpin@evict-snoop.html
>>
>>    * igt@gem_userptr_blits@dmabuf-unsync:
>>      - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3297]) +3 similar issues
>>     [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_userptr_blits@dmabuf-unsync.html
>>
>>    * igt@gem_userptr_blits@readonly-pwrite-unsync:
>>      - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#3297])
>>     [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
>>
>>    * igt@gen7_exec_parse@chained-batch:
>>      - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +3 similar issues
>>     [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gen7_exec_parse@chained-batch.html
>>
>>    * igt@gen7_exec_parse@cmd-crossing-page:
>>      - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +6 similar issues
>>     [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gen7_exec_parse@cmd-crossing-page.html
>>
>>    * igt@gen9_exec_parse@bb-large:
>>      - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2527] / [i915#2856]) +3 similar issues
>>     [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gen9_exec_parse@bb-large.html
>>
>>    * igt@gen9_exec_parse@valid-registers:
>>      - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856]) +1 similar issue
>>     [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gen9_exec_parse@valid-registers.html
>>
>>    * igt@i915_pm_dc@dc6-psr:
>>      - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#454])
>>     [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
>>     [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@i915_pm_dc@dc6-psr.html
>>
>>    * igt@i915_pm_dc@dc9-dpms:
>>      - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#4281])
>>     [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@i915_pm_dc@dc9-dpms.html
>>
>>    * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>>      - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#1937])
>>     [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>>      - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#1937])
>>     [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>>
>>    * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>>      - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1937])
>>     [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>>
>>    * igt@i915_pm_lpsp@screens-disabled:
>>      - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#1902])
>>     [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@i915_pm_lpsp@screens-disabled.html
>>
>>    * igt@i915_pm_rc6_residency@media-rc6-accuracy:
>>      - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109289] / [fdo#111719])
>>     [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
>>
>>    * igt@i915_pm_rpm@modeset-non-lpsp:
>>      - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#110892])
>>     [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp.html
>>
>>    * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>>      - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
>>     [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>>
>>    * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>>      - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109506] / [i915#2411])
>>     [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
>>
>>    * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>>      - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#5286]) +2 similar issues
>>     [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
>>
>>    * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>>      - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +229 similar issues
>>     [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>>      - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#5286]) +6 similar issues
>>     [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
>>      - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111614]) +4 similar issues
>>     [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>>      - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3777]) +4 similar issues
>>     [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>>      - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777]) +2 similar issues
>>     [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>>      - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614])
>>     [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>>      - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3777]) +2 similar issues
>>     [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
>>      - shard-glk:          [PASS][67] -> [DMESG-WARN][68] ([i915#118]) +1 similar issue
>>     [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
>>     [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
>>
>>    * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>>      - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110723]) +1 similar issue
>>     [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
>>
>>    * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>>      - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615]) +5 similar issues
>>     [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>>
>>    * igt@kms_big_joiner@invalid-modeset:
>>      - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#2705])
>>     [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@kms_big_joiner@invalid-modeset.html
>>      - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#2705])
>>     [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_big_joiner@invalid-modeset.html
>>
>>    * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +5 similar issues
>>     [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>>      - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +7 similar issues
>>     [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>      - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +10 similar issues
>>     [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>>      - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#3886]) +6 similar issues
>>     [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
>>
>>    * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#3689]) +7 similar issues
>>     [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html
>>
>>    * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>>      - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) +10 similar issues
>>     [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3689]) +11 similar issues
>>     [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html
>>
>>    * igt@kms_chamelium@dp-crc-fast:
>>      - shard-snb:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +4 similar issues
>>     [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb7/igt@kms_chamelium@dp-crc-fast.html
>>
>>    * igt@kms_chamelium@hdmi-edid-read:
>>      - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +19 similar issues
>>     [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html
>>
>>    * igt@kms_chamelium@hdmi-hpd:
>>      - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +4 similar issues
>>     [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_chamelium@hdmi-hpd.html
>>
>>    * igt@kms_color@pipe-b-deep-color:
>>      - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109278] / [i915#3555])
>>     [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_color@pipe-b-deep-color.html
>>
>>    * igt@kms_color@pipe-d-gamma:
>>      - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278] / [i915#1149])
>>     [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_color@pipe-d-gamma.html
>>
>>    * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
>>      - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +17 similar issues
>>     [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
>>      - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +5 similar issues
>>     [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
>>
>>    * igt@kms_color_chamelium@pipe-b-degamma:
>>      - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +16 similar issues
>>     [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl1/igt@kms_color_chamelium@pipe-b-degamma.html
>>
>>    * igt@kms_content_protection@atomic:
>>      - shard-kbl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
>>     [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_content_protection@atomic.html
>>      - shard-apl:          NOTRUN -> [TIMEOUT][89] ([i915#1319])
>>     [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@kms_content_protection@atomic.html
>>
>>    * igt@kms_content_protection@atomic-dpms:
>>      - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1063]) +1 similar issue
>>     [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_content_protection@atomic-dpms.html
>>
>>    * igt@kms_content_protection@dp-mst-type-1:
>>      - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#3116] / [i915#3299])
>>     [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@kms_content_protection@dp-mst-type-1.html
>>
>>    * igt@kms_content_protection@mei_interface:
>>      - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109300] / [fdo#111066])
>>     [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_content_protection@mei_interface.html
>>
>>    * igt@kms_content_protection@uevent:
>>      - shard-apl:          NOTRUN -> [FAIL][93] ([i915#2105])
>>     [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_content_protection@uevent.html
>>
>>    * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
>>      - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109278] / [fdo#109279]) +4 similar issues
>>     [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html
>>
>>    * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
>>      - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
>>     [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html
>>
>>    * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
>>      - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#3319]) +2 similar issues
>>     [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html
>>
>>    * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
>>      - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#3359]) +10 similar issues
>>     [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html
>>
>>    * igt@kms_cursor_crc@pipe-d-cursor-512x170-random:
>>      - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359]) +8 similar issues
>>     [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html
>>
>>    * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>>      - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +1 similar issue
>>     [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
>>
>>    * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>>      - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#4103]) +1 similar issue
>>     [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
>>
>>    * igt@kms_display_modes@extended-mode-basic:
>>      - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109274])
>>     [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_display_modes@extended-mode-basic.html
>>
>>    * igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
>>      - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +3 similar issues
>>     [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
>>
>>    * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
>>      - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287]) +2 similar issues
>>     [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html
>>
>>    * igt@kms_flip@2x-absolute-wf_vblank:
>>      - shard-tglb:         NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3966])
>>     [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_flip@2x-absolute-wf_vblank.html
>>
>>    * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>>      - shard-iclb:         NOTRUN -> [SKIP][105] ([fdo#109274]) +3 similar issues
>>     [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
>>
>>    * igt@kms_flip@2x-plain-flip-ts-check:
>>      - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +12 similar issues
>>     [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check.html
>>
>>    * igt@kms_flip@flip-vs-suspend@b-dp1:
>>      - shard-apl:          NOTRUN -> [DMESG-WARN][107] ([i915#180]) +1 similar issue
>>     [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_flip@flip-vs-suspend@b-dp1.html
>>
>>    * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>>      - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#4911])
>>     [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
>>     [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
>>
>>    * igt@kms_force_connector_basic@force-load-detect:
>>      - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109285])
>>     [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_force_connector_basic@force-load-detect.html
>>
>>    * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>>      - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109280]) +24 similar issues
>>     [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
>>
>>    * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
>>      - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109280] / [fdo#111825]) +49 similar issues
>>     [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
>>
>>    * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>>      - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#533]) +1 similar issue
>>     [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>>      - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
>>     [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>>      - shard-apl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +3 similar issues
>>     [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>>      - shard-kbl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +2 similar issues
>>     [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
>>      - shard-glk:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +2 similar issues
>>     [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
>>
>>    * igt@kms_plane_lowres@pipe-b-tiling-yf:
>>      - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
>>     [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_plane_lowres@pipe-b-tiling-yf.html
>>
>>    * igt@kms_plane_lowres@pipe-c-tiling-4:
>>      - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288]) +1 similar issue
>>     [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-4.html
>>      - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#5288])
>>     [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-4.html
>>
>>    * igt@kms_plane_lowres@pipe-c-tiling-x:
>>      - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536])
>>     [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-x.html
>>
>>    * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
>>      - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#5176]) +7 similar issues
>>     [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html
>>
>>    * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
>>      - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#5235]) +2 similar issues
>>     [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale.html
>>
>>    * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation:
>>      - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#5176]) +5 similar issues
>>     [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html
>>
>>    * igt@kms_prime@basic-crc@first-to-second:
>>      - shard-iclb:         NOTRUN -> [SKIP][125] ([i915#1836])
>>     [125]: https://intel-gfx-ci.01.org/tree/drm-
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/index.html

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
                   ` (2 preceding siblings ...)
  2022-03-31 22:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-04 18:12 ` Patchwork
  2022-04-07 14:48 ` [igt-dev] [PATCH i-g-t] " Rodrigo Siqueira Jordao
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-04-04 18:12 UTC (permalink / raw)
  To: Melissa Wen; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
URL   : https://patchwork.freedesktop.org/series/102026/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11435_full -> IGTPW_6851_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (1): shard-dg1 
  Missing    (4): pig-skl-6260u shard-skl pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-2x:
    - shard-tglb:         NOTRUN -> [SKIP][1] ([i915#1839])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@feature_discovery@display-2x.html

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][2] ([i915#658])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@feature_discovery@psr2.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-glk:          NOTRUN -> [SKIP][3] ([fdo#109271]) +120 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ccs@suspend-resume:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#5327]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_ccs@suspend-resume.html
    - shard-tglb:         NOTRUN -> [SKIP][5] ([i915#5325]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_ccs@suspend-resume.html

  * igt@gem_create@create-massive:
    - shard-apl:          NOTRUN -> [DMESG-WARN][6] ([i915#4991])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@idempotent:
    - shard-snb:          NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +3 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_ctx_persistence@idempotent.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#280])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][9] ([i915#232])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][10] ([i915#5076]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_balancer@parallel.html
    - shard-iclb:         NOTRUN -> [DMESG-WARN][11] ([i915#5076])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([i915#4525])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][14] ([i915#5076]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
    - shard-iclb:         NOTRUN -> [SKIP][15] ([i915#4525])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][18] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][19] ([i915#2842])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][20] -> [FAIL][21] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#2842])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][24] ([i915#2842]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          [PASS][25] -> [FAIL][26] ([i915#2842]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-snb:          NOTRUN -> [SKIP][27] ([fdo#109271]) +184 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([fdo#109313])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109313])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109283])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109283] / [i915#4877])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#112283])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_exec_params@secure-non-root.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#112283])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_exec_params@secure-non-root.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#4613])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#4270]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb5/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#4270]) +4 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_softpin@allocator-evict-all-engines:
    - shard-glk:          [PASS][37] -> [FAIL][38] ([i915#4171])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk1/igt@gem_softpin@allocator-evict-all-engines.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk9/igt@gem_softpin@allocator-evict-all-engines.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#109312])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([i915#3297]) +3 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_userptr_blits@dmabuf-unsync.html

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

  * igt@gen7_exec_parse@chained-batch:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109289]) +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@gen7_exec_parse@chained-batch.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109289]) +6 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#2527] / [i915#2856]) +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#2856]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][46] -> [FAIL][47] ([i915#454])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#4281])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#1937])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
    - shard-apl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#1937])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#1937])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#1902])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#109289] / [fdo#111719])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#110892])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#109506] / [i915#2411])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([i915#5286]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-kbl:          NOTRUN -> [SKIP][58] ([fdo#109271]) +229 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#5286]) +6 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#111614]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-apl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#3777]) +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
    - shard-glk:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3777]) +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#110725] / [fdo#111614])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-glk:          [PASS][65] -> [DMESG-WARN][66] ([i915#118]) +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-glk:          [PASS][67] -> [FAIL][68] ([i915#5138])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110723]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615]) +5 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#2705])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@kms_big_joiner@invalid-modeset.html
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#2705])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +5 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +7 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +10 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#3886]) +6 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#3689]) +7 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) +10 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3689]) +11 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_chamelium@dp-crc-fast:
    - shard-snb:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb7/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_chamelium@hdmi-edid-read:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +19 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@kms_chamelium@hdmi-hpd.html

  * igt@kms_color@pipe-b-deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109278] / [i915#3555])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_color@pipe-b-deep-color.html

  * igt@kms_color@pipe-d-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278] / [i915#1149])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_color@pipe-d-gamma.html

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-b-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl1/igt@kms_color_chamelium@pipe-b-degamma.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_content_protection@atomic.html
    - shard-apl:          NOTRUN -> [TIMEOUT][89] ([i915#1319])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1063]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#3116] / [i915#3299])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109300] / [fdo#111066])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_content_protection@mei_interface.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][93] ([i915#2105])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109278] / [fdo#109279]) +4 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#3319]) +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#3359]) +10 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359]) +8 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-512x170-random.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#4103]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109274])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287]) +2 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3966])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_flip@2x-absolute-wf_vblank.html

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

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +12 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@flip-vs-suspend@b-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][107] ([i915#180]) +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_flip@flip-vs-suspend@b-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#4911])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109285])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109280]) +24 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109280] / [fdo#111825]) +49 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#533]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
    - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-b-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@kms_plane_lowres@pipe-b-tiling-yf.html

  * igt@kms_plane_lowres@pipe-c-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-4.html
    - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#5288])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-4.html

  * igt@kms_plane_lowres@pipe-c-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-x.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#5176]) +7 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#5235]) +2 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale.html

  * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation:
    - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#5176]) +5 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][125] ([i915#1836])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@kms_prime@basic-crc@first-to-second.html
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#1836])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_prime@basic-crc@first-to-second.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-apl:          NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#658]) +1 similar issue
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-04-04 17:59     ` Rodrigo Siqueira Jordao
@ 2022-04-04 18:19       ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 11+ messages in thread
From: Vudum, Lakshminarayana @ 2022-04-04 18:19 UTC (permalink / raw)
  To: Rodrigo Siqueira Jordao; +Cc: igt-dev

Issue is related to https://gitlab.freedesktop.org/drm/intel/-/issues/5138
Re-reported.

Lakshmi.
-----Original Message-----
From: Rodrigo Siqueira Jordao <rjordrigo@amd.com> 
Sent: Monday, April 4, 2022 11:00 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org; Melissa Wen <mwen@igalia.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation



On 2022-04-01 10:33, Melissa Wen wrote:
> On 03/31, Patchwork wrote:
>> == Series Details ==
>>
>> Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
>> URL   : https://patchwork.freedesktop.org/series/102026/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_11435_full -> IGTPW_6851_full 
>> ====================================================
>>
>> Summary
>> -------
>>
>>    **FAILURE**
>>
>>    Serious unknown changes coming with IGTPW_6851_full absolutely need to be
>>    verified manually.
>>    
>>    If you think the reported changes have nothing to do with the changes
>>    introduced in IGTPW_6851_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_6851/index.html
>>
>> Participating hosts (12 -> 7)
>> ------------------------------
>>
>>    Missing    (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl
>>
>> Possible new issues
>> -------------------
>>
>>    Here are the unknown changes that may have been introduced in IGTPW_6851_full:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>>    * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
>>      - shard-glk:          [PASS][1] -> [FAIL][2]
>>     [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
>>     [2]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@km
>> s_big_fb@yf-tiled-16bpp-rotate-180.html
> 
> Hi,
> 
> I don't see how a change limited to kms_plane_alpha_blend code can 
> cause a regression on kms_big_fb. Is that a flake?
> 
> Best Regards,
> 
> Melissa

Hi Lakshmi,

I think this is a false positive. Could you trigger the CI again?

Btw, this is the patchwork link:

https://patchwork.freedesktop.org/series/102026/

Thanks
Siqueira

>>
>>    
>> Known issues
>> ------------
>>
>>    Here are the changes found in IGTPW_6851_full that come from known issues:
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>>    * igt@feature_discovery@display-2x:
>>      - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#1839])
>>     [3]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@f
>> eature_discovery@display-2x.html
>>
>>    * igt@feature_discovery@psr2:
>>      - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658])
>>     [4]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@f
>> eature_discovery@psr2.html
>>
>>    * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>>      - shard-glk:          NOTRUN -> [SKIP][5] ([fdo#109271]) +120 similar issues
>>     [5]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@ge
>> m_ccs@ctrl-surf-copy-new-ctx.html
>>
>>    * igt@gem_ccs@suspend-resume:
>>      - shard-iclb:         NOTRUN -> [SKIP][6] ([i915#5327]) +1 similar issue
>>     [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@gem_ccs@suspend-resume.html
>>      - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#5325]) +1 similar issue
>>     [7]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@g
>> em_ccs@suspend-resume.html
>>
>>    * igt@gem_create@create-massive:
>>      - shard-apl:          NOTRUN -> [DMESG-WARN][8] ([i915#4991])
>>     [8]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@ge
>> m_create@create-massive.html
>>
>>    * igt@gem_ctx_persistence@idempotent:
>>      - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +3 similar issues
>>     [9]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@ge
>> m_ctx_persistence@idempotent.html
>>
>>    * igt@gem_ctx_sseu@mmap-args:
>>      - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
>>     [10]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@g
>> em_ctx_sseu@mmap-args.html
>>
>>    * igt@gem_eio@kms:
>>      - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#232])
>>     [11]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@g
>> em_eio@kms.html
>>
>>    * igt@gem_exec_balancer@parallel:
>>      - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076]) +1 similar issue
>>     [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@gem_exec_balancer@parallel.html
>>      - shard-iclb:         NOTRUN -> [DMESG-WARN][13] ([i915#5076])
>>     [13]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@g
>> em_exec_balancer@parallel.html
>>
>>    * igt@gem_exec_balancer@parallel-balancer:
>>      - shard-iclb:         [PASS][14] -> [SKIP][15] ([i915#4525])
>>     [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
>>     [15]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@g
>> em_exec_balancer@parallel-balancer.html
>>
>>    * igt@gem_exec_balancer@parallel-keep-in-fence:
>>      - shard-tglb:         NOTRUN -> [DMESG-WARN][16] ([i915#5076]) +1 similar issue
>>     [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
>>      - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#4525])
>>     [17]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@g
>> em_exec_balancer@parallel-keep-in-fence.html
>>
>>    * igt@gem_exec_fair@basic-none-solo@rcs0:
>>      - shard-kbl:          [PASS][18] -> [FAIL][19] ([i915#2842])
>>     [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
>>     [19]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@ge
>> m_exec_fair@basic-none-solo@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-none-vip@rcs0:
>>      - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
>>     [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
>>      - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
>>     [21]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@ge
>> m_exec_fair@basic-none-vip@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace-solo@rcs0:
>>      - shard-apl:          [PASS][22] -> [FAIL][23] ([i915#2842])
>>     [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>>     [23]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@ge
>> m_exec_fair@basic-pace-solo@rcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace@vcs0:
>>      - shard-iclb:         [PASS][24] -> [FAIL][25] ([i915#2842])
>>     [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
>>     [25]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@g
>> em_exec_fair@basic-pace@vcs0.html
>>
>>    * igt@gem_exec_fair@basic-pace@vcs1:
>>      - shard-iclb:         NOTRUN -> [FAIL][26] ([i915#2842]) +1 similar issue
>>     [26]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@g
>> em_exec_fair@basic-pace@vcs1.html
>>
>>    * igt@gem_exec_fair@basic-pace@vecs0:
>>      - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842]) +3 similar issues
>>     [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
>>     [28]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@ge
>> m_exec_fair@basic-pace@vecs0.html
>>
>>    * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>>      - shard-snb:          NOTRUN -> [SKIP][29] ([fdo#109271]) +184 similar issues
>>     [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>>      - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109313])
>>     [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>>      - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109313])
>>     [31]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@g
>> em_exec_flush@basic-batch-kernel-default-cmd.html
>>
>>    * igt@gem_exec_params@no-vebox:
>>      - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109283])
>>     [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@gem_exec_params@no-vebox.html
>>      - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#109283] / [i915#4877])
>>     [33]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@g
>> em_exec_params@no-vebox.html
>>
>>    * igt@gem_exec_params@secure-non-root:
>>      - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#112283])
>>     [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@gem_exec_params@secure-non-root.html
>>      - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#112283])
>>     [35]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@g
>> em_exec_params@secure-non-root.html
>>
>>    * igt@gem_lmem_swapping@parallel-random-verify:
>>      - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613])
>>     [36]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl6/igt@ge
>> m_lmem_swapping@parallel-random-verify.html
>>
>>    * igt@gem_pxp@create-protected-buffer:
>>      - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270]) +1 similar issue
>>     [37]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb5/igt@g
>> em_pxp@create-protected-buffer.html
>>
>>    * igt@gem_pxp@regular-baseline-src-copy-readible:
>>      - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +4 similar issues
>>     [38]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@g
>> em_pxp@regular-baseline-src-copy-readible.html
>>
>>    * igt@gem_softpin@allocator-evict-all-engines:
>>      - shard-glk:          [PASS][39] -> [FAIL][40] ([i915#4171])
>>     [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk1/igt@gem_softpin@allocator-evict-all-engines.html
>>     [40]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk9/igt@ge
>> m_softpin@allocator-evict-all-engines.html
>>
>>    * igt@gem_softpin@evict-snoop:
>>      - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109312])
>>     [41]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@g
>> em_softpin@evict-snoop.html
>>
>>    * igt@gem_userptr_blits@dmabuf-unsync:
>>      - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3297]) +3 similar issues
>>     [42]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@g
>> em_userptr_blits@dmabuf-unsync.html
>>
>>    * igt@gem_userptr_blits@readonly-pwrite-unsync:
>>      - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#3297])
>>     [43]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@g
>> em_userptr_blits@readonly-pwrite-unsync.html
>>
>>    * igt@gen7_exec_parse@chained-batch:
>>      - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109289]) +3 similar issues
>>     [44]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@g
>> en7_exec_parse@chained-batch.html
>>
>>    * igt@gen7_exec_parse@cmd-crossing-page:
>>      - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +6 similar issues
>>     [45]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@g
>> en7_exec_parse@cmd-crossing-page.html
>>
>>    * igt@gen9_exec_parse@bb-large:
>>      - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2527] / [i915#2856]) +3 similar issues
>>     [46]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@g
>> en9_exec_parse@bb-large.html
>>
>>    * igt@gen9_exec_parse@valid-registers:
>>      - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856]) +1 similar issue
>>     [47]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@g
>> en9_exec_parse@valid-registers.html
>>
>>    * igt@i915_pm_dc@dc6-psr:
>>      - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#454])
>>     [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-iclb2/igt@i915_pm_dc@dc6-psr.html
>>     [49]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@i
>> 915_pm_dc@dc6-psr.html
>>
>>    * igt@i915_pm_dc@dc9-dpms:
>>      - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#4281])
>>     [50]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@i
>> 915_pm_dc@dc9-dpms.html
>>
>>    * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>>      - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#1937])
>>     [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>>      - shard-apl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#1937])
>>     [52]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@i9
>> 15_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>>
>>    * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>>      - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#1937])
>>     [53]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@i9
>> 15_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>>
>>    * igt@i915_pm_lpsp@screens-disabled:
>>      - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#1902])
>>     [54]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@i
>> 915_pm_lpsp@screens-disabled.html
>>
>>    * igt@i915_pm_rc6_residency@media-rc6-accuracy:
>>      - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109289] / [fdo#111719])
>>     [55]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i
>> 915_pm_rc6_residency@media-rc6-accuracy.html
>>
>>    * igt@i915_pm_rpm@modeset-non-lpsp:
>>      - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#110892])
>>     [56]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb2/igt@i
>> 915_pm_rpm@modeset-non-lpsp.html
>>
>>    * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>>      - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
>>     [57]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@i
>> 915_pm_rpm@modeset-non-lpsp-stress.html
>>
>>    * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>>      - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109506] / [i915#2411])
>>     [58]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@i
>> 915_pm_rpm@modeset-pc8-residency-stress.html
>>
>>    * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
>>      - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#5286]) +2 similar issues
>>     [59]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@k
>> ms_big_fb@4-tiled-64bpp-rotate-0.html
>>
>>    * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>>      - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +229 similar issues
>>     [60]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl7/igt@km
>> s_big_fb@4-tiled-8bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>>      - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#5286]) +6 similar issues
>>     [61]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@k
>> ms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
>>      - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111614]) +4 similar issues
>>     [62]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_big_fb@x-tiled-32bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>>      - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3777]) +4 similar issues
>>     [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>>      - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3777]) +2 similar issues
>>     [64]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk3/igt@km
>> s_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>>      - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614])
>>     [65]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@k
>> ms_big_fb@y-tiled-8bpp-rotate-90.html
>>
>>    * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>>      - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3777]) +2 similar issues
>>     [66]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl4/igt@km
>> s_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>>
>>    * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
>>      - shard-glk:          [PASS][67] -> [DMESG-WARN][68] ([i915#118]) +1 similar issue
>>     [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
>>     [68]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk4/igt@km
>> s_big_fb@yf-tiled-16bpp-rotate-0.html
>>
>>    * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>>      - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110723]) +1 similar issue
>>     [69]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@k
>> ms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
>>
>>    * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>>      - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#111615]) +5 similar issues
>>     [70]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
>>
>>    * igt@kms_big_joiner@invalid-modeset:
>>      - shard-iclb:         NOTRUN -> [SKIP][71] ([i915#2705])
>>     [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb6/igt@kms_big_joiner@invalid-modeset.html
>>      - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#2705])
>>     [72]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_big_joiner@invalid-modeset.html
>>
>>    * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +5 similar issues
>>     [73]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@k
>> ms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>>      - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +7 similar issues
>>     [74]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@km
>> s_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>      - shard-kbl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#3886]) +10 similar issues
>>     [75]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@km
>> s_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>>      - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109278] / [i915#3886]) +6 similar issues
>>     [76]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@k
>> ms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
>>
>>    * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#3689]) +7 similar issues
>>     [77]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@k
>> ms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html
>>
>>    * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>>      - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) +10 similar issues
>>     [78]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl8/igt@km
>> s_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
>>
>>    * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
>>      - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3689]) +11 similar issues
>>     [79]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@k
>> ms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html
>>
>>    * igt@kms_chamelium@dp-crc-fast:
>>      - shard-snb:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +4 similar issues
>>     [80]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-snb7/igt@km
>> s_chamelium@dp-crc-fast.html
>>
>>    * igt@kms_chamelium@hdmi-edid-read:
>>      - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +19 similar issues
>>     [81]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_chamelium@hdmi-edid-read.html
>>
>>    * igt@kms_chamelium@hdmi-hpd:
>>      - shard-glk:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +4 similar issues
>>     [82]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk1/igt@km
>> s_chamelium@hdmi-hpd.html
>>
>>    * igt@kms_color@pipe-b-deep-color:
>>      - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109278] / [i915#3555])
>>     [83]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@k
>> ms_color@pipe-b-deep-color.html
>>
>>    * igt@kms_color@pipe-d-gamma:
>>      - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278] / [i915#1149])
>>     [84]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@k
>> ms_color@pipe-d-gamma.html
>>
>>    * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
>>      - shard-apl:          NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +17 similar issues
>>     [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html
>>      - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +5 similar issues
>>     [86]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@k
>> ms_color_chamelium@pipe-a-ctm-limited-range.html
>>
>>    * igt@kms_color_chamelium@pipe-b-degamma:
>>      - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +16 similar issues
>>     [87]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl1/igt@km
>> s_color_chamelium@pipe-b-degamma.html
>>
>>    * igt@kms_content_protection@atomic:
>>      - shard-kbl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
>>     [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@kms_content_protection@atomic.html
>>      - shard-apl:          NOTRUN -> [TIMEOUT][89] ([i915#1319])
>>     [89]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl2/igt@km
>> s_content_protection@atomic.html
>>
>>    * igt@kms_content_protection@atomic-dpms:
>>      - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#1063]) +1 similar issue
>>     [90]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_content_protection@atomic-dpms.html
>>
>>    * igt@kms_content_protection@dp-mst-type-1:
>>      - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#3116] / [i915#3299])
>>     [91]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb1/igt@k
>> ms_content_protection@dp-mst-type-1.html
>>
>>    * igt@kms_content_protection@mei_interface:
>>      - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109300] / [fdo#111066])
>>     [92]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@k
>> ms_content_protection@mei_interface.html
>>
>>    * igt@kms_content_protection@uevent:
>>      - shard-apl:          NOTRUN -> [FAIL][93] ([i915#2105])
>>     [93]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@km
>> s_content_protection@uevent.html
>>
>>    * igt@kms_cursor_crc@pipe-a-cursor-512x512-rapid-movement:
>>      - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109278] / [fdo#109279]) +4 similar issues
>>     [94]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@k
>> ms_cursor_crc@pipe-a-cursor-512x512-rapid-movement.html
>>
>>    * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
>>      - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109278]) +22 similar issues
>>     [95]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@k
>> ms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html
>>
>>    * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
>>      - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#3319]) +2 similar issues
>>     [96]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_cursor_crc@pipe-b-cursor-32x32-offscreen.html
>>
>>    * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
>>      - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#3359]) +10 similar issues
>>     [97]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@k
>> ms_cursor_crc@pipe-c-cursor-max-size-offscreen.html
>>
>>    * igt@kms_cursor_crc@pipe-d-cursor-512x170-random:
>>      - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359]) +8 similar issues
>>     [98]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_cursor_crc@pipe-d-cursor-512x170-random.html
>>
>>    * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>>      - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#109278]) +1 similar issue
>>     [99]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@k
>> ms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
>>
>>    * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>>      - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#4103]) +1 similar issue
>>     [100]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.htm
>> l
>>
>>    * igt@kms_display_modes@extended-mode-basic:
>>      - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109274])
>>     [101]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_display_modes@extended-mode-basic.html
>>
>>    * igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
>>      - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +3 similar issues
>>     [102]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
>>
>>    * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-4tiled:
>>      - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287]) +2 similar issues
>>     [103]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@k
>> ms_draw_crc@draw-method-xrgb8888-pwrite-4tiled.html
>>
>>    * igt@kms_flip@2x-absolute-wf_vblank:
>>      - shard-tglb:         NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3966])
>>     [104]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@k
>> ms_flip@2x-absolute-wf_vblank.html
>>
>>    * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>>      - shard-iclb:         NOTRUN -> [SKIP][105] ([fdo#109274]) +3 similar issues
>>     [105]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@k
>> ms_flip@2x-flip-vs-rmfb-interruptible.html
>>
>>    * igt@kms_flip@2x-plain-flip-ts-check:
>>      - shard-tglb:         NOTRUN -> [SKIP][106] ([fdo#109274] / [fdo#111825]) +12 similar issues
>>     [106]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_flip@2x-plain-flip-ts-check.html
>>
>>    * igt@kms_flip@flip-vs-suspend@b-dp1:
>>      - shard-apl:          NOTRUN -> [DMESG-WARN][107] ([i915#180]) +1 similar issue
>>     [107]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl4/igt@km
>> s_flip@flip-vs-suspend@b-dp1.html
>>
>>    * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>>      - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#4911])
>>     [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11435/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
>>     [109]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk8/igt@km
>> s_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
>>
>>    * igt@kms_force_connector_basic@force-load-detect:
>>      - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109285])
>>     [110]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb5/igt@k
>> ms_force_connector_basic@force-load-detect.html
>>
>>    * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>>      - shard-iclb:         NOTRUN -> [SKIP][111] ([fdo#109280]) +24 similar issues
>>     [111]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb4/igt@k
>> ms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
>>
>>    * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
>>      - shard-tglb:         NOTRUN -> [SKIP][112] ([fdo#109280] / [fdo#111825]) +49 similar issues
>>     [112]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@k
>> ms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
>>
>>    * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>>      - shard-apl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#533]) +1 similar issue
>>     [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl3/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>>      - shard-kbl:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#533])
>>     [114]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@km
>> s_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>>      - shard-apl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +3 similar issues
>>     [115]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-apl1/igt@km
>> s_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>>      - shard-kbl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265]) +2 similar issues
>>     [116]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-kbl6/igt@km
>> s_plane_alpha_blend@pipe-c-alpha-basic.html
>>
>>    * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
>>      - shard-glk:          NOTRUN -> [FAIL][117] ([fdo#108145] / [i915#265]) +2 similar issues
>>     [117]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-glk5/igt@km
>> s_plane_alpha_blend@pipe-c-constant-alpha-max.html
>>
>>    * igt@kms_plane_lowres@pipe-b-tiling-yf:
>>      - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
>>     [118]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb7/igt@k
>> ms_plane_lowres@pipe-b-tiling-yf.html
>>
>>    * igt@kms_plane_lowres@pipe-c-tiling-4:
>>      - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5288]) +1 similar issue
>>     [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb3/igt@kms_plane_lowres@pipe-c-tiling-4.html
>>      - shard-iclb:         NOTRUN -> [SKIP][120] ([i915#5288])
>>     [120]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb8/igt@k
>> ms_plane_lowres@pipe-c-tiling-4.html
>>
>>    * igt@kms_plane_lowres@pipe-c-tiling-x:
>>      - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#3536])
>>     [121]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb6/igt@k
>> ms_plane_lowres@pipe-c-tiling-x.html
>>
>>    * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
>>      - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#5176]) +7 similar issues
>>     [122]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-tglb2/igt@k
>> ms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-down
>> scale-with-rotation.html
>>
>>    * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
>>      - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#5235]) +2 similar issues
>>     [123]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb7/igt@k
>> ms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-dow
>> nscale.html
>>
>>    * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation:
>>      - shard-iclb:         NOTRUN -> [SKIP][124] ([i915#5176]) +5 similar issues
>>     [124]: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/shard-iclb3/igt@k
>> ms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scal
>> er-with-rotation.html
>>
>>    * igt@kms_prime@basic-crc@first-to-second:
>>      - shard-iclb:         NOTRUN -> [SKIP][125] ([i915#1836])
>>     [125]: https://intel-gfx-ci.01.org/tree/drm-
>>
>> == Logs ==
>>
>> For more details see: 
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6851/index.html


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

* Re: [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 17:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2022-04-05 20:56   ` Melissa Wen
  2022-04-06  7:26     ` Petri Latvala
  0 siblings, 1 reply; 11+ messages in thread
From: Melissa Wen @ 2022-04-05 20:56 UTC (permalink / raw)
  To: igt-dev; +Cc: lakshminarayana.vudum

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

On 03/31, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
> URL   : https://patchwork.freedesktop.org/series/102026/
> State : warning
> 
> == Summary ==
> 
> Pipeline status: FAILED.
> 
> see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045 for the overview.
> 
> test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569675):
>   Ok:                   22
>   Expected Fail:         3
>   Fail:                287
>   Unexpected Pass:       0
>   Skipped:               0
>   Timeout:               0
Hi,

Can these failures be false positives too? Basically all tests fail
after the expected fails.

Thanks,
>   
>   Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
>   section_end:1648747524:step_script
>   section_start:1648747524:upload_artifacts_on_failure
>   Uploading artifacts for failed job
>   Uploading artifacts...
>   build: found 1713 matching files and directories   
>   Uploading artifacts as "archive" to coordinator... 201 Created  id=20569675 responseStatus=201 Created token=ZkXD-TSJ
>   section_end:1648747535:upload_artifacts_on_failure
>   section_start:1648747535:cleanup_file_variables
>   Cleaning up project directory and file based variables
>   section_end:1648747536:cleanup_file_variables
>   ERROR: Job failed: exit code 1
>   
> 
> test:ninja-test-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569676):
>   Ok:                   22
>   Expected Fail:         3
>   Fail:                287
>   Unexpected Pass:       0
>   Skipped:               0
>   Timeout:               0
>   
>   Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
>   section_end:1648747524:step_script
>   section_start:1648747524:upload_artifacts_on_failure
>   Uploading artifacts for failed job
>   Uploading artifacts...
>   build: found 1713 matching files and directories   
>   Uploading artifacts as "archive" to coordinator... 201 Created  id=20569676 responseStatus=201 Created token=GWysfov2
>   section_end:1648747535:upload_artifacts_on_failure
>   section_start:1648747535:cleanup_file_variables
>   Cleaning up project directory and file based variables
>   section_end:1648747535:cleanup_file_variables
>   ERROR: Job failed: exit code 1
> 
> == Logs ==
> 
> For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-04-05 20:56   ` Melissa Wen
@ 2022-04-06  7:26     ` Petri Latvala
  0 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2022-04-06  7:26 UTC (permalink / raw)
  To: Melissa Wen; +Cc: igt-dev, lakshminarayana.vudum

On Tue, Apr 05, 2022 at 07:56:56PM -0100, Melissa Wen wrote:
> On 03/31, Patchwork wrote:
> > == Series Details ==
> > 
> > Series: tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
> > URL   : https://patchwork.freedesktop.org/series/102026/
> > State : warning
> > 
> > == Summary ==
> > 
> > Pipeline status: FAILED.
> > 
> > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045 for the overview.
> > 
> > test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569675):
> >   Ok:                   22
> >   Expected Fail:         3
> >   Fail:                287
> >   Unexpected Pass:       0
> >   Skipped:               0
> >   Timeout:               0
> Hi,
> 
> Can these failures be false positives too? Basically all tests fail
> after the expected fails.

Yes, you can ignore this. The arm64 (and sometimes armhf) pipeline is
not feeling well.



-- 
Petri Latvala


> 
> Thanks,
> >   
> >   Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
> >   section_end:1648747524:step_script
> >   section_start:1648747524:upload_artifacts_on_failure
> >   Uploading artifacts for failed job
> >   Uploading artifacts...
> >   build: found 1713 matching files and directories   
> >   Uploading artifacts as "archive" to coordinator... 201 Created  id=20569675 responseStatus=201 Created token=ZkXD-TSJ
> >   section_end:1648747535:upload_artifacts_on_failure
> >   section_start:1648747535:cleanup_file_variables
> >   Cleaning up project directory and file based variables
> >   section_end:1648747536:cleanup_file_variables
> >   ERROR: Job failed: exit code 1
> >   
> > 
> > test:ninja-test-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/20569676):
> >   Ok:                   22
> >   Expected Fail:         3
> >   Fail:                287
> >   Unexpected Pass:       0
> >   Skipped:               0
> >   Timeout:               0
> >   
> >   Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
> >   section_end:1648747524:step_script
> >   section_start:1648747524:upload_artifacts_on_failure
> >   Uploading artifacts for failed job
> >   Uploading artifacts...
> >   build: found 1713 matching files and directories   
> >   Uploading artifacts as "archive" to coordinator... 201 Created  id=20569676 responseStatus=201 Created token=GWysfov2
> >   section_end:1648747535:upload_artifacts_on_failure
> >   section_start:1648747535:cleanup_file_variables
> >   Cleaning up project directory and file based variables
> >   section_end:1648747535:cleanup_file_variables
> >   ERROR: Job failed: exit code 1
> > 
> > == Logs ==
> > 
> > For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/547045


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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation
  2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
                   ` (3 preceding siblings ...)
  2022-04-04 18:12 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2022-04-07 14:48 ` Rodrigo Siqueira Jordao
  4 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Siqueira Jordao @ 2022-04-07 14:48 UTC (permalink / raw)
  To: Melissa Wen, igt-dev; +Cc: Alex Hung, petri.latvala, markyacoub



On 2022-03-31 10:53, Melissa Wen wrote:
> The alpha-7efc test takes into account that fg.alpha (pixel alpha
> component) and plane_alpha (alpha property) are swappable in the
> pre-multiplied blend formula:
>   plane_alpha * fg.rgb + (1 - (plane_alpha * fg.alpha)) * bg.rgb
> 
> Also, 0xfcfc is double 0x7e7e, so the composition of a given plane_alpha
> and 0x7e7e argb_fb would result in the same CRC of plane_alpha/2 and
> 0xfcfc argb_fb.
> 
> However, precision and rounding issues may affect calculation and
> results are not consistent between different hw. For example, the test
> case fails on i915 gen8 and also for some alpha values on amdgpu (after
> applying[1]), but passes on i915 gen11.
> 
> Therefore, refactor the test for a more assertive verification that
> facilitates debugging when it fails, but keep validating pre-multiplied
> alpha property in a alpha-7efc context. For this, remove the loop in a
> range of alpha values and just check the swappable property of fg.alpha
> and plane_alpha on a pre-multiplied blend mode (default for DRM).
> 
> [1] https://lore.kernel.org/dri-devel/20220329201835.2393141-1-mwen@igalia.com/
> 
> Signed-off-by: Melissa Wen <mwen@igalia.com>
> ---
>   tests/kms_plane_alpha_blend.c | 25 +++++++++++--------------
>   1 file changed, 11 insertions(+), 14 deletions(-)
> 
> diff --git a/tests/kms_plane_alpha_blend.c b/tests/kms_plane_alpha_blend.c
> index d061262d..8e54dfd6 100644
> --- a/tests/kms_plane_alpha_blend.c
> +++ b/tests/kms_plane_alpha_blend.c
> @@ -386,7 +386,6 @@ static void alpha_7efc(data_t *data, enum pipe pipe, igt_plane_t *plane)
>   {
>   	igt_display_t *display = &data->display;
>   	igt_crc_t ref_crc = {}, crc = {};
> -	int i;
>   
>   	if (plane->type != DRM_PLANE_TYPE_PRIMARY)
>   		igt_plane_set_fb(igt_pipe_get_plane_type(&display->pipes[pipe], DRM_PLANE_TYPE_PRIMARY), &data->gray_fb);
> @@ -394,21 +393,18 @@ static void alpha_7efc(data_t *data, enum pipe pipe, igt_plane_t *plane)
>   	igt_display_commit2(display, COMMIT_ATOMIC);
>   	igt_pipe_crc_start(data->pipe_crc);
>   
> -	/* for coverage, plane alpha and fb alpha should be swappable, so swap fb and alpha */
> -	for (i = 0; i < 256; i += 8) {
> -		igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, ((i/2) << 8) | (i/2));
> -		igt_plane_set_fb(plane, &data->argb_fb_fc);
> -		igt_display_commit2(display, COMMIT_ATOMIC);
> +	igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, 0x7e7e);
> +	igt_plane_set_fb(plane, &data->argb_fb_fc);
> +	igt_display_commit2(display, COMMIT_ATOMIC);
>   
> -		igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &ref_crc);
> +	igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &ref_crc);
>   
> -		igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, (i << 8) | i);
> -		igt_plane_set_fb(plane, &data->argb_fb_7e);
> -		igt_display_commit2(display, COMMIT_ATOMIC);
> +	igt_plane_set_prop_value(plane, IGT_PLANE_ALPHA, 0xfcfc);
> +	igt_plane_set_fb(plane, &data->argb_fb_7e);
> +	igt_display_commit2(display, COMMIT_ATOMIC);
>   
> -		igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc);
> -		igt_assert_crc_equal(&ref_crc, &crc);
> -	}
> +	igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc);
> +	igt_assert_crc_equal(&ref_crc, &crc);
>   
>   	igt_pipe_crc_stop(data->pipe_crc);
>   }
> @@ -536,7 +532,8 @@ static void run_subtests(data_t *data, enum pipe pipe)
>   	igt_subtest_f("pipe-%s-alpha-basic", kmstest_pipe_name(pipe))
>   		run_test_on_pipe_planes(data, pipe, false, true, basic_alpha);
>   
> -	igt_describe("Tests plane alpha-7efc properties.");
> +	igt_describe("Uses alpha values 0x7e and 0xfc to validate fg.alpha and "
> +		     "plane_alpha are swappable on pre-multiplied blend mode.");
>   	igt_subtest_f("pipe-%s-alpha-7efc", kmstest_pipe_name(pipe))
>   		run_test_on_pipe_planes(data, pipe, false, true, alpha_7efc);
>   

Thanks a lot for this patch! kms_plane_alpha_blend works really well now!

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>


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

end of thread, other threads:[~2022-04-07 14:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-31 14:53 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: refactor alpha-7efc for clearer validation Melissa Wen
2022-03-31 17:30 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-04-05 20:56   ` Melissa Wen
2022-04-06  7:26     ` Petri Latvala
2022-03-31 17:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-03-31 22:00 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-04-01 14:33   ` Melissa Wen
2022-04-04 17:59     ` Rodrigo Siqueira Jordao
2022-04-04 18:19       ` Vudum, Lakshminarayana
2022-04-04 18:12 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2022-04-07 14:48 ` [igt-dev] [PATCH i-g-t] " Rodrigo Siqueira Jordao

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.