All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement
@ 2021-03-24 18:17 Ville Syrjala
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_cursor_crc: Extract run_size_tests() Ville Syrjala
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Ville Syrjala @ 2021-03-24 18:17 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

The test works fine even if the max cursor size is not square.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/kms_cursor_crc.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 13d6156c9c77..7068475e04b1 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -798,9 +798,6 @@ igt_main
 		ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_HEIGHT, &cursor_height);
 		igt_assert(ret == 0 || errno == EINVAL);
 
-		/* We assume width and height are same so max is assigned width */
-		igt_assert_eq(cursor_width, cursor_height);
-
 		kmstest_set_vt_graphics_mode();
 
 		igt_require_pipe_crc(data.drm_fd);
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t 2/3] tests/kms_cursor_crc: Extract run_size_tests()
  2021-03-24 18:17 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Ville Syrjala
@ 2021-03-24 18:17 ` Ville Syrjala
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size Ville Syrjala
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Ville Syrjala @ 2021-03-24 18:17 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Refactor the common size tests into their own function and
just call it twice.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/kms_cursor_crc.c | 103 +++++++++++++++++------------------------
 1 file changed, 42 insertions(+), 61 deletions(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 7068475e04b1..5f3eeaa0c5ac 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -532,6 +532,9 @@ static void require_cursor_size(data_t *data, int w, int h)
 	igt_plane_t *primary, *cursor;
 	int ret;
 
+	igt_require(w <= data->cursor_max_w &&
+		    h <= data->cursor_max_h);
+
 	igt_output_set_pipe(output, data->pipe);
 
 	mode = igt_output_get_mode(output);
@@ -660,6 +663,41 @@ static void test_rapid_movement(data_t *data)
 	igt_assert_lt(usec, 0.9 * 400 * 1000000 / data->refresh);
 }
 
+static void run_size_tests(data_t *data, enum pipe pipe,
+			   int w, int h)
+{
+	igt_fixture {
+		create_cursor_fb(data, w, h);
+		require_cursor_size(data, w, h);
+	}
+
+	/* Using created cursor FBs to test cursor support */
+	igt_describe("Check if a given-size cursor is well-positioned inside the screen.");
+	igt_subtest_f("pipe-%s-cursor%dx%donscreen", kmstest_pipe_name(pipe), w, h)
+		run_test(data, test_crc_onscreen, w, h);
+
+	igt_describe("Check if a given-size cursor is well-positioned outside the "
+		     "screen.");
+	igt_subtest_f("pipe-%s-cursor%dx%doffscreen", kmstest_pipe_name(pipe), w, h)
+		run_test(data, test_crc_offscreen, w, h);
+
+	igt_describe("Check the smooth and pixel-by-pixel given-size cursor "
+		     "movements on horizontal, vertical and diagonal.");
+	igt_subtest_f("pipe-%s-cursor%dx%dsliding", kmstest_pipe_name(pipe), w, h)
+		run_test(data, test_crc_sliding, w, h);
+
+	igt_describe("Check random placement of a cursor with given size.");
+	igt_subtest_f("pipe-%s-cursor%dx%drandom", kmstest_pipe_name(pipe), w, h)
+		run_test(data, test_crc_random, w, h);
+
+	igt_describe("Check the rapid update of given-size cursor movements.");
+	igt_subtest_f("pipe-%s-cursor%dx%drapid-movement", kmstest_pipe_name(pipe), w, h)
+		run_test(data, test_rapid_movement, w, h);
+
+	igt_fixture
+		igt_remove_fb(data->drm_fd, &data->fb);
+}
+
 static void run_tests_on_pipe(data_t *data, enum pipe pipe)
 {
 	int cursor_size;
@@ -709,44 +747,8 @@ static void run_tests_on_pipe(data_t *data, enum pipe pipe)
 		int w = cursor_size;
 		int h = cursor_size;
 
-		igt_fixture {
-			igt_require(w <= data->cursor_max_w &&
-				    h <= data->cursor_max_h);
-
-			create_cursor_fb(data, w, h);
-		}
-
-		igt_subtest_group {
-			igt_fixture
-				require_cursor_size(data, w, h);
-
-			/* Using created cursor FBs to test cursor support */
-			igt_describe("Check if a given-size cursor is well-positioned inside the "
-				     "screen.");
-			igt_subtest_f("pipe-%s-cursor-%dx%d-onscreen", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_onscreen, w, h);
-
-			igt_describe("Check if a given-size cursor is well-positioned outside the "
-				     "screen.");
-			igt_subtest_f("pipe-%s-cursor-%dx%d-offscreen", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_offscreen, w, h);
-
-			igt_describe("Check the smooth and pixel-by-pixel given-size cursor "
-				     "movements on horizontal, vertical and diagonal.");
-			igt_subtest_f("pipe-%s-cursor-%dx%d-sliding", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_sliding, w, h);
-
-			igt_describe("Check random placement of a cursor with given size.");
-			igt_subtest_f("pipe-%s-cursor-%dx%d-random", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_random, w, h);
-
-			igt_describe("Check the rapid update of given-size cursor movements.");
-			igt_subtest_f("pipe-%s-cursor-%dx%d-rapid-movement", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_rapid_movement, w, h);
-		}
-
-		igt_fixture
-			igt_remove_fb(data->drm_fd, &data->fb);
+		igt_subtest_group
+			run_size_tests(data, pipe, w, h);
 
 		/*
 		 * Test non-square cursors a bit on the platforms
@@ -755,29 +757,8 @@ static void run_tests_on_pipe(data_t *data, enum pipe pipe)
 		 */
 		h /= 3;
 
-		igt_fixture
-			create_cursor_fb(data, w, h);
-
-		igt_subtest_group {
-			igt_fixture
-				require_cursor_size(data, w, h);
-
-			/* Using created cursor FBs to test cursor support */
-			igt_subtest_f("pipe-%s-cursor-%dx%d-onscreen", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_onscreen, w, h);
-
-			igt_subtest_f("pipe-%s-cursor-%dx%d-offscreen", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_offscreen, w, h);
-
-			igt_subtest_f("pipe-%s-cursor-%dx%d-sliding", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_sliding, w, h);
-
-			igt_subtest_f("pipe-%s-cursor-%dx%d-random", kmstest_pipe_name(pipe), w, h)
-				run_test(data, test_crc_random, w, h);
-		}
-
-		igt_fixture
-			igt_remove_fb(data->drm_fd, &data->fb);
+		igt_subtest_group
+			run_size_tests(data, pipe, w, h);
 	}
 }
 
-- 
2.26.2

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

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

* [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size
  2021-03-24 18:17 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Ville Syrjala
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_cursor_crc: Extract run_size_tests() Ville Syrjala
@ 2021-03-24 18:17 ` Ville Syrjala
  2021-03-24 20:19   ` Lyude Paul
  2021-03-25 11:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Patchwork
  2021-03-25 13:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 1 reply; 6+ messages in thread
From: Ville Syrjala @ 2021-03-24 18:17 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Run the standard set of tests using the max cursor size
if the other tests didn't already cover it.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/kms_cursor_crc.c | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 5f3eeaa0c5ac..525e6952f1a5 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -666,32 +666,49 @@ static void test_rapid_movement(data_t *data)
 static void run_size_tests(data_t *data, enum pipe pipe,
 			   int w, int h)
 {
+	char name[16];
+
+	if (w == 0 && h == 0)
+		strcpy(name, "max-size");
+	else
+		snprintf(name, sizeof(name), "%dx%d", w, h);
+
 	igt_fixture {
+		if (w == 0 && h == 0) {
+			w = data->cursor_max_w;
+			h = data->cursor_max_h;
+			/*
+			 * No point in doing the "max-size" test if
+			 * it was already covered by the other tests.
+			 */
+			igt_require(w != h || w > 512 || h > 512 ||
+				    !is_power_of_two(w) || !is_power_of_two(h));
+		}
 		create_cursor_fb(data, w, h);
 		require_cursor_size(data, w, h);
 	}
 
 	/* Using created cursor FBs to test cursor support */
 	igt_describe("Check if a given-size cursor is well-positioned inside the screen.");
-	igt_subtest_f("pipe-%s-cursor%dx%donscreen", kmstest_pipe_name(pipe), w, h)
+	igt_subtest_f("pipe-%s-cursor-%s-onscreen", kmstest_pipe_name(pipe), name)
 		run_test(data, test_crc_onscreen, w, h);
 
 	igt_describe("Check if a given-size cursor is well-positioned outside the "
 		     "screen.");
-	igt_subtest_f("pipe-%s-cursor%dx%doffscreen", kmstest_pipe_name(pipe), w, h)
+	igt_subtest_f("pipe-%s-cursor-%s-offscreen", kmstest_pipe_name(pipe), name)
 		run_test(data, test_crc_offscreen, w, h);
 
 	igt_describe("Check the smooth and pixel-by-pixel given-size cursor "
 		     "movements on horizontal, vertical and diagonal.");
-	igt_subtest_f("pipe-%s-cursor%dx%dsliding", kmstest_pipe_name(pipe), w, h)
+	igt_subtest_f("pipe-%s-cursor-%s-sliding", kmstest_pipe_name(pipe), name)
 		run_test(data, test_crc_sliding, w, h);
 
 	igt_describe("Check random placement of a cursor with given size.");
-	igt_subtest_f("pipe-%s-cursor%dx%drandom", kmstest_pipe_name(pipe), w, h)
+	igt_subtest_f("pipe-%s-cursor-%s-random", kmstest_pipe_name(pipe), name)
 		run_test(data, test_crc_random, w, h);
 
 	igt_describe("Check the rapid update of given-size cursor movements.");
-	igt_subtest_f("pipe-%s-cursor%dx%drapid-movement", kmstest_pipe_name(pipe), w, h)
+	igt_subtest_f("pipe-%s-cursor-%s-rapid-movement", kmstest_pipe_name(pipe), name)
 		run_test(data, test_rapid_movement, w, h);
 
 	igt_fixture
@@ -760,6 +777,8 @@ static void run_tests_on_pipe(data_t *data, enum pipe pipe)
 		igt_subtest_group
 			run_size_tests(data, pipe, w, h);
 	}
+
+	run_size_tests(data, pipe, 0, 0);
 }
 
 static data_t data;
-- 
2.26.2

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

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

* Re: [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size Ville Syrjala
@ 2021-03-24 20:19   ` Lyude Paul
  0 siblings, 0 replies; 6+ messages in thread
From: Lyude Paul @ 2021-03-24 20:19 UTC (permalink / raw)
  To: Ville Syrjala, igt-dev

On Wed, 2021-03-24 at 20:17 +0200, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> Run the standard set of tests using the max cursor size
> if the other tests didn't already cover it.
> 
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  tests/kms_cursor_crc.c | 29 ++++++++++++++++++++++++-----
>  1 file changed, 24 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 5f3eeaa0c5ac..525e6952f1a5 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -666,32 +666,49 @@ static void test_rapid_movement(data_t *data)
>  static void run_size_tests(data_t *data, enum pipe pipe,
>                            int w, int h)
>  {
> +       char name[16];
> +
> +       if (w == 0 && h == 0)
> +               strcpy(name, "max-size");
> +       else
> +               snprintf(name, sizeof(name), "%dx%d", w, h);
> +
>         igt_fixture {
> +               if (w == 0 && h == 0) {
> +                       w = data->cursor_max_w;
> +                       h = data->cursor_max_h;
> +                       /*
> +                        * No point in doing the "max-size" test if
> +                        * it was already covered by the other tests.
> +                        */
> +                       igt_require(w != h || w > 512 || h > 512 ||
> +                                   !is_power_of_two(w) ||
> !is_power_of_two(h));

IMO I think we should use igt_require_f() here so we can print a message
explaining this is covered by other tests. Other then that, this whole patch
series is:

Reviewed-by: Lyude Paul <lyude@redhat.com>
> +               }
>                 create_cursor_fb(data, w, h);
>                 require_cursor_size(data, w, h);
>         }
>  
>         /* Using created cursor FBs to test cursor support */
>         igt_describe("Check if a given-size cursor is well-positioned inside
> the screen.");
> -       igt_subtest_f("pipe-%s-cursor%dx%donscreen", kmstest_pipe_name(pipe),
> w, h)
> +       igt_subtest_f("pipe-%s-cursor-%s-onscreen", kmstest_pipe_name(pipe),
> name)
>                 run_test(data, test_crc_onscreen, w, h);
>  
>         igt_describe("Check if a given-size cursor is well-positioned outside
> the "
>                      "screen.");
> -       igt_subtest_f("pipe-%s-cursor%dx%doffscreen", kmstest_pipe_name(pipe),
> w, h)
> +       igt_subtest_f("pipe-%s-cursor-%s-offscreen", kmstest_pipe_name(pipe),
> name)
>                 run_test(data, test_crc_offscreen, w, h);
>  
>         igt_describe("Check the smooth and pixel-by-pixel given-size cursor "
>                      "movements on horizontal, vertical and diagonal.");
> -       igt_subtest_f("pipe-%s-cursor%dx%dsliding", kmstest_pipe_name(pipe),
> w, h)
> +       igt_subtest_f("pipe-%s-cursor-%s-sliding", kmstest_pipe_name(pipe),
> name)
>                 run_test(data, test_crc_sliding, w, h);
>  
>         igt_describe("Check random placement of a cursor with given size.");
> -       igt_subtest_f("pipe-%s-cursor%dx%drandom", kmstest_pipe_name(pipe), w,
> h)
> +       igt_subtest_f("pipe-%s-cursor-%s-random", kmstest_pipe_name(pipe),
> name)
>                 run_test(data, test_crc_random, w, h);
>  
>         igt_describe("Check the rapid update of given-size cursor
> movements.");
> -       igt_subtest_f("pipe-%s-cursor%dx%drapid-movement",
> kmstest_pipe_name(pipe), w, h)
> +       igt_subtest_f("pipe-%s-cursor-%s-rapid-movement",
> kmstest_pipe_name(pipe), name)
>                 run_test(data, test_rapid_movement, w, h);
>  
>         igt_fixture
> @@ -760,6 +777,8 @@ static void run_tests_on_pipe(data_t *data, enum pipe
> pipe)
>                 igt_subtest_group
>                         run_size_tests(data, pipe, w, h);
>         }
> +
> +       run_size_tests(data, pipe, 0, 0);
>  }
>  
>  static data_t data;

-- 
Sincerely,
   Lyude Paul (she/her)
   Software Engineer at Red Hat
   
Note: I deal with a lot of emails and have a lot of bugs on my plate. If you've
asked me a question, are waiting for a review/merge on a patch, etc. and I
haven't responded in a while, please feel free to send me another email to check
on my status. I don't bite!

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement
  2021-03-24 18:17 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Ville Syrjala
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_cursor_crc: Extract run_size_tests() Ville Syrjala
  2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size Ville Syrjala
@ 2021-03-25 11:52 ` Patchwork
  2021-03-25 13:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2021-03-25 11:52 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev


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

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement
URL   : https://patchwork.freedesktop.org/series/88405/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9891 -> IGTPW_5657
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@i915_selftest@live@hangcheck:
    - {fi-hsw-gt1}:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_basic@create-close:
    - fi-tgl-y:           [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/fi-tgl-y/igt@gem_basic@create-close.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/fi-tgl-y/igt@gem_basic@create-close.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-bsw-nick:        [PASS][5] -> [DMESG-FAIL][6] ([i915#2927])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html

  * igt@runner@aborted:
    - fi-bsw-nick:        NOTRUN -> [FAIL][7] ([i915#1436])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/fi-bsw-nick/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@prime_self_import@basic-with_one_bo_two_files:
    - fi-tgl-y:           [DMESG-WARN][8] ([i915#402]) -> [PASS][9] +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html

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

  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402


Participating hosts (47 -> 41)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6046 -> IGTPW_5657

  CI-20190529: 20190529
  CI_DRM_9891: 01ae394353f8aab102794ec9922f707d41c42ba0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5657: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/index.html
  IGT_6046: e76039273b1524147c43dba061756f06003d56ae @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_cursor_crc@pipe-a-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-a-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-a-cursor-max-size-random
+igt@kms_cursor_crc@pipe-a-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding
+igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-b-cursor-max-size-random
+igt@kms_cursor_crc@pipe-b-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding
+igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-c-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-c-cursor-max-size-random
+igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding
+igt@kms_cursor_crc@pipe-d-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-d-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-d-cursor-max-size-random
+igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding
+igt@kms_cursor_crc@pipe-e-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-e-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-e-cursor-max-size-random
+igt@kms_cursor_crc@pipe-e-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-e-cursor-max-size-sliding
+igt@kms_cursor_crc@pipe-f-cursor-32x10-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-64x21-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-128x42-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-256x85-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-512x170-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-max-size-offscreen
+igt@kms_cursor_crc@pipe-f-cursor-max-size-onscreen
+igt@kms_cursor_crc@pipe-f-cursor-max-size-random
+igt@kms_cursor_crc@pipe-f-cursor-max-size-rapid-movement
+igt@kms_cursor_crc@pipe-f-cursor-max-size-sliding

== Logs ==

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

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

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement
  2021-03-24 18:17 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Ville Syrjala
                   ` (2 preceding siblings ...)
  2021-03-25 11:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Patchwork
@ 2021-03-25 13:47 ` Patchwork
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2021-03-25 13:47 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: igt-dev


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

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement
URL   : https://patchwork.freedesktop.org/series/88405/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9891_full -> IGTPW_5657_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_userptr_blits@vma-merge:
    - shard-iclb:         NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb2/igt@gem_userptr_blits@vma-merge.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk2/igt@gem_userptr_blits@vma-merge.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl3/igt@gem_userptr_blits@vma-merge.html
    - shard-tglb:         NOTRUN -> [INCOMPLETE][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen9_exec_parse@bb-large:
    - shard-apl:          NOTRUN -> [FAIL][5] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl7/igt@gen9_exec_parse@bb-large.html

  * igt@i915_pm_rpm@fences-dpms:
    - shard-glk:          [PASS][6] -> [FAIL][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk3/igt@i915_pm_rpm@fences-dpms.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk9/igt@i915_pm_rpm@fences-dpms.html

  * {igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement} (NEW):
    - shard-tglb:         NOTRUN -> [SKIP][8] +29 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@sysfs_clients@fair-3:
    - shard-iclb:         NOTRUN -> [SKIP][9] +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb8/igt@sysfs_clients@fair-3.html

  
#### Suppressed ####

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

  * {igt@i915_pm_dc@dc9-dpms}:
    - shard-iclb:         NOTRUN -> [FAIL][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@i915_pm_dc@dc9-dpms.html

  * {igt@kms_cursor_crc@pipe-d-cursor-32x10-onscreen}:
    - shard-tglb:         NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-32x10-onscreen.html

  
New tests
---------

  New tests have been introduced between CI_DRM_9891_full and IGTPW_5657_full:

### New IGT tests (40) ###

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-rapid-movement:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.73] s

  * igt@kms_cursor_crc@pipe-a-cursor-256x85-rapid-movement:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.73] s

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-64x21-rapid-movement:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.73] s

  * igt@kms_cursor_crc@pipe-a-cursor-max-size-offscreen:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-max-size-onscreen:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-max-size-random:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-max-size-rapid-movement:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-a-cursor-max-size-sliding:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-128x42-rapid-movement:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.66] s

  * igt@kms_cursor_crc@pipe-b-cursor-256x85-rapid-movement:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.67] s

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-64x21-rapid-movement:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.66] s

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-offscreen:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-onscreen:
    - Statuses : 4 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-random:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-b-cursor-max-size-sliding:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-rapid-movement:
    - Statuses : 4 pass(s)
    - Exec time: [0.42, 1.64] s

  * igt@kms_cursor_crc@pipe-c-cursor-256x85-rapid-movement:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.61] s

  * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-rapid-movement:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.90] s

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-onscreen:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-random:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-128x42-rapid-movement:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 1.57] s

  * igt@kms_cursor_crc@pipe-d-cursor-256x85-rapid-movement:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 1.60] s

  * igt@kms_cursor_crc@pipe-d-cursor-32x10-rapid-movement:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-rapid-movement:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 1.60] s

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-offscreen:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-onscreen:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-random:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-sliding:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#180]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [PASS][14] -> [FAIL][15] ([i915#2410])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-tglb3/igt@gem_ctx_persistence@many-contexts.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb8/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][16] -> [TIMEOUT][17] ([i915#2369] / [i915#3063])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-tglb6/igt@gem_eio@unwedge-stress.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb3/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842]) +6 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html

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

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][21] -> [FAIL][22] ([i915#2842]) +2 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#2842])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-iclb2/igt@gem_exec_fair@basic-pace@bcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb6/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_reloc@basic-parallel:
    - shard-apl:          NOTRUN -> [TIMEOUT][25] ([i915#3183])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl3/igt@gem_exec_reloc@basic-parallel.html

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

  * igt@gem_exec_whisper@basic-contexts-forked:
    - shard-glk:          [PASS][27] -> [DMESG-WARN][28] ([i915#118] / [i915#95])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk8/igt@gem_exec_whisper@basic-contexts-forked.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk2/igt@gem_exec_whisper@basic-contexts-forked.html

  * igt@gem_mmap_offset@clear:
    - shard-iclb:         [PASS][29] -> [FAIL][30] ([i915#3160])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-iclb2/igt@gem_mmap_offset@clear.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb6/igt@gem_mmap_offset@clear.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][31] ([i915#2658])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl3/igt@gem_pread@exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271]) +202 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][33] ([i915#3002]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl7/igt@gem_userptr_blits@input-checking.html
    - shard-kbl:          NOTRUN -> [DMESG-WARN][34] ([i915#3002])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl3/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@process-exit-mmap@wb:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1699]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl7/igt@gem_userptr_blits@process-exit-mmap@wb.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-snb:          NOTRUN -> [FAIL][36] ([i915#2724])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-snb2/igt@gem_userptr_blits@vma-merge.html

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

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

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - shard-apl:          NOTRUN -> [SKIP][39] ([fdo#109271]) +255 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl8/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@pc8-residency:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109293] / [fdo#109506])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@i915_pm_rpm@pc8-residency.html
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109506] / [i915#2411])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#1769])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#1769])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#110725] / [fdo#111614])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb7/igt@kms_big_fb@linear-64bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111614])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb6/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#110723])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb2/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +25 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl3/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk8/igt@kms_chamelium@hdmi-hpd.html
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb3/igt@kms_chamelium@hdmi-hpd.html

  * igt@kms_chamelium@hdmi-hpd-storm:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl1/igt@kms_chamelium@hdmi-hpd-storm.html

  * igt@kms_color@pipe-d-degamma:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109278] / [i915#1149])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb6/igt@kms_color@pipe-d-degamma.html
    - shard-tglb:         NOTRUN -> [FAIL][53] ([i915#1149])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb8/igt@kms_color@pipe-d-degamma.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-5:
    - shard-snb:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +26 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-snb6/igt@kms_color_chamelium@pipe-d-ctm-0-5.html
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb1/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][57] ([i915#1319]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][58] ([i915#1319]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl1/igt@kms_content_protection@lic.html

  * {igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278]) +39 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-rapid-movement.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#109279])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109279])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html

  * {igt@kms_cursor_crc@pipe-b-cursor-max-size-random} (NEW):
    - shard-glk:          NOTRUN -> [SKIP][62] ([fdo#109271]) +68 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk8/igt@kms_cursor_crc@pipe-b-cursor-max-size-random.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic:
    - shard-apl:          NOTRUN -> [DMESG-FAIL][64] ([IGT#6])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533]) +3 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled:
    - shard-glk:          NOTRUN -> [FAIL][66] ([i915#52] / [i915#54])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html

  * igt@kms_draw_crc@draw-method-rgb565-render-ytiled:
    - shard-glk:          [PASS][67] -> [FAIL][68] ([i915#52] / [i915#54]) +5 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109274]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-suspend@b-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][70] ([i915#180])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl8/igt@kms_flip@flip-vs-suspend@b-dp1.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-snb:          NOTRUN -> [SKIP][72] ([fdo#109271]) +462 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-snb6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#2587]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
    - shard-apl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2642])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
    - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2642])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2642])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-apl:          NOTRUN -> [FAIL][77] ([i915#2641])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-glk:          [PASS][78] -> [FAIL][79] ([i915#49])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([fdo#111825]) +19 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109280]) +11 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][82] -> [SKIP][83] ([i915#433])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html

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

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

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2733])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
    - shard-kbl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2733])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl1/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
    - shard-glk:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2733])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +7 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
    - shard-iclb:         NOTRUN -> [SKIP][91] ([i915#658])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
    - shard-glk:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#658])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#658]) +3 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl7/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][94] -> [SKIP][95] ([fdo#109642] / [fdo#111068] / [i915#658])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][96] -> [SKIP][97] ([fdo#109441])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html

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

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

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

  * igt@nouveau_crc@pipe-b-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][102] ([i915#2530]) +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb5/igt@nouveau_crc@pipe-b-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][103] ([i915#2530]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb2/igt@nouveau_crc@pipe-b-source-rg.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([fdo#109289]) +3 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb2/igt@perf@unprivileged-single-ctx-counters.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#109291]) +2 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-tglb1/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_test@nv_i915_sharing:
    - shard-iclb:         NOTRUN -> [SKIP][106] ([fdo#109291]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-iclb7/igt@prime_nv_test@nv_i915_sharing.html

  
#### Possible fixes ####

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

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [FAIL][109] ([i915#2842]) -> [PASS][110] +3 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_mmap_gtt@big-copy-odd:
    - shard-glk:          [FAIL][111] ([i915#307]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9891/shard-glk7/igt@gem_mmap_gtt@big-copy-odd.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5657/shard-glk5/igt@gem_mmap_gtt@big-copy-odd.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking@dp-1-pipe-b:
    - shard-apl:          [FAIL][113] ([i915#3168]) -> [PASS][114]

== Logs ==

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

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

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

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

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

end of thread, other threads:[~2021-03-25 13:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-24 18:17 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Ville Syrjala
2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_cursor_crc: Extract run_size_tests() Ville Syrjala
2021-03-24 18:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_cursor_crc: Test maximum cursor size Ville Syrjala
2021-03-24 20:19   ` Lyude Paul
2021-03-25 11:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: Remove the max_w==max_h requirement Patchwork
2021-03-25 13:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.