All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing
@ 2021-05-26 10:18 Mika Kahola
  2021-05-26 11:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Mika Kahola @ 2021-05-26 10:18 UTC (permalink / raw)
  To: igt-dev

Search and use the lowest possible mode, when switching resolutions
from the default to the lowest mode and back.

While at it, reset display after each subtest run.

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 tests/kms_plane_lowres.c | 23 ++++++++++-------------
 1 file changed, 10 insertions(+), 13 deletions(-)

diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index 43cc4250d..b876162b3 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -59,26 +59,21 @@ get_lowres_mode(int drmfd, igt_output_t *output,
 		const drmModeModeInfo *mode_default)
 {
 	const drmModeModeInfo *mode;
-	bool found = false;
-	int limit = mode_default->vdisplay - SIZE;
+	const drmModeModeInfo *min;
 	int j;
 
+        /* search for lowest mode */
+        min = mode_default;
 	for (j = 0; j < output->config.connector->count_modes; j++) {
 		mode = &output->config.connector->modes[j];
-		if (mode->vdisplay < limit) {
-			found = true;
-			break;
-		}
+		if (mode->vdisplay < min->vdisplay)
+			min = mode;
 	}
 
-	if (!found) {
-		igt_require_f(mode_default->vdisplay - SIZE > 768,
-			      "Current mode not tall enough; plane would still be onscreen after switch to 10x7.\n");
+	igt_require_f(mode_default->vdisplay - min->vdisplay > 2 * SIZE,
+		      "Current mode not tall enough; plane would still be onscreen after switching to lowest mode.\n");
 
-		return *igt_std_1024_mode_get();
-	}
-
-	return *mode;
+	return *min;
 }
 
 static igt_plane_t *first_sdr_plane(igt_output_t *output, uint32_t devid)
@@ -250,6 +245,8 @@ test_planes_on_pipe_with_output(data_t *data, igt_plane_t *plane, uint64_t modif
 	igt_remove_fb(data->drm_fd, &data->ref_hires.fb);
 	igt_remove_fb(data->drm_fd, &data->ref_lowres.fb);
 
+	igt_display_reset(&data->display);
+
 	return tested;
 }
 
-- 
2.27.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_lowres: Use lowest mode for testing
  2021-05-26 10:18 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing Mika Kahola
@ 2021-05-26 11:21 ` Patchwork
  2021-05-26 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2021-05-27 12:20 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-05-26 11:21 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 7241 bytes --]

== Series Details ==

Series: tests/kms_plane_lowres: Use lowest mode for testing
URL   : https://patchwork.freedesktop.org/series/90593/
State : success

== Summary ==

CI Bug Log - changes from IGT_6094 -> IGTPW_5850
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-bdw-5557u:       NOTRUN -> [WARN][1] ([i915#2283])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-bdw-5557u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-tgl-u2:          [PASS][2] -> [FAIL][3] ([i915#1888])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-tgl-u2/igt@gem_exec_suspend@basic-s0.html

  * igt@i915_selftest@live@execlists:
    - fi-bdw-5557u:       NOTRUN -> [DMESG-FAIL][4] ([i915#3462])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-bdw-5557u/igt@i915_selftest@live@execlists.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-tgl-u2:          [PASS][5] -> [FAIL][6] ([i915#2416])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-tgl-u2/igt@kms_frontbuffer_tracking@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-tgl-u2/igt@kms_frontbuffer_tracking@basic.html
    - fi-icl-u2:          [PASS][7] -> [FAIL][8] ([i915#49])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_psr@cursor_plane_move:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][9] ([fdo#109271]) +5 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-bdw-5557u/igt@kms_psr@cursor_plane_move.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-cml-u2:          [DMESG-FAIL][10] ([i915#2291] / [i915#541]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-cml-u2/igt@i915_selftest@live@gt_heartbeat.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-cml-u2/igt@i915_selftest@live@gt_heartbeat.html

  
#### Warnings ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [DMESG-FAIL][12] ([i915#3462]) -> [INCOMPLETE][13] ([i915#2782] / [i915#2940] / [i915#3462])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-bsw-nick/igt@i915_selftest@live@execlists.html
    - fi-icl-u2:          [INCOMPLETE][14] ([i915#2782] / [i915#3462]) -> [DMESG-FAIL][15] ([i915#3462])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-icl-u2/igt@i915_selftest@live@execlists.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-icl-u2/igt@i915_selftest@live@execlists.html

  * igt@runner@aborted:
    - fi-kbl-x1275:       [FAIL][16] ([i915#1436] / [i915#3363]) -> [FAIL][17] ([i915#1436] / [i915#2426] / [i915#3363])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-kbl-x1275/igt@runner@aborted.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-kbl-x1275/igt@runner@aborted.html
    - fi-cfl-8700k:       [FAIL][18] ([i915#3363]) -> [FAIL][19] ([i915#2426] / [i915#3363])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-cfl-8700k/igt@runner@aborted.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-cfl-8700k/igt@runner@aborted.html
    - fi-icl-u2:          [FAIL][20] ([i915#2782] / [i915#3363]) -> [FAIL][21] ([i915#2426] / [i915#2782] / [i915#3363])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-icl-u2/igt@runner@aborted.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-icl-u2/igt@runner@aborted.html
    - fi-bdw-5557u:       [FAIL][22] ([i915#1602] / [i915#2029]) -> [FAIL][23] ([i915#3462])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-bdw-5557u/igt@runner@aborted.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-bdw-5557u/igt@runner@aborted.html
    - fi-kbl-soraka:      [FAIL][24] ([i915#1436] / [i915#3363]) -> [FAIL][25] ([i915#1436] / [i915#2426] / [i915#3363])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-kbl-soraka/igt@runner@aborted.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-kbl-soraka/igt@runner@aborted.html
    - fi-kbl-7500u:       [FAIL][26] ([i915#1436] / [i915#3363]) -> [FAIL][27] ([i915#1436] / [i915#2426] / [i915#3363])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-kbl-7500u/igt@runner@aborted.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-kbl-7500u/igt@runner@aborted.html
    - fi-cfl-guc:         [FAIL][28] ([i915#2426] / [i915#3363]) -> [FAIL][29] ([i915#3363])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/fi-cfl-guc/igt@runner@aborted.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/fi-cfl-guc/igt@runner@aborted.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2416]: https://gitlab.freedesktop.org/drm/intel/issues/2416
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541


Participating hosts (46 -> 40)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6094 -> IGTPW_5850

  CI-20190529: 20190529
  CI_DRM_10133: 79cace2bbe3bb9cbff1aa14428adea42072b56b0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5850: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/index.html
  IGT_6094: f62d8953c0bc5ed68ea978662e62f9dbb46cf101 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 9968 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_lowres: Use lowest mode for testing
  2021-05-26 10:18 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing Mika Kahola
  2021-05-26 11:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-05-26 16:18 ` Patchwork
  2021-05-27  6:02   ` Kahola, Mika
  2021-05-27 12:20 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
  2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2021-05-26 16:18 UTC (permalink / raw)
  To: Mika Kahola; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30269 bytes --]

== Series Details ==

Series: tests/kms_plane_lowres: Use lowest mode for testing
URL   : https://patchwork.freedesktop.org/series/90593/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6094_full -> IGTPW_5850_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-apl8/igt@gem_workarounds@suspend-resume.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl1/igt@gem_workarounds@suspend-resume.html

  * igt@kms_plane_lowres@pipe-a-tiling-none:
    - shard-tglb:         [PASS][3] -> [SKIP][4] +6 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb2/igt@kms_plane_lowres@pipe-a-tiling-none.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-none.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_plane_lowres@pipe-c-tiling-none:
    - shard-iclb:         [PASS][6] -> [SKIP][7] +8 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-none.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-none.html

  * igt@kms_plane_lowres@pipe-d-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][8] +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-y.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-clear:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#3160])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk8/igt@gem_create@create-clear.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_create@create-clear.html

  * igt@gem_create@create-massive:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][11] ([i915#3002])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@gem_create@create-massive.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][12] ([i915#3002])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@gem_create@create-massive.html
    - shard-kbl:          NOTRUN -> [DMESG-WARN][13] ([i915#3002])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_create@create-massive.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][14] ([i915#3002])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@gem_create@create-massive.html
    - shard-glk:          NOTRUN -> [DMESG-WARN][15] ([i915#3002])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk3/igt@gem_create@create-massive.html
    - shard-apl:          NOTRUN -> [DMESG-WARN][16] ([i915#3002])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl7/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-mixed:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +4 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-tglb:         [PASS][18] -> [TIMEOUT][19] ([i915#3063])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb5/igt@gem_eio@in-flight-contexts-10ms.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [PASS][20] -> [DMESG-WARN][21] ([i915#180]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-kbl1/igt@gem_eio@in-flight-suspend.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][22] -> [TIMEOUT][23] ([i915#2369] / [i915#3063])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb7/igt@gem_eio@unwedge-stress.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][24] ([i915#2842])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_exec_fair@basic-none-solo@rcs0.html
    - shard-iclb:         NOTRUN -> [FAIL][25] ([i915#2842])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@gem_exec_fair@basic-none-solo@rcs0.html
    - shard-tglb:         NOTRUN -> [FAIL][26] ([i915#2842])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          [PASS][27] -> [FAIL][28] ([i915#2842])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][29] -> [FAIL][30] ([i915#2842])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][31] -> [FAIL][32] ([i915#2842]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_reloc@basic-wide-active@rcs0:
    - shard-snb:          NOTRUN -> [FAIL][33] ([i915#2389]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-glk:          [PASS][34] -> [FAIL][35] ([i915#307])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk9/igt@gem_mmap_gtt@big-copy-odd.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
    - shard-snb:          NOTRUN -> [INCOMPLETE][36] ([i915#2055])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][37] ([i915#3468]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
    - shard-apl:          NOTRUN -> [INCOMPLETE][38] ([i915#3468]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl6/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][39] ([i915#2055] / [i915#3468])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-xy:
    - shard-apl:          [PASS][40] -> [INCOMPLETE][41] ([i915#3468])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-apl3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][42] ([i915#2658])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][43] ([i915#2658])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl7/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][44] ([i915#2658])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][45] ([fdo#109271]) +290 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][46] ([i915#768]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#110542])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@gem_userptr_blits@coherency-sync.html
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109290])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3297])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@gem_userptr_blits@readonly-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#3297])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-snb:          NOTRUN -> [FAIL][51] ([i915#2724])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_userptr_blits@vma-merge.html
    - shard-apl:          NOTRUN -> [FAIL][52] ([i915#3318])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@gem_userptr_blits@vma-merge.html
    - shard-glk:          NOTRUN -> [FAIL][53] ([i915#3318])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_userptr_blits@vma-merge.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [PASS][54] -> [INCOMPLETE][55] ([i915#2199])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk2/igt@gem_workarounds@suspend-resume.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk5/igt@gem_workarounds@suspend-resume.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#109289]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +344 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#112306])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#112306]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][60] ([i915#454])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][61] ([i915#454]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3288])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html
    - shard-iclb:         NOTRUN -> [FAIL][63] ([i915#3343])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglb:         NOTRUN -> [WARN][64] ([i915#2681])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@i915_pm_rc6_residency@rc6-fence.html
    - shard-iclb:         NOTRUN -> [WARN][65] ([i915#1804] / [i915#2684])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109293] / [fdo#109506])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109506] / [i915#2411])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([fdo#111644] / [i915#1397] / [i915#2411])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#110892])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_selftest@live@execlists:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][70] ([i915#3462])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@execlists.html
    - shard-glk:          NOTRUN -> [DMESG-FAIL][71] ([i915#3462])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@i915_selftest@live@execlists.html
    - shard-iclb:         NOTRUN -> [DMESG-FAIL][72] ([i915#3462])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@i915_selftest@live@execlists.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][73] ([i915#2782] / [i915#3462] / [i915#794])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][74] ([i915#2373])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][75] ([i915#1759] / [i915#2291])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          NOTRUN -> [INCOMPLETE][76] ([i915#2782])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#111614]) +2 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#110725] / [fdo#111614]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#111615]) +4 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#110723]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2705])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_chamelium@dp-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_chamelium@dp-edid-change-during-suspend.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +25 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl7/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color@pipe-a-degamma:
    - shard-tglb:         NOTRUN -> [FAIL][84] ([i915#1149])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_color@pipe-a-degamma.html
    - shard-iclb:         NOTRUN -> [FAIL][85] ([i915#1149])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_color@pipe-a-degamma.html

  * igt@kms_color@pipe-d-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109278] / [i915#1149])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@kms_color@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-75:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109284] / [fdo#111827]) +11 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@kms_color_chamelium@pipe-b-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109284] / [fdo#111827]) +9 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_color_chamelium@pipe-c-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-25:
    - shard-glk:          NOTRUN -> [SKIP][90] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
    - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][92] ([i915#1319]) +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#3116])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-tglb:         NOTRUN -> [SKIP][94] ([i915#3116])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#3319]) +4 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-random:
    - shard-glk:          NOTRUN -> [SKIP][96] ([fdo#109271]) +104 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-max-size-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109278]) +30 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109279] / [i915#3359])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#3359]) +6 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([fdo#111825]) +40 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#109274] / [fdo#109278])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@pipe-d-single-bo:
    - shard-glk:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@kms_cursor_legacy@pipe-d-single-bo.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([fdo#109349])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html
    - shard-tglb:         NOTRUN -> [CRASH][104] ([i915#3494])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2065])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][106] ([i915#2065])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

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

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-iclb:         [PASS][108] -> [FAIL][109] ([i915#79])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2672])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
    - shard-kbl:          NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#2642])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][112] ([fdo#109280]) +32 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

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

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#1839])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-iclb:         NOTRUN -> [SKIP][115] ([i915#1839])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-iclb:         NOTRUN -> [SKIP][116] ([fdo#109289])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#533]) +3 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][118] ([i915#180]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][119] ([fdo#108145] / [i915#265]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][120] ([fdo#108145] / [i915#265]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

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

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][122] ([i915#265])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-tglb:         NOTRUN -> [SKIP][123] ([i915#2920]) +2 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5:
    - shard-apl:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#658]) +6 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html
    - shard-glk:          NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#658]) +2 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-kbl:          NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#658]) +8 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html
    - shard-iclb:         NOTRUN -> [SKIP][127] ([i915#658]) +2 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][128] -> [SKIP][129] ([fdo#109441]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         NOTRUN -> [SKIP][130] ([fdo#109441])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html
    - shard-tglb:         NOTRUN -> [FAIL][131] ([i915#132] / [i915#3467])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][132] ([i915#180] / [i915#295])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#533]) +3 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-kbl:          NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#2437]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-b-source-outp-complete:
    - shard-iclb:         NOTRUN -> [SKIP][135] ([i915#2530]) +1 similar issue
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@nouveau_crc@pipe-b-source-outp-complete.html

  * igt@nouveau_crc@pipe-c-ctx-flip-detection:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([i915#2530]) +1 similar issue
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@nouveau_crc@pipe-c-ctx-flip-detection.html

  * igt@prime_nv_api@i915_nv_double_export:
    - shard-iclb:         NOTRUN -> [SKIP][137] ([fdo#109291]) +3 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IG

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 33996 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_lowres: Use lowest mode for testing
  2021-05-26 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-27  6:02   ` Kahola, Mika
  0 siblings, 0 replies; 5+ messages in thread
From: Kahola, Mika @ 2021-05-27  6:02 UTC (permalink / raw)
  To: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 28449 bytes --]

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, May 26, 2021 7:19 PM
To: Kahola, Mika <mika.kahola@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for tests/kms_plane_lowres: Use lowest mode for testing

Patch Details
Series:

tests/kms_plane_lowres: Use lowest mode for testing

URL:

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

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/index.html

CI Bug Log - changes from IGT_6094_full -> IGTPW_5850_full
Summary

FAILURE

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

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5850_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_5850/index.html

Possible new issues

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

IGT changes
Possible regressions

  *   igt@gem_workarounds@suspend-resume:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-apl8/igt@gem_workarounds@suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl1/igt@gem_workarounds@suspend-resume.html>

  *   igt@kms_plane_lowres@pipe-a-tiling-none:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb2/igt@kms_plane_lowres@pipe-a-tiling-none.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-none.html> +6 similar issues

  *   igt@kms_plane_lowres@pipe-a-tiling-y:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html>

  *   igt@kms_plane_lowres@pipe-c-tiling-none:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-none.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-none.html> +8 similar issues
Expected skip as we don’t have two modes that have large enough difference.

  *   igt@kms_plane_lowres@pipe-d-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-y.html> +1 similar issue

Known issues

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

IGT changes
Issues hit

  *   igt@gem_create@create-clear:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk8/igt@gem_create@create-clear.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_create@create-clear.html> ([i915#3160])

  *   igt@gem_create@create-massive:

     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@gem_create@create-massive.html> ([i915#3002])
     *   shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@gem_create@create-massive.html> ([i915#3002])
     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_create@create-massive.html> ([i915#3002])
     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@gem_create@create-massive.html> ([i915#3002])
     *   shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk3/igt@gem_create@create-massive.html> ([i915#3002])
     *   shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl7/igt@gem_create@create-massive.html> ([i915#3002])

  *   igt@gem_ctx_persistence@legacy-engines-mixed:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html> ([fdo#109271] / [i915#1099]) +4 similar issues

  *   igt@gem_eio@in-flight-contexts-10ms:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb5/igt@gem_eio@in-flight-contexts-10ms.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gem_eio@in-flight-contexts-10ms.html> ([i915#3063])

  *   igt@gem_eio@in-flight-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-kbl1/igt@gem_eio@in-flight-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_eio@in-flight-suspend.html> ([i915#180]) +1 similar issue

  *   igt@gem_eio@unwedge-stress:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb7/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gem_eio@unwedge-stress.html> ([i915#2369] / [i915#3063])

  *   igt@gem_exec_fair@basic-none-solo@rcs0:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842])
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@gem_exec_fair@basic-none-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@rcs0:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@gem_exec_fair@basic-none@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html> ([i915#2842]) +1 similar issue

  *   igt@gem_exec_reloc@basic-wide-active@rcs0:

     *   shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> ([i915#2389]) +2 similar issues

  *   igt@gem_mmap_gtt@big-copy-odd:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk9/igt@gem_mmap_gtt@big-copy-odd.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@gem_mmap_gtt@big-copy-odd.html> ([i915#307])

  *   igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:

     *   shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html> ([i915#2055])

  *   igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:

     *   shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> ([i915#3468]) +1 similar issue
     *   shard-apl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl6/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> ([i915#3468]) +1 similar issue
     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> ([i915#2055] / [i915#3468])

  *   igt@gem_mmap_gtt@cpuset-medium-copy-xy:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-apl3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> ([i915#3468])

  *   igt@gem_pwrite@basic-exhaustion:

     *   shard-snb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])
     *   shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])
     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +290 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_userptr_blits@coherency-sync:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@gem_userptr_blits@coherency-sync.html> ([fdo#110542])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@gem_userptr_blits@coherency-sync.html> ([fdo#109290])

  *   igt@gem_userptr_blits@readonly-unsync:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297])

  *   igt@gem_userptr_blits@vma-merge:

     *   shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb5/igt@gem_userptr_blits@vma-merge.html> ([i915#2724])
     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@gem_userptr_blits@vma-merge.html> ([i915#3318])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@gem_userptr_blits@vma-merge.html> ([i915#3318])

  *   igt@gem_workarounds@suspend-resume:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-glk2/igt@gem_workarounds@suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk5/igt@gem_workarounds@suspend-resume.html> ([i915#2199])

  *   igt@gen7_exec_parse@batch-without-end:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gen7_exec_parse@batch-without-end.html> ([fdo#109289]) +1 similar issue

  *   igt@gen9_exec_parse@batch-invalid-length:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@gen9_exec_parse@batch-invalid-length.html> ([fdo#109271]) +344 similar issues

  *   igt@gen9_exec_parse@bb-start-cmd:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@gen9_exec_parse@bb-start-cmd.html> ([fdo#112306])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@gen9_exec_parse@bb-start-cmd.html> ([fdo#112306]) +1 similar issue

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454])

  *   igt@i915_pm_dc@dc6-psr:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_pm_dc@dc6-psr.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_dc@dc9-dpms:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html> ([i915#3288])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@i915_pm_dc@dc9-dpms.html> ([i915#3343])

  *   igt@i915_pm_rc6_residency@rc6-fence:

     *   shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681])
     *   shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#1804] / [i915#2684])

  *   igt@i915_pm_rpm@gem-execbuf-stress-pc8:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> ([fdo#109293] / [fdo#109506])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> ([fdo#109506] / [i915#2411])

  *   igt@i915_pm_rpm@modeset-non-lpsp-stress:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> ([fdo#111644] / [i915#1397] / [i915#2411])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> ([fdo#110892])

  *   igt@i915_selftest@live@execlists:

     *   shard-tglb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@execlists.html> ([i915#3462])
     *   shard-glk: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@i915_selftest@live@execlists.html> ([i915#3462])
     *   shard-iclb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@i915_selftest@live@execlists.html> ([i915#3462])
     *   shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@i915_selftest@live@execlists.html> ([i915#2782] / [i915#3462] / [i915#794])

  *   igt@i915_selftest@live@gt_lrc:

     *   shard-tglb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@gt_lrc.html> ([i915#2373])

  *   igt@i915_selftest@live@gt_pm:

     *   shard-tglb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@i915_selftest@live@gt_pm.html> ([i915#1759] / [i915#2291])

  *   igt@i915_selftest@live@hangcheck:

     *   shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb6/igt@i915_selftest@live@hangcheck.html> ([i915#2782])

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-90:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> ([fdo#111614]) +2 similar issues

  *   igt@kms_big_fb@x-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> ([fdo#110725] / [fdo#111614]) +2 similar issues

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-90:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html> ([fdo#111615]) +4 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_big_joiner@invalid-modeset.html> ([fdo#109271] / [i915#2705])

  *   igt@kms_chamelium@dp-edid-change-during-suspend:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_chamelium@dp-edid-change-during-suspend.html> ([fdo#109271] / [fdo#111827]) +16 similar issues

  *   igt@kms_chamelium@vga-hpd-for-each-pipe:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl7/igt@kms_chamelium@vga-hpd-for-each-pipe.html> ([fdo#109271] / [fdo#111827]) +25 similar issues

  *   igt@kms_color@pipe-a-degamma:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_color@pipe-a-degamma.html> ([i915#1149])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_color@pipe-a-degamma.html> ([i915#1149])

  *   igt@kms_color@pipe-d-ctm-red-to-blue:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb4/igt@kms_color@pipe-d-ctm-red-to-blue.html> ([fdo#109278] / [i915#1149])

  *   igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_color_chamelium@pipe-b-ctm-0-75:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@kms_color_chamelium@pipe-b-ctm-0-75.html> ([fdo#109284] / [fdo#111827]) +11 similar issues

  *   igt@kms_color_chamelium@pipe-c-ctm-0-5:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_color_chamelium@pipe-c-ctm-0-5.html> ([fdo#109284] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-ctm-0-25:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk7/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@kms_content_protection@atomic.html> ([i915#1319]) +2 similar issues

  *   igt@kms_content_protection@dp-mst-lic-type-0:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-0.html> ([i915#3116])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb7/igt@kms_content_protection@dp-mst-lic-type-0.html> ([i915#3116])

  *   igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html> ([i915#3319]) +4 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-max-size-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-max-size-random.html> ([fdo#109271]) +104 similar issues

  *   igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html> ([fdo#109278]) +30 similar issues

  *   igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html> ([i915#3359]) +6 similar issues

  *   igt@kms_cursor_legacy@cursora-vs-flipb-atomic:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> ([fdo#111825]) +40 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> ([fdo#109274] / [fdo#109278])

  *   igt@kms_cursor_legacy@pipe-d-single-bo:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk6/igt@kms_cursor_legacy@pipe-d-single-bo.html> ([fdo#109271] / [i915#533])

  *   igt@kms_dp_dsc@basic-dsc-enable-edp:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html> ([fdo#109349])
     *   shard-tglb: NOTRUN -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html> ([i915#3494])

  *   igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> ([i915#2065])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> ([i915#2065])

  *   igt@kms_flip@2x-flip-vs-rmfb:

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

  *   igt@kms_flip@flip-vs-expired-vblank@b-edp1:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html> ([i915#79])

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> ([fdo#109271] / [i915#2672])

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> ([fdo#109271] / [i915#2642])

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> ([fdo#109280]) +32 similar issues

  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:

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

  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#1839])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#1839])

  *   igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html> ([fdo#109289])

  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> ([fdo#109271] / [i915#533]) +3 similar issues

  *   igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> ([i915#180]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:

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

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html> ([i915#265])

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html> ([i915#2920]) +2 similar issues

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html> ([fdo#109271] / [i915#658]) +6 similar issues
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-glk9/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html> ([fdo#109271] / [i915#658]) +2 similar issues

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html> ([fdo#109271] / [i915#658]) +8 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html> ([i915#658]) +2 similar issues

  *   igt@kms_psr@psr2_primary_mmap_cpu:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6094/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_mmap_gtt:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html> ([fdo#109441])
     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb1/igt@kms_psr@psr2_sprite_mmap_gtt.html> ([i915#132] / [i915#3467])

  *   igt@kms_vblank@pipe-a-ts-continuation-suspend:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> ([i915#180] / [i915#295])

  *   igt@kms_vblank@pipe-d-wait-idle:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_vblank@pipe-d-wait-idle.html> ([fdo#109271] / [i915#533]) +3 similar issues

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-kbl3/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437]) +1 similar issue

  *   igt@nouveau_crc@pipe-b-source-outp-complete:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-iclb7/igt@nouveau_crc@pipe-b-source-outp-complete.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-ctx-flip-detection:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5850/shard-tglb3/igt@nouveau_crc@pipe-c-ctx-flip-detection.html> ([i915#2530]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_double_export:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IG> ([fdo#109291]) +3 similar issues

[-- Attachment #1.2: Type: text/html, Size: 60660 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing
  2021-05-26 10:18 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing Mika Kahola
  2021-05-26 11:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2021-05-26 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-27 12:20 ` Juha-Pekka Heikkila
  2 siblings, 0 replies; 5+ messages in thread
From: Juha-Pekka Heikkila @ 2021-05-27 12:20 UTC (permalink / raw)
  To: Mika Kahola, igt-dev

Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

On 26.5.2021 13.18, Mika Kahola wrote:
> Search and use the lowest possible mode, when switching resolutions
> from the default to the lowest mode and back.
> 
> While at it, reset display after each subtest run.
> 
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
>   tests/kms_plane_lowres.c | 23 ++++++++++-------------
>   1 file changed, 10 insertions(+), 13 deletions(-)
> 
> diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
> index 43cc4250d..b876162b3 100644
> --- a/tests/kms_plane_lowres.c
> +++ b/tests/kms_plane_lowres.c
> @@ -59,26 +59,21 @@ get_lowres_mode(int drmfd, igt_output_t *output,
>   		const drmModeModeInfo *mode_default)
>   {
>   	const drmModeModeInfo *mode;
> -	bool found = false;
> -	int limit = mode_default->vdisplay - SIZE;
> +	const drmModeModeInfo *min;
>   	int j;
>   
> +        /* search for lowest mode */
> +        min = mode_default;
>   	for (j = 0; j < output->config.connector->count_modes; j++) {
>   		mode = &output->config.connector->modes[j];
> -		if (mode->vdisplay < limit) {
> -			found = true;
> -			break;
> -		}
> +		if (mode->vdisplay < min->vdisplay)
> +			min = mode;
>   	}
>   
> -	if (!found) {
> -		igt_require_f(mode_default->vdisplay - SIZE > 768,
> -			      "Current mode not tall enough; plane would still be onscreen after switch to 10x7.\n");
> +	igt_require_f(mode_default->vdisplay - min->vdisplay > 2 * SIZE,
> +		      "Current mode not tall enough; plane would still be onscreen after switching to lowest mode.\n");
>   
> -		return *igt_std_1024_mode_get();
> -	}
> -
> -	return *mode;
> +	return *min;
>   }
>   
>   static igt_plane_t *first_sdr_plane(igt_output_t *output, uint32_t devid)
> @@ -250,6 +245,8 @@ test_planes_on_pipe_with_output(data_t *data, igt_plane_t *plane, uint64_t modif
>   	igt_remove_fb(data->drm_fd, &data->ref_hires.fb);
>   	igt_remove_fb(data->drm_fd, &data->ref_lowres.fb);
>   
> +	igt_display_reset(&data->display);
> +
>   	return tested;
>   }
>   
> 

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-05-27 12:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26 10:18 [igt-dev] [PATCH i-g-t] tests/kms_plane_lowres: Use lowest mode for testing Mika Kahola
2021-05-26 11:21 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-05-26 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-27  6:02   ` Kahola, Mika
2021-05-27 12:20 ` [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila

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.