All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic
@ 2022-08-10 12:20 Bhanuprakash Modem
  2022-08-10 14:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2022-08-10 12:20 UTC (permalink / raw)
  To: igt-dev

Convert the existing subtests to dynamic subtests at pipe/output
level. And create an array of structures to populate subtests to
avoid code duplication.

This patch will also do some clenup to have a single function for
all subtests.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_plane_cursor.c | 159 ++++++++++++++-------------------------
 1 file changed, 56 insertions(+), 103 deletions(-)

diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c
index 73085cc8..247d6715 100644
--- a/tests/kms_plane_cursor.c
+++ b/tests/kms_plane_cursor.c
@@ -30,6 +30,12 @@
  * - DRM index indicates z-ordering, higher index = higher z-order
  */
 
+enum {
+	TEST_PRIMARY = 0,
+	TEST_OVERLAY = 1 << 0,
+	TEST_VIEWPORT = 1 << 1,
+};
+
 typedef struct {
 	int x;
 	int y;
@@ -58,18 +64,16 @@ typedef struct data {
 } data_t;
 
 /* Common test setup. */
-static void test_init(data_t *data, enum pipe pipe_id)
+static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output)
 {
 	igt_display_t *display = &data->display;
 
 	data->pipe_id = pipe_id;
 	data->pipe = &data->display.pipes[data->pipe_id];
+	data->output = output;
 
 	igt_display_reset(display);
 
-	data->output = igt_get_single_output_for_pipe(&data->display, pipe_id);
-	igt_require(data->output);
-
 	data->mode = igt_output_get_mode(data->output);
 
 	data->primary = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
@@ -202,92 +206,25 @@ static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
 	}
 }
 
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * Assumes the cursor can be placed on top of the overlay.
- */
-static void test_cursor_overlay(data_t *data, int size, enum pipe pipe_id)
-{
-	igt_fb_t pfb, ofb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, data->or.w, data->or.h,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
-	igt_remove_fb(data->drm_fd, &pfb);
-}
-
-/* Tests atomic cursor positioning on a primary plane. */
-static void test_cursor_primary(data_t *data, int size, enum pipe pipe_id)
-{
-	igt_fb_t pfb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, NULL, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &pfb);
-}
-
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * The overlay's buffer is larger than the viewport actually used
- * for display.
- */
-static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
+static void test_cursor(data_t *data, int size, unsigned int flags)
 {
 	igt_fb_t pfb, ofb, cfb;
 	int sw, sh;
 	int pad = 128;
 
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
 	sw = data->mode->hdisplay;
 	sh = data->mode->vdisplay;
 
 	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
 			    1.0, 1.0, 1.0, &pfb);
 
-	igt_create_color_fb(data->drm_fd, data->or.w + pad, data->or.h + pad,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
+	if (flags & TEST_OVERLAY) {
+		int width = (flags & TEST_VIEWPORT) ? data->or.w + pad : data->or.w;
+		int height = (flags & TEST_VIEWPORT) ? data->or.h + pad : data->or.h;
+
+		igt_create_color_fb(data->drm_fd, width, height,
+				    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
+	}
 
 	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
 			    1.0, 0.0, 1.0, &cfb);
@@ -295,12 +232,11 @@ static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
 	igt_plane_set_fb(data->primary, &pfb);
 	igt_display_commit2(&data->display, COMMIT_ATOMIC);
 
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
+	test_cursor_spots(data, &pfb, (flags & TEST_OVERLAY)? &ofb : NULL, &cfb, &data->or, size);
 
 	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
+	if (flags & TEST_OVERLAY)
+		igt_remove_fb(data->drm_fd, &ofb);
 	igt_remove_fb(data->drm_fd, &pfb);
 }
 
@@ -309,7 +245,21 @@ igt_main
 	static const int cursor_sizes[] = { 64, 128, 256 };
 	data_t data = {};
 	enum pipe pipe;
-	int i;
+	igt_output_t *output;
+	int i, j;
+	struct {
+		const char *name;
+		unsigned int flags;
+		const char *desc;
+	} tests[] = {
+		{ "primary", TEST_PRIMARY,
+		  "Tests atomic cursor positioning on primary plane" },
+		{ "overlay", TEST_PRIMARY | TEST_OVERLAY,
+		  "Tests atomic cursor positioning on primary plane and overlay plane" },
+		{ "viewport", TEST_PRIMARY | TEST_OVERLAY | TEST_VIEWPORT,
+		  "Tests atomic cursor positioning on primary plane and overlay plane "
+		  "with buffer larger than viewport used for display" },
+	};
 
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -321,26 +271,29 @@ igt_main
 		igt_display_require_output(&data.display);
 	}
 
-	for_each_pipe_static(pipe)
-		for (i = 0; i < ARRAY_SIZE(cursor_sizes); ++i) {
-			int size = cursor_sizes[i];
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane");
-			igt_subtest_f("pipe-%s-overlay-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_overlay(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane");
-			igt_subtest_f("pipe-%s-primary-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_primary(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane"
-				"with buffer larger than viewport used for display");
-			igt_subtest_f("pipe-%s-viewport-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_viewport(&data, size, pipe);
+	for (i = 0; i < ARRAY_SIZE(tests); i++) {
+		igt_describe_f("%s", tests[i].desc);
+		igt_subtest_with_dynamic_f("%s", tests[i].name) {
+			for_each_pipe_with_single_output(&data.display, pipe, output) {
+				test_init(&data, pipe, output);
+
+				if ((tests[i].flags & TEST_OVERLAY) && !data.overlay)
+					goto cleanup;
+
+				for (j = 0; j < ARRAY_SIZE(cursor_sizes); j++) {
+					int size = cursor_sizes[j];
+
+					igt_dynamic_f("pipe-%s-%s-size-%d",
+						      kmstest_pipe_name(pipe),
+						      igt_output_name(output),
+						      size)
+						test_cursor(&data, size, tests[i].flags);
+				}
+cleanup:
+				test_fini(&data);
+			}
 		}
+	}
 
 	igt_fixture {
 		igt_display_fini(&data.display);
-- 
2.35.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
@ 2022-08-10 14:23 ` Patchwork
  2022-08-10 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-10 14:23 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic
URL   : https://patchwork.freedesktop.org/series/107119/
State : success

== Summary ==

CI Bug Log - changes from IGT_6620 -> IGTPW_7631
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (30 -> 29)
------------------------------

  Additional (1): fi-cfl-8109u 
  Missing    (2): fi-ctg-p8600 fi-hsw-4200u 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-apl-guc:         NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-apl-guc/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@verify-random:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html

  * igt@i915_selftest@live@hangcheck:
    - fi-hsw-g3258:       [PASS][4] -> [INCOMPLETE][5] ([i915#3303] / [i915#4785])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@objects:
    - fi-kbl-soraka:      [PASS][6] -> [INCOMPLETE][7] ([i915#6155])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/fi-kbl-soraka/igt@i915_selftest@live@objects.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-kbl-soraka/igt@i915_selftest@live@objects.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-pnv-d510:        NOTRUN -> [SKIP][8] ([fdo#109271])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-pnv-d510/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-cfl-8109u/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - fi-apl-guc:         NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-apl-guc/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-apl-guc:         NOTRUN -> [SKIP][11] ([fdo#109271]) +11 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-apl-guc/igt@kms_force_connector_basic@force-connector-state.html

  * igt@prime_vgem@basic-userptr:
    - fi-cfl-8109u:       NOTRUN -> [SKIP][12] ([fdo#109271]) +10 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-cfl-8109u/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-kbl-soraka:      NOTRUN -> [FAIL][13] ([i915#4312] / [i915#5257])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-kbl-soraka/igt@runner@aborted.html
    - fi-hsw-g3258:       NOTRUN -> [FAIL][14] ([fdo#109271] / [i915#4312] / [i915#6246])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-hsw-g3258/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_render_tiled_blits@basic:
    - fi-apl-guc:         [INCOMPLETE][15] -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/fi-apl-guc/igt@gem_render_tiled_blits@basic.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-apl-guc/igt@gem_render_tiled_blits@basic.html

  * igt@i915_selftest@live@requests:
    - fi-pnv-d510:        [DMESG-FAIL][17] ([i915#4528]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/fi-pnv-d510/igt@i915_selftest@live@requests.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/fi-pnv-d510/igt@i915_selftest@live@requests.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#6155]: https://gitlab.freedesktop.org/drm/intel/issues/6155
  [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6620 -> IGTPW_7631

  CI-20190529: 20190529
  CI_DRM_11981: 6f207fdd93a13166b4adfe2f3a2972a9c632e757 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7631: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/index.html
  IGT_6620: 90549cfba1606b695fe60f78ef87b7d54586eab7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

+igt@kms_plane_cursor@overlay
+igt@kms_plane_cursor@primary
+igt@kms_plane_cursor@viewport
-igt@kms_plane_cursor@pipe-a-overlay-size-64
-igt@kms_plane_cursor@pipe-a-overlay-size-128
-igt@kms_plane_cursor@pipe-a-overlay-size-256
-igt@kms_plane_cursor@pipe-a-primary-size-64
-igt@kms_plane_cursor@pipe-a-primary-size-128
-igt@kms_plane_cursor@pipe-a-primary-size-256
-igt@kms_plane_cursor@pipe-a-viewport-size-64
-igt@kms_plane_cursor@pipe-a-viewport-size-128
-igt@kms_plane_cursor@pipe-a-viewport-size-256
-igt@kms_plane_cursor@pipe-b-overlay-size-64
-igt@kms_plane_cursor@pipe-b-overlay-size-128
-igt@kms_plane_cursor@pipe-b-overlay-size-256
-igt@kms_plane_cursor@pipe-b-primary-size-64
-igt@kms_plane_cursor@pipe-b-primary-size-128
-igt@kms_plane_cursor@pipe-b-primary-size-256
-igt@kms_plane_cursor@pipe-b-viewport-size-64
-igt@kms_plane_cursor@pipe-b-viewport-size-128
-igt@kms_plane_cursor@pipe-b-viewport-size-256
-igt@kms_plane_cursor@pipe-c-overlay-size-64
-igt@kms_plane_cursor@pipe-c-overlay-size-128
-igt@kms_plane_cursor@pipe-c-overlay-size-256
-igt@kms_plane_cursor@pipe-c-primary-size-64
-igt@kms_plane_cursor@pipe-c-primary-size-128
-igt@kms_plane_cursor@pipe-c-primary-size-256
-igt@kms_plane_cursor@pipe-c-viewport-size-64
-igt@kms_plane_cursor@pipe-c-viewport-size-128
-igt@kms_plane_cursor@pipe-c-viewport-size-256
-igt@kms_plane_cursor@pipe-d-overlay-size-64
-igt@kms_plane_cursor@pipe-d-overlay-size-128
-igt@kms_plane_cursor@pipe-d-overlay-size-256
-igt@kms_plane_cursor@pipe-d-primary-size-64
-igt@kms_plane_cursor@pipe-d-primary-size-128
-igt@kms_plane_cursor@pipe-d-primary-size-256
-igt@kms_plane_cursor@pipe-d-viewport-size-64
-igt@kms_plane_cursor@pipe-d-viewport-size-128
-igt@kms_plane_cursor@pipe-d-viewport-size-256
-igt@kms_plane_cursor@pipe-e-overlay-size-64
-igt@kms_plane_cursor@pipe-e-overlay-size-128
-igt@kms_plane_cursor@pipe-e-overlay-size-256
-igt@kms_plane_cursor@pipe-e-primary-size-64
-igt@kms_plane_cursor@pipe-e-primary-size-128
-igt@kms_plane_cursor@pipe-e-primary-size-256
-igt@kms_plane_cursor@pipe-e-viewport-size-64
-igt@kms_plane_cursor@pipe-e-viewport-size-128
-igt@kms_plane_cursor@pipe-e-viewport-size-256
-igt@kms_plane_cursor@pipe-f-overlay-size-64
-igt@kms_plane_cursor@pipe-f-overlay-size-128
-igt@kms_plane_cursor@pipe-f-overlay-size-256
-igt@kms_plane_cursor@pipe-f-primary-size-64
-igt@kms_plane_cursor@pipe-f-primary-size-128
-igt@kms_plane_cursor@pipe-f-primary-size-256
-igt@kms_plane_cursor@pipe-f-viewport-size-64
-igt@kms_plane_cursor@pipe-f-viewport-size-128
-igt@kms_plane_cursor@pipe-f-viewport-size-256

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
  2022-08-10 14:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-08-10 23:34 ` Patchwork
  2022-08-17  5:36 ` [igt-dev] [i-g-t] " Karthik B S
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-10 23:34 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic
URL   : https://patchwork.freedesktop.org/series/107119/
State : success

== Summary ==

CI Bug Log - changes from IGT_6620_full -> IGTPW_7631_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  No changes in participating hosts

New tests
---------

  New tests have been introduced between IGT_6620_full and IGTPW_7631_full:

### New IGT tests (111) ###

  * igt@kms_plane_cursor@overlay:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.46] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.64, 2.47] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.47] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.47] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.50] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.50] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.67] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.72] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.46, 2.47] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.60, 2.65] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.64, 2.45] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.45] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.49, 3.31] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-2-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-2-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-2-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.55] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.78] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.60, 2.63] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.64, 2.45] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.64, 2.45] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 3.31] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.54] s

  * igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.64] s

  * igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.63] s

  * igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.44] s

  * igt@kms_plane_cursor@primary:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.44, 2.46] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.64] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.44] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.56, 2.63] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.43] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.43] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.52, 3.29] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-2-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.45] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-2-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.44] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-2-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.53] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.50] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.43, 2.45] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.57, 2.62] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.43] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.62, 2.43] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.48, 3.28] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.45] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.45] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.54] s

  * igt@kms_plane_cursor@primary@pipe-d-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.62] s

  * igt@kms_plane_cursor@primary@pipe-d-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.62] s

  * igt@kms_plane_cursor@primary@pipe-d-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.50] s

  * igt@kms_plane_cursor@viewport:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.47] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.48] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.47] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.52] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.52] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.51] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.48] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.50] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.65] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.73] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.47] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.48] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.58, 2.64] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.50] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.50] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.47, 3.32] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.57] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.74] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.78] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.47] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [2.45, 2.48] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.59, 2.64] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-128:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.50] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-256:
    - Statuses : 2 pass(s)
    - Exec time: [1.63, 2.50] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-64:
    - Statuses : 2 pass(s)
    - Exec time: [2.47, 3.34] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.54] s

  * igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.63] s

  * igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.64] s

  * igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.47] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][2] ([i915#180]) +2 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [PASS][3] -> [SKIP][4] ([i915#4525]) +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb6/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][9] -> [FAIL][10] ([i915#2849])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][11] -> [SKIP][12] ([i915#2190])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-kbl:          NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@gem_lmem_swapping@parallel-random.html
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl8/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#4270]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-iclb:         NOTRUN -> [SKIP][16] ([i915#4270]) +2 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb3/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-apl:          NOTRUN -> [SKIP][17] ([fdo#109271]) +123 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_softpin@32b-excludes-last-page:
    - shard-snb:          NOTRUN -> [SKIP][18] ([fdo#109271]) +52 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-snb4/igt@gem_softpin@32b-excludes-last-page.html

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

  * igt@gem_userptr_blits@vma-merge:
    - shard-kbl:          NOTRUN -> [FAIL][20] ([i915#3318])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-iclb:         NOTRUN -> [SKIP][21] ([fdo#109289])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb8/igt@gen7_exec_parse@basic-offset.html
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#109289])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@gen7_exec_parse@basic-offset.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([i915#2856])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb3/igt@gen9_exec_parse@unaligned-jump.html
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#2527] / [i915#2856])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb3/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][25] -> [SKIP][26] ([fdo#109271])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl8/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_query@hwconfig_table:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#6245])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb5/igt@i915_query@hwconfig_table.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#6245])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb4/igt@i915_query@hwconfig_table.html

  * igt@i915_selftest@live@sanitycheck:
    - shard-snb:          [PASS][29] -> [SKIP][30] ([fdo#109271])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-snb6/igt@i915_selftest@live@sanitycheck.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-snb7/igt@i915_selftest@live@sanitycheck.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#180])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-apl1/igt@i915_suspend@debugfs-reader.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl6/igt@i915_suspend@debugfs-reader.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#5286])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb3/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#5286])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb8/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#111614])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#110725] / [fdo#111614])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#110723])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#111615])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

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

  * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) +10 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

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

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#3886])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#111615] / [i915#3689])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109278]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb5/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#3689])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html

  * igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
    - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html

  * igt@kms_chamelium@hdmi-hpd-storm:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl1/igt@kms_chamelium@hdmi-hpd-storm.html

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

  * igt@kms_color_chamelium@ctm-limited-range:
    - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-glk6/igt@kms_color_chamelium@ctm-limited-range.html
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@kms_color_chamelium@ctm-limited-range.html
    - shard-snb:          NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-snb6/igt@kms_color_chamelium@ctm-limited-range.html

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

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111825])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb@varying-size:
    - shard-kbl:          NOTRUN -> [SKIP][55] ([fdo#109271]) +233 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@kms_cursor_legacy@cursorb-vs-flipb@varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
    - shard-tglb:         [PASS][56] -> [FAIL][57] ([i915#2346])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#4103])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html
    - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#4103])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#3555] / [i915#3828])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb7/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109274]) +2 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb3/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([i915#2672]) +7 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) +9 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#6497]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html

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

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-kbl:          [PASS][68] -> [DMESG-WARN][69] ([i915#180]) +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][70] ([i915#265])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][72] ([fdo#108145] / [i915#265])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-4:
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271]) +26 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-glk2/igt@kms_plane_multiple@atomic-pipe-b-tiling-4.html
    - shard-tglb:         NOTRUN -> [SKIP][74] ([i915#5288])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb5/igt@kms_plane_multiple@atomic-pipe-b-tiling-4.html

  * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1:
    - shard-iclb:         [PASS][75] -> [SKIP][76] ([i915#5176]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-kbl:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) +2 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-iclb:         [PASS][79] -> [SKIP][80] ([fdo#109642] / [fdo#111068] / [i915#658])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb8/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-iclb:         [PASS][81] -> [SKIP][82] ([fdo#109441]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb4/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-iclb:         [PASS][83] -> [SKIP][84] ([i915#5519]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglb:         [PASS][85] -> [SKIP][86] ([i915#5519])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#533])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-kbl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2437])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@kms_writeback@writeback-fb-id.html

  * igt@prime_nv_api@i915_self_import_to_different_fd:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([fdo#109291])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@prime_nv_api@i915_self_import_to_different_fd.html
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109291])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@prime_nv_api@i915_self_import_to_different_fd.html

  * igt@sysfs_clients@fair-7:
    - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl4/igt@sysfs_clients@fair-7.html

  * igt@sysfs_clients@recycle-many:
    - shard-kbl:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2994]) +3 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@smoketest:
    - shard-iclb:         [FAIL][93] ([i915#5099]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb2/igt@gem_ctx_persistence@smoketest.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb3/igt@gem_ctx_persistence@smoketest.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][95] ([i915#3070]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb5/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][97] ([i915#4525]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb7/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [FAIL][99] ([i915#2846]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl4/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [FAIL][101] ([i915#2842]) -> [PASS][102] +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [DMESG-WARN][103] ([i915#180]) -> [PASS][104] +2 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@i915_suspend@forcewake.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl4/igt@i915_suspend@forcewake.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
    - shard-kbl:          [FAIL][105] ([i915#1188]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][107] ([fdo#109441]) -> [PASS][108] +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb4/igt@kms_psr@psr2_sprite_plane_move.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-apl:          [DMESG-WARN][109] ([i915#180]) -> [PASS][110] +2 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [FAIL][111] ([i915#5784]) -> [TIMEOUT][112] ([i915#3063])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb3/igt@gem_eio@unwedge-stress.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][113] ([i915#4525]) -> [FAIL][114] ([i915#6117])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][115] ([fdo#109271]) -> [FAIL][116] ([i915#2842])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         [SKIP][117] ([fdo#109300]) -> [SKIP][118] ([i915#1063])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-tglb3/igt@kms_content_protection@mei_interface.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-tglb2/igt@kms_content_protection@mei_interface.html
    - shard-iclb:         [SKIP][119] ([fdo#109300]) -> [SKIP][120] ([fdo#109300] / [fdo#111066])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb7/igt@kms_content_protection@mei_interface.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb5/igt@kms_content_protection@mei_interface.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [FAIL][121] ([i915#4767]) -> [INCOMPLETE][122] ([i915#180] / [i915#4939])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-iclb:         [SKIP][123] ([i915#2920]) -> [SKIP][124] ([fdo#111068] / [i915#658])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl1/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl7/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl7/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl4/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl7/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6620/shard-kbl7/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl1/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/shard-kbl7/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6620 -> IGTPW_7631

  CI-20190529: 20190529
  CI_DRM_11981: 6f207fdd93a13166b4adfe2f3a2972a9c632e757 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7631: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7631/index.html
  IGT_6620: 90549cfba1606b695fe60f78ef87b7d54586eab7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
  2022-08-10 14:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2022-08-10 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2022-08-17  5:36 ` Karthik B S
  2022-08-18  6:23 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Karthik B S @ 2022-08-17  5:36 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev

On 8/10/2022 5:50 PM, Bhanuprakash Modem wrote:
> Convert the existing subtests to dynamic subtests at pipe/output
> level. And create an array of structures to populate subtests to
> avoid code duplication.
>
> This patch will also do some clenup to have a single function for
> all subtests.
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
>   tests/kms_plane_cursor.c | 159 ++++++++++++++-------------------------
>   1 file changed, 56 insertions(+), 103 deletions(-)
>
> diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c
> index 73085cc8..247d6715 100644
> --- a/tests/kms_plane_cursor.c
> +++ b/tests/kms_plane_cursor.c
> @@ -30,6 +30,12 @@
>    * - DRM index indicates z-ordering, higher index = higher z-order
>    */
>   
> +enum {
> +	TEST_PRIMARY = 0,
> +	TEST_OVERLAY = 1 << 0,
> +	TEST_VIEWPORT = 1 << 1,
> +};
> +
>   typedef struct {
>   	int x;
>   	int y;
> @@ -58,18 +64,16 @@ typedef struct data {
>   } data_t;
>   
>   /* Common test setup. */
> -static void test_init(data_t *data, enum pipe pipe_id)
> +static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output)
>   {
>   	igt_display_t *display = &data->display;
>   
>   	data->pipe_id = pipe_id;
>   	data->pipe = &data->display.pipes[data->pipe_id];
> +	data->output = output;
>   
>   	igt_display_reset(display);
>   
> -	data->output = igt_get_single_output_for_pipe(&data->display, pipe_id);
> -	igt_require(data->output);
> -
>   	data->mode = igt_output_get_mode(data->output);
>   
>   	data->primary = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> @@ -202,92 +206,25 @@ static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
>   	}
>   }
>   
> -/*
> - * Tests atomic cursor positioning on a primary and overlay plane.
> - * Assumes the cursor can be placed on top of the overlay.
> - */
> -static void test_cursor_overlay(data_t *data, int size, enum pipe pipe_id)
> -{
> -	igt_fb_t pfb, ofb, cfb;
> -	int sw, sh;
> -
> -	test_init(data, pipe_id);
> -	igt_require(data->overlay);
> -
> -	sw = data->mode->hdisplay;
> -	sh = data->mode->vdisplay;
> -
> -	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
> -			    1.0, 1.0, 1.0, &pfb);
> -
> -	igt_create_color_fb(data->drm_fd, data->or.w, data->or.h,
> -			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
> -
> -	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
> -			    1.0, 0.0, 1.0, &cfb);
> -
> -	igt_plane_set_fb(data->primary, &pfb);
> -	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> -
> -	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
> -
> -	test_fini(data);
> -
> -	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &ofb);
> -	igt_remove_fb(data->drm_fd, &pfb);
> -}
> -
> -/* Tests atomic cursor positioning on a primary plane. */
> -static void test_cursor_primary(data_t *data, int size, enum pipe pipe_id)
> -{
> -	igt_fb_t pfb, cfb;
> -	int sw, sh;
> -
> -	test_init(data, pipe_id);
> -
> -	sw = data->mode->hdisplay;
> -	sh = data->mode->vdisplay;
> -
> -	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
> -			    1.0, 1.0, 1.0, &pfb);
> -
> -	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
> -			    1.0, 0.0, 1.0, &cfb);
> -
> -	igt_plane_set_fb(data->primary, &pfb);
> -	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> -
> -	test_cursor_spots(data, &pfb, NULL, &cfb, &data->or, size);
> -
> -	test_fini(data);
> -
> -	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &pfb);
> -}
> -
> -/*
> - * Tests atomic cursor positioning on a primary and overlay plane.
> - * The overlay's buffer is larger than the viewport actually used
> - * for display.
> - */
> -static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
> +static void test_cursor(data_t *data, int size, unsigned int flags)
>   {
>   	igt_fb_t pfb, ofb, cfb;
>   	int sw, sh;
>   	int pad = 128;
>   
> -	test_init(data, pipe_id);
> -	igt_require(data->overlay);
> -
>   	sw = data->mode->hdisplay;
>   	sh = data->mode->vdisplay;
>   
>   	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
>   			    1.0, 1.0, 1.0, &pfb);
>   
> -	igt_create_color_fb(data->drm_fd, data->or.w + pad, data->or.h + pad,
> -			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
> +	if (flags & TEST_OVERLAY) {
> +		int width = (flags & TEST_VIEWPORT) ? data->or.w + pad : data->or.w;
> +		int height = (flags & TEST_VIEWPORT) ? data->or.h + pad : data->or.h;
> +
> +		igt_create_color_fb(data->drm_fd, width, height,
> +				    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
> +	}
>   
>   	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
>   			    1.0, 0.0, 1.0, &cfb);
> @@ -295,12 +232,11 @@ static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
>   	igt_plane_set_fb(data->primary, &pfb);
>   	igt_display_commit2(&data->display, COMMIT_ATOMIC);
>   
> -	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
> -
> -	test_fini(data);
> +	test_cursor_spots(data, &pfb, (flags & TEST_OVERLAY)? &ofb : NULL, &cfb, &data->or, size);
>   
>   	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &ofb);
> +	if (flags & TEST_OVERLAY)
> +		igt_remove_fb(data->drm_fd, &ofb);

Hi,

Could you please move the fb cleanup part also to test_fini as we've 
multiple checks before this where test could fail and if test fails then 
we will miss the fb cleanup.

>   	igt_remove_fb(data->drm_fd, &pfb);
>   }
>   
> @@ -309,7 +245,21 @@ igt_main
>   	static const int cursor_sizes[] = { 64, 128, 256 };
>   	data_t data = {};
>   	enum pipe pipe;
> -	int i;
> +	igt_output_t *output;
> +	int i, j;
> +	struct {
> +		const char *name;
> +		unsigned int flags;
> +		const char *desc;
> +	} tests[] = {
> +		{ "primary", TEST_PRIMARY,
> +		  "Tests atomic cursor positioning on primary plane" },
> +		{ "overlay", TEST_PRIMARY | TEST_OVERLAY,
> +		  "Tests atomic cursor positioning on primary plane and overlay plane" },
> +		{ "viewport", TEST_PRIMARY | TEST_OVERLAY | TEST_VIEWPORT,
> +		  "Tests atomic cursor positioning on primary plane and overlay plane "
> +		  "with buffer larger than viewport used for display" },
> +	};
>   
>   	igt_fixture {
>   		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -321,26 +271,29 @@ igt_main
>   		igt_display_require_output(&data.display);
>   	}
>   
> -	for_each_pipe_static(pipe)
> -		for (i = 0; i < ARRAY_SIZE(cursor_sizes); ++i) {
> -			int size = cursor_sizes[i];
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane");
> -			igt_subtest_f("pipe-%s-overlay-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_overlay(&data, size, pipe);
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane");
> -			igt_subtest_f("pipe-%s-primary-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_primary(&data, size, pipe);
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane"
> -				"with buffer larger than viewport used for display");
> -			igt_subtest_f("pipe-%s-viewport-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_viewport(&data, size, pipe);
> +	for (i = 0; i < ARRAY_SIZE(tests); i++) {
> +		igt_describe_f("%s", tests[i].desc);
> +		igt_subtest_with_dynamic_f("%s", tests[i].name) {
> +			for_each_pipe_with_single_output(&data.display, pipe, output) {
> +				test_init(&data, pipe, output);
> +
> +				if ((tests[i].flags & TEST_OVERLAY) && !data.overlay)
> +					goto cleanup;

Is it possible to populate data.overlay outside test_init? So that we 
can completely avoid initializing other things in test_init and also 
inturn avoid calling test_fini?

Thanks,
Karthik.B.S
> +
> +				for (j = 0; j < ARRAY_SIZE(cursor_sizes); j++) {
> +					int size = cursor_sizes[j];
> +
> +					igt_dynamic_f("pipe-%s-%s-size-%d",
> +						      kmstest_pipe_name(pipe),
> +						      igt_output_name(output),
> +						      size)
> +						test_cursor(&data, size, tests[i].flags);
> +				}
> +cleanup:
> +				test_fini(&data);
> +			}
>   		}
> +	}
>   
>   	igt_fixture {
>   		igt_display_fini(&data.display);


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

* [igt-dev] [i-g-t V2] tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2022-08-17  5:36 ` [igt-dev] [i-g-t] " Karthik B S
@ 2022-08-18  6:23 ` Bhanuprakash Modem
  2022-08-30  3:29   ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem
  2022-08-18  7:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev2) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Bhanuprakash Modem @ 2022-08-18  6:23 UTC (permalink / raw)
  To: igt-dev, karthik.b.s

Convert the existing subtests to dynamic subtests at pipe/output
level. And create an array of structures to populate subtests to
avoid code duplication.

This patch will also do some clenup to have a single function for
all subtests.

V2:
- Populate overlay outside test_init()
- New function for fb cleanup

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_plane_cursor.c | 173 ++++++++++++++++-----------------------
 1 file changed, 69 insertions(+), 104 deletions(-)

diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c
index 73085cc8..900833b1 100644
--- a/tests/kms_plane_cursor.c
+++ b/tests/kms_plane_cursor.c
@@ -30,6 +30,12 @@
  * - DRM index indicates z-ordering, higher index = higher z-order
  */
 
+enum {
+	TEST_PRIMARY = 0,
+	TEST_OVERLAY = 1 << 0,
+	TEST_VIEWPORT = 1 << 1,
+};
+
 typedef struct {
 	int x;
 	int y;
@@ -58,18 +64,16 @@ typedef struct data {
 } data_t;
 
 /* Common test setup. */
-static void test_init(data_t *data, enum pipe pipe_id)
+static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output)
 {
 	igt_display_t *display = &data->display;
 
 	data->pipe_id = pipe_id;
 	data->pipe = &data->display.pipes[data->pipe_id];
+	data->output = output;
 
 	igt_display_reset(display);
 
-	data->output = igt_get_single_output_for_pipe(&data->display, pipe_id);
-	igt_require(data->output);
-
 	data->mode = igt_output_get_mode(data->output);
 
 	data->primary = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
@@ -202,92 +206,35 @@ static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
 	}
 }
 
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * Assumes the cursor can be placed on top of the overlay.
- */
-static void test_cursor_overlay(data_t *data, int size, enum pipe pipe_id)
+static void test_cleanup(int drm_fd, igt_fb_t *pfb, igt_fb_t *ofb, igt_fb_t *cfb)
 {
-	igt_fb_t pfb, ofb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, data->or.w, data->or.h,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
-	igt_remove_fb(data->drm_fd, &pfb);
-}
-
-/* Tests atomic cursor positioning on a primary plane. */
-static void test_cursor_primary(data_t *data, int size, enum pipe pipe_id)
-{
-	igt_fb_t pfb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, NULL, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &pfb);
+	igt_remove_fb(drm_fd, cfb);
+	igt_remove_fb(drm_fd, ofb);
+	igt_remove_fb(drm_fd, pfb);
 }
 
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * The overlay's buffer is larger than the viewport actually used
- * for display.
- */
-static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
+static void test_cursor(data_t *data, int size,
+			igt_fb_t pfb, igt_fb_t ofb, igt_fb_t cfb,
+			unsigned int flags)
 {
-	igt_fb_t pfb, ofb, cfb;
 	int sw, sh;
 	int pad = 128;
 
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
 	sw = data->mode->hdisplay;
 	sh = data->mode->vdisplay;
 
+	test_cleanup(data->drm_fd, &pfb, &ofb, &cfb);
+
 	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
 			    1.0, 1.0, 1.0, &pfb);
 
-	igt_create_color_fb(data->drm_fd, data->or.w + pad, data->or.h + pad,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
+	if (flags & TEST_OVERLAY) {
+		int width = (flags & TEST_VIEWPORT) ? data->or.w + pad : data->or.w;
+		int height = (flags & TEST_VIEWPORT) ? data->or.h + pad : data->or.h;
+
+		igt_create_color_fb(data->drm_fd, width, height,
+				    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
+	}
 
 	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
 			    1.0, 0.0, 1.0, &cfb);
@@ -295,13 +242,7 @@ static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
 	igt_plane_set_fb(data->primary, &pfb);
 	igt_display_commit2(&data->display, COMMIT_ATOMIC);
 
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
-	igt_remove_fb(data->drm_fd, &pfb);
+	test_cursor_spots(data, &pfb, (flags & TEST_OVERLAY)? &ofb : NULL, &cfb, &data->or, size);
 }
 
 igt_main
@@ -309,7 +250,21 @@ igt_main
 	static const int cursor_sizes[] = { 64, 128, 256 };
 	data_t data = {};
 	enum pipe pipe;
-	int i;
+	igt_output_t *output;
+	int i, j;
+	struct {
+		const char *name;
+		unsigned int flags;
+		const char *desc;
+	} tests[] = {
+		{ "primary", TEST_PRIMARY,
+		  "Tests atomic cursor positioning on primary plane" },
+		{ "overlay", TEST_PRIMARY | TEST_OVERLAY,
+		  "Tests atomic cursor positioning on primary plane and overlay plane" },
+		{ "viewport", TEST_PRIMARY | TEST_OVERLAY | TEST_VIEWPORT,
+		  "Tests atomic cursor positioning on primary plane and overlay plane "
+		  "with buffer larger than viewport used for display" },
+	};
 
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -321,26 +276,36 @@ igt_main
 		igt_display_require_output(&data.display);
 	}
 
-	for_each_pipe_static(pipe)
-		for (i = 0; i < ARRAY_SIZE(cursor_sizes); ++i) {
-			int size = cursor_sizes[i];
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane");
-			igt_subtest_f("pipe-%s-overlay-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_overlay(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane");
-			igt_subtest_f("pipe-%s-primary-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_primary(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane"
-				"with buffer larger than viewport used for display");
-			igt_subtest_f("pipe-%s-viewport-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_viewport(&data, size, pipe);
+	for (i = 0; i < ARRAY_SIZE(tests); i++) {
+		igt_describe_f("%s", tests[i].desc);
+		igt_subtest_with_dynamic_f("%s", tests[i].name) {
+			for_each_pipe_with_single_output(&data.display, pipe, output) {
+				if ((tests[i].flags & TEST_OVERLAY) &&
+				    !igt_pipe_get_plane_type(&data.display.pipes[pipe],
+							     DRM_PLANE_TYPE_OVERLAY))
+					continue;
+
+				test_init(&data, pipe, output);
+
+				for (j = 0; j < ARRAY_SIZE(cursor_sizes); j++) {
+					int size = cursor_sizes[j];
+					igt_fb_t pfb, ofb, cfb;
+
+					igt_dynamic_f("pipe-%s-%s-size-%d",
+						      kmstest_pipe_name(pipe),
+						      igt_output_name(output),
+						      size)
+						test_cursor(&data, size,
+							    pfb, ofb, cfb,
+							    tests[i].flags);
+
+					test_cleanup(data.drm_fd, &pfb, &ofb, &cfb);
+				}
+
+				test_fini(&data);
+			}
 		}
+	}
 
 	igt_fixture {
 		igt_display_fini(&data.display);
-- 
2.35.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev2)
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
                   ` (3 preceding siblings ...)
  2022-08-18  6:23 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem
@ 2022-08-18  7:05 ` Patchwork
  2022-08-18 15:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-18  7:05 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic (rev2)
URL   : https://patchwork.freedesktop.org/series/107119/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11996 -> IGTPW_7657
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (31 -> 33)
------------------------------

  Additional (2): bat-rpls-1 bat-adls-5 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_suspend@basic-s2idle-without-i915:
    - fi-bdw-gvtdvm:      NOTRUN -> [INCOMPLETE][1] ([i915#4817])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-bdw-gvtdvm/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - fi-bdw-gvtdvm:      NOTRUN -> [SKIP][2] ([fdo#109271]) +19 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-bdw-gvtdvm/igt@kms_pipe_crc_basic@nonblocking-crc.html

  
#### Possible fixes ####

  * igt@i915_module_load@load:
    - fi-bdw-gvtdvm:      [DMESG-WARN][3] ([i915#6540]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-bdw-gvtdvm/igt@i915_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-bdw-gvtdvm/igt@i915_module_load@load.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-6:          [DMESG-FAIL][5] ([i915#4494] / [i915#4957]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/bat-dg1-6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-bdw-gvtdvm:      [DMESG-WARN][7] ([i915#5922]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-bdw-gvtdvm/igt@kms_force_connector_basic@force-connector-state.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-bdw-gvtdvm/igt@kms_force_connector_basic@force-connector-state.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - fi-skl-6700k2:      [INCOMPLETE][9] ([i915#4939]) -> [INCOMPLETE][10] ([i915#4939] / [i915#6598])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-skl-6700k2/igt@gem_exec_suspend@basic-s3@smem.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-skl-6700k2/igt@gem_exec_suspend@basic-s3@smem.html
    - fi-bdw-5557u:       [INCOMPLETE][11] ([i915#146]) -> [INCOMPLETE][12] ([i915#146] / [i915#6598])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@runner@aborted:
    - fi-cfl-8109u:       [FAIL][13] ([i915#4312]) -> [FAIL][14] ([i915#4312] / [i915#6599])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-cfl-8109u/igt@runner@aborted.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-cfl-8109u/igt@runner@aborted.html
    - fi-adl-ddr5:        [FAIL][15] ([i915#4312]) -> [FAIL][16] ([i915#4312] / [i915#6599])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/fi-adl-ddr5/igt@runner@aborted.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/fi-adl-ddr5/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#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5922]: https://gitlab.freedesktop.org/drm/intel/issues/5922
  [i915#6540]: https://gitlab.freedesktop.org/drm/intel/issues/6540
  [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
  [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6630 -> IGTPW_7657

  CI-20190529: 20190529
  CI_DRM_11996: 79088b3740cb8192a131fae2c0d335b456557088 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7657: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/index.html
  IGT_6630: b5e2222c9a988015bdf237e6ebb9f5b6d87ac7e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

+igt@kms_plane_cursor@overlay
+igt@kms_plane_cursor@primary
+igt@kms_plane_cursor@viewport
-igt@kms_plane_cursor@pipe-a-overlay-size-64
-igt@kms_plane_cursor@pipe-a-overlay-size-128
-igt@kms_plane_cursor@pipe-a-overlay-size-256
-igt@kms_plane_cursor@pipe-a-primary-size-64
-igt@kms_plane_cursor@pipe-a-primary-size-128
-igt@kms_plane_cursor@pipe-a-primary-size-256
-igt@kms_plane_cursor@pipe-a-viewport-size-64
-igt@kms_plane_cursor@pipe-a-viewport-size-128
-igt@kms_plane_cursor@pipe-a-viewport-size-256
-igt@kms_plane_cursor@pipe-b-overlay-size-64
-igt@kms_plane_cursor@pipe-b-overlay-size-128
-igt@kms_plane_cursor@pipe-b-overlay-size-256
-igt@kms_plane_cursor@pipe-b-primary-size-64
-igt@kms_plane_cursor@pipe-b-primary-size-128
-igt@kms_plane_cursor@pipe-b-primary-size-256
-igt@kms_plane_cursor@pipe-b-viewport-size-64
-igt@kms_plane_cursor@pipe-b-viewport-size-128
-igt@kms_plane_cursor@pipe-b-viewport-size-256
-igt@kms_plane_cursor@pipe-c-overlay-size-64
-igt@kms_plane_cursor@pipe-c-overlay-size-128
-igt@kms_plane_cursor@pipe-c-overlay-size-256
-igt@kms_plane_cursor@pipe-c-primary-size-64
-igt@kms_plane_cursor@pipe-c-primary-size-128
-igt@kms_plane_cursor@pipe-c-primary-size-256
-igt@kms_plane_cursor@pipe-c-viewport-size-64
-igt@kms_plane_cursor@pipe-c-viewport-size-128
-igt@kms_plane_cursor@pipe-c-viewport-size-256
-igt@kms_plane_cursor@pipe-d-overlay-size-64
-igt@kms_plane_cursor@pipe-d-overlay-size-128
-igt@kms_plane_cursor@pipe-d-overlay-size-256
-igt@kms_plane_cursor@pipe-d-primary-size-64
-igt@kms_plane_cursor@pipe-d-primary-size-128
-igt@kms_plane_cursor@pipe-d-primary-size-256
-igt@kms_plane_cursor@pipe-d-viewport-size-64
-igt@kms_plane_cursor@pipe-d-viewport-size-128
-igt@kms_plane_cursor@pipe-d-viewport-size-256
-igt@kms_plane_cursor@pipe-e-overlay-size-64
-igt@kms_plane_cursor@pipe-e-overlay-size-128
-igt@kms_plane_cursor@pipe-e-overlay-size-256
-igt@kms_plane_cursor@pipe-e-primary-size-64
-igt@kms_plane_cursor@pipe-e-primary-size-128
-igt@kms_plane_cursor@pipe-e-primary-size-256
-igt@kms_plane_cursor@pipe-e-viewport-size-64
-igt@kms_plane_cursor@pipe-e-viewport-size-128
-igt@kms_plane_cursor@pipe-e-viewport-size-256
-igt@kms_plane_cursor@pipe-f-overlay-size-64
-igt@kms_plane_cursor@pipe-f-overlay-size-128
-igt@kms_plane_cursor@pipe-f-overlay-size-256
-igt@kms_plane_cursor@pipe-f-primary-size-64
-igt@kms_plane_cursor@pipe-f-primary-size-128
-igt@kms_plane_cursor@pipe-f-primary-size-256
-igt@kms_plane_cursor@pipe-f-viewport-size-64
-igt@kms_plane_cursor@pipe-f-viewport-size-128
-igt@kms_plane_cursor@pipe-f-viewport-size-256

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_cursor: Convert tests to dynamic (rev2)
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
                   ` (4 preceding siblings ...)
  2022-08-18  7:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev2) Patchwork
@ 2022-08-18 15:49 ` Patchwork
  2022-08-30  4:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev3) Patchwork
  2022-08-31 11:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-18 15:49 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic (rev2)
URL   : https://patchwork.freedesktop.org/series/107119/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11996_full -> IGTPW_7657_full
====================================================

Summary
-------

  **FAILURE**

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

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

  Additional (3): shard-rkl shard-dg1 shard-tglu 
  Missing    (2): pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
    - shard-apl:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
    - shard-snb:          [PASS][3] -> [INCOMPLETE][4] +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-snb6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html

  * {igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64} (NEW):
    - shard-kbl:          NOTRUN -> [INCOMPLETE][5] +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64.html
    - shard-apl:          NOTRUN -> [FAIL][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64.html

  * {igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64} (NEW):
    - shard-tglb:         NOTRUN -> [CRASH][7] +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64.html

  * {igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64} (NEW):
    - {shard-dg1}:        NOTRUN -> [FAIL][8] +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-dg1-19/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64.html

  * {igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-64} (NEW):
    - shard-snb:          NOTRUN -> [CRASH][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb6/igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-64.html

  * {igt@kms_plane_cursor@primary@pipe-a-dp-1-size-64} (NEW):
    - shard-apl:          NOTRUN -> [CRASH][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl7/igt@kms_plane_cursor@primary@pipe-a-dp-1-size-64.html

  * {igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64} (NEW):
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-dg1-19/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64.html

  * {igt@kms_plane_cursor@primary@pipe-a-vga-1-size-64} (NEW):
    - shard-snb:          NOTRUN -> [FAIL][12] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb2/igt@kms_plane_cursor@primary@pipe-a-vga-1-size-64.html

  * {igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-64} (NEW):
    - shard-apl:          NOTRUN -> [INCOMPLETE][13]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl3/igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-64.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11996_full and IGTPW_7657_full:

### New IGT tests (15) ###

  * igt@kms_plane_cursor@overlay:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64:
    - Statuses : 1 fail(s) 1 incomplete(s)
    - Exec time: [0.0, 0.13] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64:
    - Statuses : 1 crash(s)
    - Exec time: [0.01] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 fail(s)
    - Exec time: [0.04] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-64:
    - Statuses : 1 crash(s)
    - Exec time: [0.01] s

  * igt@kms_plane_cursor@primary:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-64:
    - Statuses : 1 crash(s) 1 incomplete(s)
    - Exec time: [0.0, 0.03] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64:
    - Statuses : 1 crash(s)
    - Exec time: [0.01] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 incomplete(s)
    - Exec time: [0.0] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-64:
    - Statuses : 1 fail(s)
    - Exec time: [0.13] s

  * igt@kms_plane_cursor@viewport:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-64:
    - Statuses : 2 incomplete(s)
    - Exec time: [0.0] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-64:
    - Statuses : 1 crash(s)
    - Exec time: [0.01] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 fail(s)
    - Exec time: [0.01] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-64:
    - Statuses : 1 fail(s)
    - Exec time: [0.11] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-snb:          NOTRUN -> [DMESG-WARN][14] ([i915#4991])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@gem_create@create-massive.html
    - shard-apl:          NOTRUN -> [DMESG-WARN][15] ([i915#4991])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@gem_create@create-massive.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][16] ([i915#4991])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@gem_create@create-massive.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          [PASS][17] -> [INCOMPLETE][18] ([i915#6598] / [i915#6601])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
    - shard-apl:          [PASS][19] -> [INCOMPLETE][20] ([i915#6598])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl1/igt@gem_ctx_isolation@preservation-s3@rcs0.html

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

  * igt@gem_eio@in-flight-suspend:
    - shard-apl:          NOTRUN -> [INCOMPLETE][22] ([i915#6598]) +2 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl8/igt@gem_eio@in-flight-suspend.html

  * igt@gem_eio@reset-stress:
    - shard-tglb:         [PASS][23] -> [FAIL][24] ([i915#5784])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-tglb5/igt@gem_eio@reset-stress.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@gem_eio@reset-stress.html

  * igt@gem_exec_endless@dispatch@vcs1:
    - shard-tglb:         [PASS][25] -> [INCOMPLETE][26] ([i915#3778])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-tglb3/igt@gem_exec_endless@dispatch@vcs1.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@gem_exec_endless@dispatch@vcs1.html

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

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

  * igt@gem_lmem_swapping@verify:
    - shard-kbl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@gem_lmem_swapping@verify.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#4613])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) +5 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-snb:          NOTRUN -> [SKIP][33] ([fdo#109271]) +346 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_softpin@evict-single-offset:
    - shard-apl:          NOTRUN -> [FAIL][34] ([i915#4171])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@gem_softpin@evict-single-offset.html

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

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][36] ([i915#180]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-kbl:          [PASS][37] -> [DMESG-WARN][38] ([i915#5566] / [i915#716])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl1/igt@gen9_exec_parse@allowed-single.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#2527] / [i915#2856])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_module_load@reload-no-display:
    - shard-apl:          NOTRUN -> [FAIL][40] ([i915#6597])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl7/igt@i915_module_load@reload-no-display.html
    - shard-snb:          NOTRUN -> [FAIL][41] ([i915#6597])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb2/igt@i915_module_load@reload-no-display.html

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

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-kbl:          NOTRUN -> [FAIL][43] ([i915#6559])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#5286]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111614]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#3689] / [i915#3886]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +9 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#6095])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111615] / [i915#3689])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3689]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_chamelium@hdmi-edid-read:
    - shard-apl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl7/igt@kms_chamelium@hdmi-edid-read.html
    - shard-snb:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +11 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-storm-disable:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_chamelium@hdmi-hpd-storm-disable.html

  * igt@kms_color_chamelium@gamma:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +11 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@kms_color_chamelium@gamma.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][57] ([i915#1319])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl8/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#1063])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_content_protection@legacy.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][59] ([i915#1319])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@kms_content_protection@legacy.html

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

  * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825]) +6 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#5287]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          NOTRUN -> [INCOMPLETE][64] ([i915#4839] / [i915#4939] / [i915#6598])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([i915#2672])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109280] / [fdo#111825]) +14 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-snb:          NOTRUN -> [INCOMPLETE][68] ([i915#6598])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb5/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#6497]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
    - shard-kbl:          NOTRUN -> [SKIP][70] ([fdo#109271]) +221 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
    - shard-kbl:          NOTRUN -> [FAIL][71] ([i915#1188])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#109289]) +2 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

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

  * igt@kms_plane_lowres@tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([fdo#112054] / [i915#5288])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_lowres@tiling-none@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#3536]) +3 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_plane_lowres@tiling-none@pipe-c-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#5176]) +3 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][78] ([i915#5235]) +3 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-edp-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-kbl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) +2 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-apl:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658]) +2 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_primary_render:
    - shard-tglb:         NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467]) +2 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@kms_psr@psr2_primary_render.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271]) +276 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl3/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-snb:          [PASS][83] -> [INCOMPLETE][84] ([i915#4939] / [i915#6598])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-snb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
    - shard-apl:          [PASS][85] -> [INCOMPLETE][86] ([i915#4939] / [i915#6598]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [PASS][87] -> [DMESG-WARN][88] ([i915#180]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-apl:          NOTRUN -> [INCOMPLETE][89] ([i915#4939] / [i915#6598])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
    - shard-snb:          NOTRUN -> [INCOMPLETE][90] ([i915#4939] / [i915#6598])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@kms_vblank@pipe-d-wait-idle.html
    - shard-apl:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#533])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2530]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb5/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@perf_pmu@rc6-suspend:
    - shard-snb:          [PASS][94] -> [INCOMPLETE][95] ([i915#4939])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-snb4/igt@perf_pmu@rc6-suspend.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb6/igt@perf_pmu@rc6-suspend.html
    - shard-apl:          [PASS][96] -> [INCOMPLETE][97] ([i915#4939])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl3/igt@perf_pmu@rc6-suspend.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@perf_pmu@rc6-suspend.html

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

  * igt@sysfs_clients@fair-7:
    - shard-kbl:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2994]) +2 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@sysfs_clients@fair-7.html
    - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#2994]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@sysfs_clients@fair-7.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-kbl:          [DMESG-WARN][101] ([i915#180]) -> [PASS][102] +3 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_eio@kms:
    - shard-tglb:         [FAIL][103] ([i915#5784]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-tglb5/igt@gem_eio@kms.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-tglb7/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [FAIL][105] ([i915#2846]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-kbl:          [FAIL][107] ([i915#2842]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
    - shard-apl:          [FAIL][109] ([i915#2842]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@i915_pm_rpm@system-suspend-modeset:
    - shard-kbl:          [INCOMPLETE][111] ([i915#4939] / [i915#6598]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl4/igt@i915_pm_rpm@system-suspend-modeset.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@i915_pm_rpm@system-suspend-modeset.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [INCOMPLETE][113] ([i915#4939] / [i915#6598]) -> [PASS][114] +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_hdr@bpc-switch@pipe-a-dp-1:
    - shard-kbl:          [FAIL][115] ([i915#1188]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl4/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html

  
#### Warnings ####

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [INCOMPLETE][117] ([i915#6598]) -> [INCOMPLETE][118] ([i915#180] / [i915#6598])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [FAIL][119] ([i915#4767]) -> [INCOMPLETE][120] ([i915#180] / [i915#4939] / [i915#6598])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@runner@aborted:
    - shard-apl:          [FAIL][121] ([i915#4312] / [i915#6599]) -> [FAIL][122] ([i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-apl2/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-apl4/igt@runner@aborted.html
    - shard-snb:          [FAIL][123] ([i915#4312]) -> [FAIL][124] ([i915#3002] / [i915#4312])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-snb2/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-snb4/igt@runner@aborted.html
    - shard-kbl:          ([FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92]) -> ([FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716] / [i915#92])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl1/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl1/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11996/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl4/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/shard-kbl7/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#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
  [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
  [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6458]: https://gitlab.freedesktop.org/drm/intel/issues/6458
  [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463
  [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6597]: https://gitlab.freedesktop.org/drm/intel/issues/6597
  [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
  [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
  [i915#6601]: https://gitlab.freedesktop.org/drm/intel/issues/6601
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6630 -> IGTPW_7657
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11996: 79088b3740cb8192a131fae2c0d335b456557088 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7657: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7657/index.html
  IGT_6630: b5e2222c9a988015bdf237e6ebb9f5b6d87ac7e1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] [i-g-t V3] tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-18  6:23 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem
@ 2022-08-30  3:29   ` Bhanuprakash Modem
  2022-09-01  4:22     ` Karthik B S
  0 siblings, 1 reply; 11+ messages in thread
From: Bhanuprakash Modem @ 2022-08-30  3:29 UTC (permalink / raw)
  To: igt-dev, karthik.b.s

Convert the existing subtests to dynamic subtests at pipe/output
level. And create an array of structures to populate subtests to
avoid code duplication.

This patch will also do some clenup to have a single function for
all subtests.

V2:
- Populate overlay outside test_init()
- New function for fb cleanup
V3:
- Fix crash in CI

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_plane_cursor.c | 194 ++++++++++++++++-----------------------
 1 file changed, 80 insertions(+), 114 deletions(-)

diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c
index 73085cc8..6b7e5cef 100644
--- a/tests/kms_plane_cursor.c
+++ b/tests/kms_plane_cursor.c
@@ -30,6 +30,12 @@
  * - DRM index indicates z-ordering, higher index = higher z-order
  */
 
+enum {
+	TEST_PRIMARY = 0,
+	TEST_OVERLAY = 1 << 0,
+	TEST_VIEWPORT = 1 << 1,
+};
+
 typedef struct {
 	int x;
 	int y;
@@ -52,24 +58,25 @@ typedef struct data {
 	igt_pipe_t *pipe;
 	igt_pipe_crc_t *pipe_crc;
 	drmModeModeInfo *mode;
+	igt_fb_t pfb;
+	igt_fb_t ofb;
+	igt_fb_t cfb;
 	enum pipe pipe_id;
 	int drm_fd;
 	rect_t or;
 } data_t;
 
 /* Common test setup. */
-static void test_init(data_t *data, enum pipe pipe_id)
+static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output)
 {
 	igt_display_t *display = &data->display;
 
 	data->pipe_id = pipe_id;
 	data->pipe = &data->display.pipes[data->pipe_id];
+	data->output = output;
 
 	igt_display_reset(display);
 
-	data->output = igt_get_single_output_for_pipe(&data->display, pipe_id);
-	igt_require(data->output);
-
 	data->mode = igt_output_get_mode(data->output);
 
 	data->primary = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
@@ -119,18 +126,21 @@ static void draw_color(igt_fb_t *fb, double r, double g, double b)
  * Places the cursor where the magenta square should be with a magenta FB.
  * Takes this as the test CRC and compares it to the reference.
  */
-static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
-			    igt_fb_t *cfb, const rect_t *or, int x, int y)
+static void test_cursor_pos(data_t *data, int x, int y, unsigned int flags)
 {
 	igt_crc_t ref_crc, test_crc;
 	cairo_t *cr;
+	igt_fb_t *pfb = &data->pfb;
+	igt_fb_t *ofb = &data->ofb;
+	igt_fb_t *cfb = &data->cfb;
 	int cw = cfb->width;
 	int ch = cfb->height;
+	const rect_t *or = &data->or;
 
 	cr = igt_get_cairo_ctx(pfb->fd, pfb);
 	igt_paint_color(cr, 0, 0, pfb->width, pfb->height, 1.0, 1.0, 1.0);
 
-	if (ofb)
+	if (flags & TEST_OVERLAY)
 		igt_paint_color(cr, or->x, or->y, or->w, or->h, 0.5, 0.5, 0.5);
 
 	igt_paint_color(cr, x, y, cw, ch, 1.0, 0.0, 1.0);
@@ -145,7 +155,7 @@ static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
 
 	draw_color(pfb, 1.0, 1.0, 1.0);
 
-	if (ofb) {
+	if (flags & TEST_OVERLAY) {
 		igt_plane_set_fb(data->overlay, ofb);
 		igt_plane_set_position(data->overlay, or->x, or->y);
 		igt_plane_set_size(data->overlay, or->w, or->h);
@@ -170,11 +180,11 @@ static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
  * Specific edge cases that should be captured here are the negative edges
  * of each plane and the centers.
  */
-static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
-			      igt_fb_t *cfb, const rect_t *or, int size)
+static void test_cursor_spots(data_t *data, int size, unsigned int flags)
 {
 	int sw = data->mode->hdisplay;
 	int sh = data->mode->vdisplay;
+	const rect_t *or = &data->or;
 	int i;
 	const pos_t pos[] = {
 		/* Test diagonally from top left to bottom right. */
@@ -198,110 +208,45 @@ static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
 	};
 
 	for (i = 0; i < ARRAY_SIZE(pos); ++i) {
-		test_cursor_pos(data, pfb, ofb, cfb, or, pos[i].x, pos[i].y);
+		test_cursor_pos(data, pos[i].x, pos[i].y, flags);
 	}
 }
 
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * Assumes the cursor can be placed on top of the overlay.
- */
-static void test_cursor_overlay(data_t *data, int size, enum pipe pipe_id)
+static void test_cleanup(data_t *data)
 {
-	igt_fb_t pfb, ofb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, data->or.w, data->or.h,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
-	igt_remove_fb(data->drm_fd, &pfb);
+	igt_remove_fb(data->drm_fd, &data->cfb);
+	igt_remove_fb(data->drm_fd, &data->ofb);
+	igt_remove_fb(data->drm_fd, &data->pfb);
 }
 
-/* Tests atomic cursor positioning on a primary plane. */
-static void test_cursor_primary(data_t *data, int size, enum pipe pipe_id)
+static void test_cursor(data_t *data, int size, unsigned int flags)
 {
-	igt_fb_t pfb, cfb;
-	int sw, sh;
-
-	test_init(data, pipe_id);
-
-	sw = data->mode->hdisplay;
-	sh = data->mode->vdisplay;
-
-	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
-
-	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
-
-	igt_plane_set_fb(data->primary, &pfb);
-	igt_display_commit2(&data->display, COMMIT_ATOMIC);
-
-	test_cursor_spots(data, &pfb, NULL, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &pfb);
-}
-
-/*
- * Tests atomic cursor positioning on a primary and overlay plane.
- * The overlay's buffer is larger than the viewport actually used
- * for display.
- */
-static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
-{
-	igt_fb_t pfb, ofb, cfb;
 	int sw, sh;
 	int pad = 128;
 
-	test_init(data, pipe_id);
-	igt_require(data->overlay);
-
 	sw = data->mode->hdisplay;
 	sh = data->mode->vdisplay;
 
+	test_cleanup(data);
+
 	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
-			    1.0, 1.0, 1.0, &pfb);
+			    1.0, 1.0, 1.0, &data->pfb);
 
-	igt_create_color_fb(data->drm_fd, data->or.w + pad, data->or.h + pad,
-			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
+	if (flags & TEST_OVERLAY) {
+		int width = (flags & TEST_VIEWPORT) ? data->or.w + pad : data->or.w;
+		int height = (flags & TEST_VIEWPORT) ? data->or.h + pad : data->or.h;
+
+		igt_create_color_fb(data->drm_fd, width, height,
+				    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &data->ofb);
+	}
 
 	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
-			    1.0, 0.0, 1.0, &cfb);
+			    1.0, 0.0, 1.0, &data->cfb);
 
-	igt_plane_set_fb(data->primary, &pfb);
+	igt_plane_set_fb(data->primary, &data->pfb);
 	igt_display_commit2(&data->display, COMMIT_ATOMIC);
 
-	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
-
-	test_fini(data);
-
-	igt_remove_fb(data->drm_fd, &cfb);
-	igt_remove_fb(data->drm_fd, &ofb);
-	igt_remove_fb(data->drm_fd, &pfb);
+	test_cursor_spots(data, size, flags);
 }
 
 igt_main
@@ -309,7 +254,21 @@ igt_main
 	static const int cursor_sizes[] = { 64, 128, 256 };
 	data_t data = {};
 	enum pipe pipe;
-	int i;
+	igt_output_t *output;
+	int i, j;
+	struct {
+		const char *name;
+		unsigned int flags;
+		const char *desc;
+	} tests[] = {
+		{ "primary", TEST_PRIMARY,
+		  "Tests atomic cursor positioning on primary plane" },
+		{ "overlay", TEST_PRIMARY | TEST_OVERLAY,
+		  "Tests atomic cursor positioning on primary plane and overlay plane" },
+		{ "viewport", TEST_PRIMARY | TEST_OVERLAY | TEST_VIEWPORT,
+		  "Tests atomic cursor positioning on primary plane and overlay plane "
+		  "with buffer larger than viewport used for display" },
+	};
 
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -321,26 +280,33 @@ igt_main
 		igt_display_require_output(&data.display);
 	}
 
-	for_each_pipe_static(pipe)
-		for (i = 0; i < ARRAY_SIZE(cursor_sizes); ++i) {
-			int size = cursor_sizes[i];
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane");
-			igt_subtest_f("pipe-%s-overlay-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_overlay(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane");
-			igt_subtest_f("pipe-%s-primary-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_primary(&data, size, pipe);
-
-			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane"
-				"with buffer larger than viewport used for display");
-			igt_subtest_f("pipe-%s-viewport-size-%d",
-				      kmstest_pipe_name(pipe), size)
-				test_cursor_viewport(&data, size, pipe);
+	for (i = 0; i < ARRAY_SIZE(tests); i++) {
+		igt_describe_f("%s", tests[i].desc);
+		igt_subtest_with_dynamic_f("%s", tests[i].name) {
+			for_each_pipe_with_single_output(&data.display, pipe, output) {
+				if ((tests[i].flags & TEST_OVERLAY) &&
+				    !igt_pipe_get_plane_type(&data.display.pipes[pipe],
+							     DRM_PLANE_TYPE_OVERLAY))
+					continue;
+
+				test_init(&data, pipe, output);
+
+				for (j = 0; j < ARRAY_SIZE(cursor_sizes); j++) {
+					int size = cursor_sizes[j];
+
+					igt_dynamic_f("pipe-%s-%s-size-%d",
+						      kmstest_pipe_name(pipe),
+						      igt_output_name(output),
+						      size)
+						test_cursor(&data, size, tests[i].flags);
+
+					test_cleanup(&data);
+				}
+
+				test_fini(&data);
+			}
 		}
+	}
 
 	igt_fixture {
 		igt_display_fini(&data.display);
-- 
2.35.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev3)
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
                   ` (5 preceding siblings ...)
  2022-08-18 15:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-08-30  4:16 ` Patchwork
  2022-08-31 11:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-30  4:16 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic (rev3)
URL   : https://patchwork.freedesktop.org/series/107119/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12046 -> IGTPW_7703
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (37 -> 35)
------------------------------

  Additional (1): bat-dg2-8 
  Missing    (3): fi-ctg-p8600 fi-bdw-samus fi-hsw-4200u 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - fi-rkl-11600:       NOTRUN -> [INCOMPLETE][1] ([i915#6179])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html

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

  * igt@i915_selftest@live@requests:
    - fi-pnv-d510:        [PASS][4] -> [DMESG-FAIL][5] ([i915#4528])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/fi-pnv-d510/igt@i915_selftest@live@requests.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-pnv-d510/igt@i915_selftest@live@requests.html

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

  * igt@runner@aborted:
    - fi-hsw-4770:        NOTRUN -> [FAIL][7] ([fdo#109271] / [i915#4312] / [i915#5594] / [i915#6246])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-hsw-4770/igt@runner@aborted.html
    - fi-bdw-5557u:       NOTRUN -> [FAIL][8] ([i915#4312])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-bdw-5557u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - {bat-rplp-1}:       [DMESG-WARN][9] ([i915#2867]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_selftest@live@hangcheck:
    - fi-hsw-g3258:       [INCOMPLETE][11] ([i915#3303] / [i915#4785]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions:
    - fi-bsw-kefka:       [FAIL][13] ([i915#6298]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html

  
#### Warnings ####

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-rkl-11600:       [INCOMPLETE][15] ([i915#5982]) -> [FAIL][16] ([fdo#103375])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594
  [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982
  [i915#6179]: https://gitlab.freedesktop.org/drm/intel/issues/6179
  [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246
  [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6530]: https://gitlab.freedesktop.org/drm/intel/issues/6530
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6637 -> IGTPW_7703

  CI-20190529: 20190529
  CI_DRM_12046: 3670ab033054d1817e1480cc7a1fdab412231876 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7703: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/index.html
  IGT_6637: a23e8aed0b54018339647d0817267431bd2b7075 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

+igt@kms_plane_cursor@overlay
+igt@kms_plane_cursor@primary
+igt@kms_plane_cursor@viewport
-igt@kms_plane_cursor@pipe-a-overlay-size-64
-igt@kms_plane_cursor@pipe-a-overlay-size-128
-igt@kms_plane_cursor@pipe-a-overlay-size-256
-igt@kms_plane_cursor@pipe-a-primary-size-64
-igt@kms_plane_cursor@pipe-a-primary-size-128
-igt@kms_plane_cursor@pipe-a-primary-size-256
-igt@kms_plane_cursor@pipe-a-viewport-size-64
-igt@kms_plane_cursor@pipe-a-viewport-size-128
-igt@kms_plane_cursor@pipe-a-viewport-size-256
-igt@kms_plane_cursor@pipe-b-overlay-size-64
-igt@kms_plane_cursor@pipe-b-overlay-size-128
-igt@kms_plane_cursor@pipe-b-overlay-size-256
-igt@kms_plane_cursor@pipe-b-primary-size-64
-igt@kms_plane_cursor@pipe-b-primary-size-128
-igt@kms_plane_cursor@pipe-b-primary-size-256
-igt@kms_plane_cursor@pipe-b-viewport-size-64
-igt@kms_plane_cursor@pipe-b-viewport-size-128
-igt@kms_plane_cursor@pipe-b-viewport-size-256
-igt@kms_plane_cursor@pipe-c-overlay-size-64
-igt@kms_plane_cursor@pipe-c-overlay-size-128
-igt@kms_plane_cursor@pipe-c-overlay-size-256
-igt@kms_plane_cursor@pipe-c-primary-size-64
-igt@kms_plane_cursor@pipe-c-primary-size-128
-igt@kms_plane_cursor@pipe-c-primary-size-256
-igt@kms_plane_cursor@pipe-c-viewport-size-64
-igt@kms_plane_cursor@pipe-c-viewport-size-128
-igt@kms_plane_cursor@pipe-c-viewport-size-256
-igt@kms_plane_cursor@pipe-d-overlay-size-64
-igt@kms_plane_cursor@pipe-d-overlay-size-128
-igt@kms_plane_cursor@pipe-d-overlay-size-256
-igt@kms_plane_cursor@pipe-d-primary-size-64
-igt@kms_plane_cursor@pipe-d-primary-size-128
-igt@kms_plane_cursor@pipe-d-primary-size-256
-igt@kms_plane_cursor@pipe-d-viewport-size-64
-igt@kms_plane_cursor@pipe-d-viewport-size-128
-igt@kms_plane_cursor@pipe-d-viewport-size-256
-igt@kms_plane_cursor@pipe-e-overlay-size-64
-igt@kms_plane_cursor@pipe-e-overlay-size-128
-igt@kms_plane_cursor@pipe-e-overlay-size-256
-igt@kms_plane_cursor@pipe-e-primary-size-64
-igt@kms_plane_cursor@pipe-e-primary-size-128
-igt@kms_plane_cursor@pipe-e-primary-size-256
-igt@kms_plane_cursor@pipe-e-viewport-size-64
-igt@kms_plane_cursor@pipe-e-viewport-size-128
-igt@kms_plane_cursor@pipe-e-viewport-size-256
-igt@kms_plane_cursor@pipe-f-overlay-size-64
-igt@kms_plane_cursor@pipe-f-overlay-size-128
-igt@kms_plane_cursor@pipe-f-overlay-size-256
-igt@kms_plane_cursor@pipe-f-primary-size-64
-igt@kms_plane_cursor@pipe-f-primary-size-128
-igt@kms_plane_cursor@pipe-f-primary-size-256
-igt@kms_plane_cursor@pipe-f-viewport-size-64
-igt@kms_plane_cursor@pipe-f-viewport-size-128
-igt@kms_plane_cursor@pipe-f-viewport-size-256

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev3)
  2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
                   ` (6 preceding siblings ...)
  2022-08-30  4:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev3) Patchwork
@ 2022-08-31 11:49 ` Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-08-31 11:49 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: tests/kms_plane_cursor: Convert tests to dynamic (rev3)
URL   : https://patchwork.freedesktop.org/series/107119/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12046_full -> IGTPW_7703_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (13 -> 9)
------------------------------

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

New tests
---------

  New tests have been introduced between CI_DRM_12046_full and IGTPW_7703_full:

### New IGT tests (111) ###

  * igt@kms_plane_cursor@overlay:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@overlay@pipe-a-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.39] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.07] s

  * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.13] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@overlay@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.67] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@overlay@pipe-b-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.60] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-b-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.24] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.13] s

  * igt@kms_plane_cursor@overlay@pipe-b-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.06] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@overlay@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.73] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@overlay@pipe-c-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.60] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@overlay@pipe-c-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.27] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@overlay@pipe-c-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.07] s

  * igt@kms_plane_cursor@overlay@pipe-d-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@overlay@pipe-d-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@overlay@pipe-d-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@primary:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-a-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.41] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [1.21] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.41] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-b-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.58] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-b-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.36] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [1.23] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.46] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@primary@pipe-c-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.61] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.40] s

  * igt@kms_plane_cursor@primary@pipe-c-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.35] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-c-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [1.22] s

  * igt@kms_plane_cursor@primary@pipe-d-hdmi-a-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-d-hdmi-a-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  * igt@kms_plane_cursor@primary@pipe-d-hdmi-a-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [1.22] s

  * igt@kms_plane_cursor@viewport:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@viewport@pipe-a-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-a-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-4-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.12] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-4-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.12] s

  * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-4-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@viewport@pipe-a-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.68] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-b-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.61] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.24] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-4-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-4-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-4-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.13] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.69] s

  * igt@kms_plane_cursor@viewport@pipe-b-vga-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.73] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.43] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-c-dp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [2.60] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [2.42] s

  * igt@kms_plane_cursor@viewport@pipe-c-edp-1-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.27] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-4-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-4-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@viewport@pipe-c-hdmi-a-4-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-4-size-128:
    - Statuses : 1 pass(s)
    - Exec time: [3.08] s

  * igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-4-size-256:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  * igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-4-size-64:
    - Statuses : 1 pass(s)
    - Exec time: [3.10] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-apl:          [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#4525])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][5] -> [FAIL][6] ([i915#2842])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][7] -> [FAIL][8] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html

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

  * igt@gem_lmem_swapping@verify:
    - shard-iclb:         NOTRUN -> [SKIP][10] ([i915#4613]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb3/igt@gem_lmem_swapping@verify.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][11] ([i915#768])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gen3_render_mixed_blits:
    - shard-iclb:         NOTRUN -> [SKIP][12] ([fdo#109289]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb2/igt@gen3_render_mixed_blits.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-snb:          NOTRUN -> [SKIP][13] ([fdo#109271]) +109 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-iclb:         NOTRUN -> [SKIP][14] ([fdo#110723])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][15] ([fdo#109278]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#3886]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_color_chamelium@ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][17] ([fdo#109284] / [fdo#111827])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb6/igt@kms_color_chamelium@ctm-0-25.html
    - shard-apl:          NOTRUN -> [SKIP][18] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/igt@kms_color_chamelium@ctm-0-25.html

  * igt@kms_color_chamelium@ctm-0-50:
    - shard-snb:          NOTRUN -> [SKIP][19] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-snb4/igt@kms_color_chamelium@ctm-0-50.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([i915#3116])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb5/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
    - shard-iclb:         NOTRUN -> [SKIP][21] ([fdo#109274]) +6 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#2672]) +8 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#1888] / [i915#2546])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#109280]) +4 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#3555])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][27] ([fdo#108145] / [i915#265])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271]) +63 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl3/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#658])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#658]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl8/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][31] -> [SKIP][32] ([fdo#109441]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#109441])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb6/igt@kms_psr@psr2_suspend.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#2437])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sysfs_clients@fair-7:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#2994])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/igt@sysfs_clients@fair-7.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@engines-hang@bcs0:
    - {shard-dg1}:        [FAIL][36] ([i915#4883]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-dg1-15/igt@gem_ctx_persistence@engines-hang@bcs0.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-dg1-18/igt@gem_ctx_persistence@engines-hang@bcs0.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][38] ([i915#4525]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][40] ([i915#5566] / [i915#716]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl3/igt@gen9_exec_parse@allowed-single.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl3/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][42] ([fdo#109271]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl7/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_atomic_interruptible@legacy-setmode@dp-1-pipe-a:
    - shard-apl:          [DMESG-WARN][44] ([i915#180] / [i915#62]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@kms_atomic_interruptible@legacy-setmode@dp-1-pipe-a.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl3/igt@kms_atomic_interruptible@legacy-setmode@dp-1-pipe-a.html

  * igt@kms_atomic_interruptible@universal-setplane-primary@dp-1-pipe-a:
    - shard-apl:          [DMESG-WARN][46] ([i915#62]) -> [PASS][47] +49 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@kms_atomic_interruptible@universal-setplane-primary@dp-1-pipe-a.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/igt@kms_atomic_interruptible@universal-setplane-primary@dp-1-pipe-a.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode:
    - shard-apl:          [DMESG-WARN][48] ([i915#165] / [i915#180] / [i915#62]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-mid:
    - shard-apl:          [DMESG-WARN][50] ([i915#165] / [i915#62]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-mid.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-mid.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
    - shard-iclb:         [SKIP][52] ([i915#5235]) -> [PASS][53] +5 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html

  * igt@perf_pmu@busy-idle-check-all@vecs0:
    - {shard-dg1}:        [FAIL][54] ([i915#4521]) -> [PASS][55] +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][56] ([i915#658]) -> [SKIP][57] ([i915#588])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-iclb1/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          [DMESG-FAIL][58] ([fdo#108145] / [i915#62]) -> [FAIL][59] ([fdo#108145] / [i915#265]) +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][60], [FAIL][61], [FAIL][62], [FAIL][63]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][64], [FAIL][65], [FAIL][66], [FAIL][67], [FAIL][68], [FAIL][69]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl1/igt@runner@aborted.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl8/igt@runner@aborted.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl3/igt@runner@aborted.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12046/shard-apl3/igt@runner@aborted.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl7/igt@runner@aborted.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl2/igt@runner@aborted.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl8/igt@runner@aborted.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/igt@runner@aborted.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl6/igt@runner@aborted.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/shard-apl1/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#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6637 -> IGTPW_7703
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12046: 3670ab033054d1817e1480cc7a1fdab412231876 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7703: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7703/index.html
  IGT_6637: a23e8aed0b54018339647d0817267431bd2b7075 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] [i-g-t V3] tests/kms_plane_cursor: Convert tests to dynamic
  2022-08-30  3:29   ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem
@ 2022-09-01  4:22     ` Karthik B S
  0 siblings, 0 replies; 11+ messages in thread
From: Karthik B S @ 2022-09-01  4:22 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev

On 8/30/2022 8:59 AM, Bhanuprakash Modem wrote:
> Convert the existing subtests to dynamic subtests at pipe/output
> level. And create an array of structures to populate subtests to
> avoid code duplication.
>
> This patch will also do some clenup to have a single function for
> all subtests.
>
> V2:
> - Populate overlay outside test_init()
> - New function for fb cleanup
> V3:
> - Fix crash in CI
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>

LGTM.

Reviewed-by: Karthik B S <karthik.b.s@intel.com>

> ---
>   tests/kms_plane_cursor.c | 194 ++++++++++++++++-----------------------
>   1 file changed, 80 insertions(+), 114 deletions(-)
>
> diff --git a/tests/kms_plane_cursor.c b/tests/kms_plane_cursor.c
> index 73085cc8..6b7e5cef 100644
> --- a/tests/kms_plane_cursor.c
> +++ b/tests/kms_plane_cursor.c
> @@ -30,6 +30,12 @@
>    * - DRM index indicates z-ordering, higher index = higher z-order
>    */
>   
> +enum {
> +	TEST_PRIMARY = 0,
> +	TEST_OVERLAY = 1 << 0,
> +	TEST_VIEWPORT = 1 << 1,
> +};
> +
>   typedef struct {
>   	int x;
>   	int y;
> @@ -52,24 +58,25 @@ typedef struct data {
>   	igt_pipe_t *pipe;
>   	igt_pipe_crc_t *pipe_crc;
>   	drmModeModeInfo *mode;
> +	igt_fb_t pfb;
> +	igt_fb_t ofb;
> +	igt_fb_t cfb;
>   	enum pipe pipe_id;
>   	int drm_fd;
>   	rect_t or;
>   } data_t;
>   
>   /* Common test setup. */
> -static void test_init(data_t *data, enum pipe pipe_id)
> +static void test_init(data_t *data, enum pipe pipe_id, igt_output_t *output)
>   {
>   	igt_display_t *display = &data->display;
>   
>   	data->pipe_id = pipe_id;
>   	data->pipe = &data->display.pipes[data->pipe_id];
> +	data->output = output;
>   
>   	igt_display_reset(display);
>   
> -	data->output = igt_get_single_output_for_pipe(&data->display, pipe_id);
> -	igt_require(data->output);
> -
>   	data->mode = igt_output_get_mode(data->output);
>   
>   	data->primary = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
> @@ -119,18 +126,21 @@ static void draw_color(igt_fb_t *fb, double r, double g, double b)
>    * Places the cursor where the magenta square should be with a magenta FB.
>    * Takes this as the test CRC and compares it to the reference.
>    */
> -static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
> -			    igt_fb_t *cfb, const rect_t *or, int x, int y)
> +static void test_cursor_pos(data_t *data, int x, int y, unsigned int flags)
>   {
>   	igt_crc_t ref_crc, test_crc;
>   	cairo_t *cr;
> +	igt_fb_t *pfb = &data->pfb;
> +	igt_fb_t *ofb = &data->ofb;
> +	igt_fb_t *cfb = &data->cfb;
>   	int cw = cfb->width;
>   	int ch = cfb->height;
> +	const rect_t *or = &data->or;
>   
>   	cr = igt_get_cairo_ctx(pfb->fd, pfb);
>   	igt_paint_color(cr, 0, 0, pfb->width, pfb->height, 1.0, 1.0, 1.0);
>   
> -	if (ofb)
> +	if (flags & TEST_OVERLAY)
>   		igt_paint_color(cr, or->x, or->y, or->w, or->h, 0.5, 0.5, 0.5);
>   
>   	igt_paint_color(cr, x, y, cw, ch, 1.0, 0.0, 1.0);
> @@ -145,7 +155,7 @@ static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
>   
>   	draw_color(pfb, 1.0, 1.0, 1.0);
>   
> -	if (ofb) {
> +	if (flags & TEST_OVERLAY) {
>   		igt_plane_set_fb(data->overlay, ofb);
>   		igt_plane_set_position(data->overlay, or->x, or->y);
>   		igt_plane_set_size(data->overlay, or->w, or->h);
> @@ -170,11 +180,11 @@ static void test_cursor_pos(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
>    * Specific edge cases that should be captured here are the negative edges
>    * of each plane and the centers.
>    */
> -static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
> -			      igt_fb_t *cfb, const rect_t *or, int size)
> +static void test_cursor_spots(data_t *data, int size, unsigned int flags)
>   {
>   	int sw = data->mode->hdisplay;
>   	int sh = data->mode->vdisplay;
> +	const rect_t *or = &data->or;
>   	int i;
>   	const pos_t pos[] = {
>   		/* Test diagonally from top left to bottom right. */
> @@ -198,110 +208,45 @@ static void test_cursor_spots(data_t *data, igt_fb_t *pfb, igt_fb_t *ofb,
>   	};
>   
>   	for (i = 0; i < ARRAY_SIZE(pos); ++i) {
> -		test_cursor_pos(data, pfb, ofb, cfb, or, pos[i].x, pos[i].y);
> +		test_cursor_pos(data, pos[i].x, pos[i].y, flags);
>   	}
>   }
>   
> -/*
> - * Tests atomic cursor positioning on a primary and overlay plane.
> - * Assumes the cursor can be placed on top of the overlay.
> - */
> -static void test_cursor_overlay(data_t *data, int size, enum pipe pipe_id)
> +static void test_cleanup(data_t *data)
>   {
> -	igt_fb_t pfb, ofb, cfb;
> -	int sw, sh;
> -
> -	test_init(data, pipe_id);
> -	igt_require(data->overlay);
> -
> -	sw = data->mode->hdisplay;
> -	sh = data->mode->vdisplay;
> -
> -	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
> -			    1.0, 1.0, 1.0, &pfb);
> -
> -	igt_create_color_fb(data->drm_fd, data->or.w, data->or.h,
> -			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
> -
> -	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
> -			    1.0, 0.0, 1.0, &cfb);
> -
> -	igt_plane_set_fb(data->primary, &pfb);
> -	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> -
> -	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
> -
> -	test_fini(data);
> -
> -	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &ofb);
> -	igt_remove_fb(data->drm_fd, &pfb);
> +	igt_remove_fb(data->drm_fd, &data->cfb);
> +	igt_remove_fb(data->drm_fd, &data->ofb);
> +	igt_remove_fb(data->drm_fd, &data->pfb);
>   }
>   
> -/* Tests atomic cursor positioning on a primary plane. */
> -static void test_cursor_primary(data_t *data, int size, enum pipe pipe_id)
> +static void test_cursor(data_t *data, int size, unsigned int flags)
>   {
> -	igt_fb_t pfb, cfb;
> -	int sw, sh;
> -
> -	test_init(data, pipe_id);
> -
> -	sw = data->mode->hdisplay;
> -	sh = data->mode->vdisplay;
> -
> -	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
> -			    1.0, 1.0, 1.0, &pfb);
> -
> -	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
> -			    1.0, 0.0, 1.0, &cfb);
> -
> -	igt_plane_set_fb(data->primary, &pfb);
> -	igt_display_commit2(&data->display, COMMIT_ATOMIC);
> -
> -	test_cursor_spots(data, &pfb, NULL, &cfb, &data->or, size);
> -
> -	test_fini(data);
> -
> -	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &pfb);
> -}
> -
> -/*
> - * Tests atomic cursor positioning on a primary and overlay plane.
> - * The overlay's buffer is larger than the viewport actually used
> - * for display.
> - */
> -static void test_cursor_viewport(data_t *data, int size, enum pipe pipe_id)
> -{
> -	igt_fb_t pfb, ofb, cfb;
>   	int sw, sh;
>   	int pad = 128;
>   
> -	test_init(data, pipe_id);
> -	igt_require(data->overlay);
> -
>   	sw = data->mode->hdisplay;
>   	sh = data->mode->vdisplay;
>   
> +	test_cleanup(data);
> +
>   	igt_create_color_fb(data->drm_fd, sw, sh, DRM_FORMAT_XRGB8888, 0,
> -			    1.0, 1.0, 1.0, &pfb);
> +			    1.0, 1.0, 1.0, &data->pfb);
>   
> -	igt_create_color_fb(data->drm_fd, data->or.w + pad, data->or.h + pad,
> -			    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &ofb);
> +	if (flags & TEST_OVERLAY) {
> +		int width = (flags & TEST_VIEWPORT) ? data->or.w + pad : data->or.w;
> +		int height = (flags & TEST_VIEWPORT) ? data->or.h + pad : data->or.h;
> +
> +		igt_create_color_fb(data->drm_fd, width, height,
> +				    DRM_FORMAT_XRGB8888, 0, 0.5, 0.5, 0.5, &data->ofb);
> +	}
>   
>   	igt_create_color_fb(data->drm_fd, size, size, DRM_FORMAT_ARGB8888, 0,
> -			    1.0, 0.0, 1.0, &cfb);
> +			    1.0, 0.0, 1.0, &data->cfb);
>   
> -	igt_plane_set_fb(data->primary, &pfb);
> +	igt_plane_set_fb(data->primary, &data->pfb);
>   	igt_display_commit2(&data->display, COMMIT_ATOMIC);
>   
> -	test_cursor_spots(data, &pfb, &ofb, &cfb, &data->or, size);
> -
> -	test_fini(data);
> -
> -	igt_remove_fb(data->drm_fd, &cfb);
> -	igt_remove_fb(data->drm_fd, &ofb);
> -	igt_remove_fb(data->drm_fd, &pfb);
> +	test_cursor_spots(data, size, flags);
>   }
>   
>   igt_main
> @@ -309,7 +254,21 @@ igt_main
>   	static const int cursor_sizes[] = { 64, 128, 256 };
>   	data_t data = {};
>   	enum pipe pipe;
> -	int i;
> +	igt_output_t *output;
> +	int i, j;
> +	struct {
> +		const char *name;
> +		unsigned int flags;
> +		const char *desc;
> +	} tests[] = {
> +		{ "primary", TEST_PRIMARY,
> +		  "Tests atomic cursor positioning on primary plane" },
> +		{ "overlay", TEST_PRIMARY | TEST_OVERLAY,
> +		  "Tests atomic cursor positioning on primary plane and overlay plane" },
> +		{ "viewport", TEST_PRIMARY | TEST_OVERLAY | TEST_VIEWPORT,
> +		  "Tests atomic cursor positioning on primary plane and overlay plane "
> +		  "with buffer larger than viewport used for display" },
> +	};
>   
>   	igt_fixture {
>   		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -321,26 +280,33 @@ igt_main
>   		igt_display_require_output(&data.display);
>   	}
>   
> -	for_each_pipe_static(pipe)
> -		for (i = 0; i < ARRAY_SIZE(cursor_sizes); ++i) {
> -			int size = cursor_sizes[i];
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane");
> -			igt_subtest_f("pipe-%s-overlay-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_overlay(&data, size, pipe);
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane");
> -			igt_subtest_f("pipe-%s-primary-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_primary(&data, size, pipe);
> -
> -			igt_describe("Tests atomic cursor positioning on primary plane and overlay plane"
> -				"with buffer larger than viewport used for display");
> -			igt_subtest_f("pipe-%s-viewport-size-%d",
> -				      kmstest_pipe_name(pipe), size)
> -				test_cursor_viewport(&data, size, pipe);
> +	for (i = 0; i < ARRAY_SIZE(tests); i++) {
> +		igt_describe_f("%s", tests[i].desc);
> +		igt_subtest_with_dynamic_f("%s", tests[i].name) {
> +			for_each_pipe_with_single_output(&data.display, pipe, output) {
> +				if ((tests[i].flags & TEST_OVERLAY) &&
> +				    !igt_pipe_get_plane_type(&data.display.pipes[pipe],
> +							     DRM_PLANE_TYPE_OVERLAY))
> +					continue;
> +
> +				test_init(&data, pipe, output);
> +
> +				for (j = 0; j < ARRAY_SIZE(cursor_sizes); j++) {
> +					int size = cursor_sizes[j];
> +
> +					igt_dynamic_f("pipe-%s-%s-size-%d",
> +						      kmstest_pipe_name(pipe),
> +						      igt_output_name(output),
> +						      size)
> +						test_cursor(&data, size, tests[i].flags);
> +
> +					test_cleanup(&data);
> +				}
> +
> +				test_fini(&data);
> +			}
>   		}
> +	}
>   
>   	igt_fixture {
>   		igt_display_fini(&data.display);


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

end of thread, other threads:[~2022-09-01  4:22 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-10 12:20 [igt-dev] [i-g-t] tests/kms_plane_cursor: Convert tests to dynamic Bhanuprakash Modem
2022-08-10 14:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-08-10 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2022-08-17  5:36 ` [igt-dev] [i-g-t] " Karthik B S
2022-08-18  6:23 ` [igt-dev] [i-g-t V2] " Bhanuprakash Modem
2022-08-30  3:29   ` [igt-dev] [i-g-t V3] " Bhanuprakash Modem
2022-09-01  4:22     ` Karthik B S
2022-08-18  7:05 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev2) Patchwork
2022-08-18 15:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-08-30  4:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_cursor: Convert tests to dynamic (rev3) Patchwork
2022-08-31 11:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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