public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos
@ 2020-03-27 13:12 Swati Sharma
  2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Swati Sharma @ 2020-03-27 13:12 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala

i915 implements immutable zpos property whereas the existing test
case is written to validate mutable zpos.

Added a new sub-test to validate immutable zpos. Test validates
the reported zpos property of plane by making sure only higher
zpos plane covers the lower zpos one (lower plane covers full screen,
upper plane is 64x64).

Only two planes at a time are tested in increasing fashion to avoid
combinatorial explosion. By transitive property,
if (p1, z1) < (p2, z2) and (p2, z2) < (p3, z3) then (p1, z1) < (p3, z3)

where p and z denotes planes and zpos

v2: -Removed intel only checks [Martin]
    -Used XRGB8888 pixel format as used in other IGTs
    -Added documentation [Martin]
    -Removed skip, instead continue if plane doesn't support zpos [Martin]
    -Sorted planes in increasing order of zpos [Martin]
v3: -Fix description [Martin]
    -Avoid sorting [Ankit]
v4: -Change in commit message [Ankit]
    -Few minor changes [Ankit]
v5: -Use igt_assert_lt() and not plain assert [Petri]
    -Changed upper plane to 64x64 [Ville]
    -Removed no-use break condition [Ville]
    -Enabled cursor test testing too, changed pixel format
     to ARGB8888 from XRGB8888 [Ville]
    -New FBs at every iteration is pointless, removed [Martin, Ville]

Issue: https://gitlab.freedesktop.org/drm/intel/issues/404
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Martin Peres <martin.peres@linux.intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 tests/kms_atomic.c | 157 ++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 147 insertions(+), 10 deletions(-)

diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index 8462d128..aacd83c5 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -121,7 +121,7 @@ static void plane_check_current_state(igt_plane_t *plane, const uint64_t *values
 }
 
 static void plane_commit(igt_plane_t *plane, enum igt_commit_style s,
-                                enum kms_atomic_check_relax relax)
+			 enum kms_atomic_check_relax relax)
 {
 	igt_display_commit2(plane->pipe->display, s);
 	plane_check_current_state(plane, plane->values, relax);
@@ -277,9 +277,9 @@ static uint32_t plane_get_igt_format(igt_plane_t *plane)
 }
 
 static void
-plane_primary_overlay_zpos(igt_pipe_t *pipe, igt_output_t *output,
-			   igt_plane_t *primary, igt_plane_t *overlay,
-			   uint32_t format_primary, uint32_t format_overlay)
+plane_primary_overlay_mutable_zpos(igt_pipe_t *pipe, igt_output_t *output,
+				   igt_plane_t *primary, igt_plane_t *overlay,
+				   uint32_t format_primary, uint32_t format_overlay)
 {
 	struct igt_fb fb_primary, fb_overlay;
 	drmModeModeInfo *mode = igt_output_get_mode(output);
@@ -320,7 +320,7 @@ plane_primary_overlay_zpos(igt_pipe_t *pipe, igt_output_t *output,
 	igt_plane_set_prop_value(overlay, IGT_PLANE_ZPOS, 1);
 
 	igt_info("Committing with overlay on top, it has a hole "\
-		  "through which the primary should be seen\n");
+		 "through which the primary should be seen\n");
 	plane_commit(primary, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
 
 	igt_assert_eq_u64(igt_plane_get_prop(primary, IGT_PLANE_ZPOS), 0);
@@ -346,7 +346,7 @@ plane_primary_overlay_zpos(igt_pipe_t *pipe, igt_output_t *output,
 	igt_put_cairo_ctx(pipe->display->drm_fd, &fb_primary, cr);
 
 	igt_info("Committing with a hole in the primary through "\
-		  "which the underlay should be seen\n");
+		 "which the underlay should be seen\n");
 	plane_commit(primary, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
 
 	/* reset it back to initial state */
@@ -358,6 +358,133 @@ plane_primary_overlay_zpos(igt_pipe_t *pipe, igt_output_t *output,
 	igt_assert_eq_u64(igt_plane_get_prop(overlay, IGT_PLANE_ZPOS), 1);
 }
 
+static void
+plane_immutable_zpos(igt_display_t *display, igt_pipe_t *pipe,
+		     igt_output_t *output)
+{
+	cairo_t *cr;
+	struct igt_fb fb_ref;
+	igt_plane_t *primary;
+	drmModeModeInfo *mode;
+	igt_pipe_crc_t *pipe_crc;
+	igt_crc_t ref_crc, new_crc;
+	int fb_id_lower, fb_id_upper;
+	int n_planes = pipe->n_planes;
+	igt_plane_t *plane_ptr[n_planes];
+	struct igt_fb fb_lower, fb_upper;
+	uint32_t w_lower, h_lower, w_upper, h_upper;
+
+	igt_require(n_planes >= 2);
+
+	mode = igt_output_get_mode(output);
+	primary = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+
+	/* for lower plane */
+	w_lower = mode->hdisplay;
+	h_lower = mode->vdisplay;
+
+	/* for upper plane */
+	w_upper = 64;
+	h_upper = 64;
+
+	igt_create_color_fb(display->drm_fd,
+			    w_lower, h_lower,
+			    DRM_FORMAT_ARGB8888,
+			    I915_TILING_NONE,
+			    0.0, 0.0, 0.0, &fb_ref);
+
+	/* create reference image */
+	cr = igt_get_cairo_ctx(display->drm_fd, &fb_ref);
+	igt_assert(cairo_status(cr) == 0);
+	igt_paint_color(cr, 0, 0, w_lower, h_lower, 0.0, 0.0, 1.0);
+	igt_paint_color(cr, w_upper / 2, h_upper / 2, w_upper, h_upper, 1.0, 1.0, 0.0);
+	igt_put_cairo_ctx(display->drm_fd, &fb_ref, cr);
+	igt_plane_set_fb(primary, &fb_ref);
+	igt_display_commit2(display, COMMIT_ATOMIC);
+
+	/* create the pipe_crc object for this pipe */
+	pipe_crc = igt_pipe_crc_new(pipe->display->drm_fd, pipe->pipe,
+				    INTEL_PIPE_CRC_SOURCE_AUTO);
+
+	/* get reference crc */
+	igt_pipe_crc_start(pipe_crc);
+	igt_pipe_crc_get_current(display->drm_fd, pipe_crc, &ref_crc);
+
+	igt_plane_set_fb(primary, NULL);
+
+	for (int k = 0; k < n_planes; k++) {
+		int zpos;
+		igt_plane_t *temp;
+
+		temp = &display->pipes[pipe->pipe].planes[k];
+
+		if (!igt_plane_has_prop(temp, IGT_PLANE_ZPOS))
+			continue;
+
+		zpos = igt_plane_get_prop(temp, IGT_PLANE_ZPOS);
+		igt_assert_lt(zpos, n_planes);
+
+		plane_ptr[zpos] = temp;
+	}
+
+	fb_id_lower = igt_create_color_fb(display->drm_fd,
+					  w_lower, h_lower,
+					  DRM_FORMAT_ARGB8888,
+					  I915_TILING_NONE,
+					  0.0, 0.0, 1.0, &fb_lower);
+	igt_assert(fb_id_lower);
+
+	fb_id_upper = igt_create_color_fb(display->drm_fd,
+					  w_upper, h_upper,
+					  DRM_FORMAT_ARGB8888,
+					  I915_TILING_NONE,
+					  1.0, 1.0, 0.0, &fb_upper);
+	igt_assert(fb_id_upper);
+
+	/*
+	 * checking only pairs of plane in increasing fashion
+	 * to avoid combinatorial explosion
+	 */
+	for (int i = 0; i < n_planes - 1; i++) {
+		igt_plane_t *plane_lower, *plane_upper;
+
+		if (plane_ptr[i] != NULL)
+			plane_lower = plane_ptr[i];
+		else
+			continue;
+
+		while (i  < (n_planes - 1)) {
+			if (plane_ptr[i + 1] != NULL) {
+				plane_upper = plane_ptr[i + 1];
+				break;
+			} else {
+				i++;
+				continue;
+			}
+		}
+
+		igt_plane_set_position(plane_lower, 0, 0);
+		igt_plane_set_fb(plane_lower, &fb_lower);
+
+		igt_plane_set_position(plane_upper, w_upper / 2, h_upper / 2);
+		igt_plane_set_fb(plane_upper, &fb_upper);
+
+		igt_info("Committing with the plane[%d] underneath "\
+			 "plane[%d]\n", i, (i + 1));
+		igt_display_commit2(display, COMMIT_ATOMIC);
+		igt_pipe_crc_get_current(pipe->display->drm_fd, pipe_crc, &new_crc);
+
+		igt_assert_crc_equal(&ref_crc, &new_crc);
+
+		igt_plane_set_fb(plane_lower, NULL);
+		igt_plane_set_fb(plane_upper, NULL);
+	}
+
+	igt_remove_fb(display->drm_fd, &fb_ref);
+	igt_remove_fb(display->drm_fd, &fb_lower);
+	igt_remove_fb(display->drm_fd, &fb_upper);
+}
+
 static void plane_overlay(igt_pipe_t *pipe, igt_output_t *output, igt_plane_t *plane)
 {
 	drmModeModeInfo *mode = igt_output_get_mode(output);
@@ -987,14 +1114,16 @@ igt_main
 		plane_primary(pipe_obj, primary, &fb);
 	}
 
-	igt_subtest("plane_primary_overlay_zpos") {
+	igt_describe("Verify that the overlay plane can cover the primary one (and "\
+		     "vice versa) by changing their zpos property.");
+	igt_subtest("plane_primary_overlay_mutable_zpos") {
 		uint32_t format_primary = DRM_FORMAT_ARGB8888;
 		uint32_t format_overlay = DRM_FORMAT_ARGB1555;
 
 		igt_plane_t *overlay =
 			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
-
 		igt_require(overlay);
+
 		igt_require(igt_plane_has_prop(primary, IGT_PLANE_ZPOS));
 		igt_require(igt_plane_has_prop(overlay, IGT_PLANE_ZPOS));
 
@@ -1002,8 +1131,15 @@ igt_main
 		igt_require(igt_plane_has_format_mod(overlay, format_overlay, 0x0));
 
 		igt_output_set_pipe(output, pipe);
-		plane_primary_overlay_zpos(pipe_obj, output, primary, overlay,
-					   format_primary, format_overlay);
+		plane_primary_overlay_mutable_zpos(pipe_obj, output, primary, overlay,
+						   format_primary, format_overlay);
+	}
+
+	igt_describe("Verify the reported zpos property of planes by making sure "\
+		     "only higher zpos planes cover the lower zpos ones.");
+	igt_subtest("plane_immutable_zpos") {
+		igt_output_set_pipe(output, pipe);
+		plane_immutable_zpos(&display, pipe_obj, output);
 	}
 
 	igt_subtest("test_only") {
@@ -1011,6 +1147,7 @@ igt_main
 
 		test_only(pipe_obj, primary, output);
 	}
+
 	igt_subtest("plane_cursor_legacy") {
 		igt_plane_t *cursor =
 			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_CURSOR);
-- 
2.25.1

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

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

* [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention
  2020-03-27 13:12 [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos Swati Sharma
@ 2020-03-27 13:12 ` Swati Sharma
  2020-03-27 13:29   ` Peres, Martin
  2020-03-27 13:43   ` Ville Syrjälä
  2020-03-27 13:55 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 7+ messages in thread
From: Swati Sharma @ 2020-03-27 13:12 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala

All the subtests in kms_atomic have test names in non-standard
convention, changing those to standard convention. '-' is the normal
delimeter in subtest names.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_atomic.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index aacd83c5..f80b5189 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -1098,7 +1098,7 @@ igt_main
 				      LOCAL_DRM_FORMAT_MOD_NONE, &fb);
 	}
 
-	igt_subtest("plane_overlay_legacy") {
+	igt_subtest("plane-overlay-legacy") {
 		igt_plane_t *overlay =
 			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
 
@@ -1108,7 +1108,7 @@ igt_main
 		plane_overlay(pipe_obj, output, overlay);
 	}
 
-	igt_subtest("plane_primary_legacy") {
+	igt_subtest("plane-primary-legacy") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		plane_primary(pipe_obj, primary, &fb);
@@ -1116,7 +1116,7 @@ igt_main
 
 	igt_describe("Verify that the overlay plane can cover the primary one (and "\
 		     "vice versa) by changing their zpos property.");
-	igt_subtest("plane_primary_overlay_mutable_zpos") {
+	igt_subtest("plane-primary-overlay-mutable-zpos") {
 		uint32_t format_primary = DRM_FORMAT_ARGB8888;
 		uint32_t format_overlay = DRM_FORMAT_ARGB1555;
 
@@ -1137,18 +1137,18 @@ igt_main
 
 	igt_describe("Verify the reported zpos property of planes by making sure "\
 		     "only higher zpos planes cover the lower zpos ones.");
-	igt_subtest("plane_immutable_zpos") {
+	igt_subtest("plane-immutable-zpos") {
 		igt_output_set_pipe(output, pipe);
 		plane_immutable_zpos(&display, pipe_obj, output);
 	}
 
-	igt_subtest("test_only") {
+	igt_subtest("test-only") {
 		atomic_clear(&display, pipe, primary, output);
 
 		test_only(pipe_obj, primary, output);
 	}
 
-	igt_subtest("plane_cursor_legacy") {
+	igt_subtest("plane-cursor-legacy") {
 		igt_plane_t *cursor =
 			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_CURSOR);
 
@@ -1158,31 +1158,31 @@ igt_main
 		plane_cursor(pipe_obj, output, cursor);
 	}
 
-	igt_subtest("plane_invalid_params") {
+	igt_subtest("plane-invalid-params") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		plane_invalid_params(pipe_obj, output, primary, &fb);
 	}
 
-	igt_subtest("plane_invalid_params_fence") {
+	igt_subtest("plane-invalid-params-fence") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		plane_invalid_params_fence(pipe_obj, output, primary);
 	}
 
-	igt_subtest("crtc_invalid_params") {
+	igt_subtest("crtc-invalid-params") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		crtc_invalid_params(pipe_obj, output, primary, &fb);
 	}
 
-	igt_subtest("crtc_invalid_params_fence") {
+	igt_subtest("crtc-invalid-params-fence") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		crtc_invalid_params_fence(pipe_obj, output, primary, &fb);
 	}
 
-	igt_subtest("atomic_invalid_params") {
+	igt_subtest("atomic-invalid-params") {
 		atomic_setup(&display, pipe, output, primary, &fb);
 
 		atomic_invalid_params(pipe_obj, primary, output, &fb);
-- 
2.25.1

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

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

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention
  2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
@ 2020-03-27 13:29   ` Peres, Martin
  2020-03-27 13:43   ` Ville Syrjälä
  1 sibling, 0 replies; 7+ messages in thread
From: Peres, Martin @ 2020-03-27 13:29 UTC (permalink / raw)
  To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Latvala, Petri

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

On 2020-03-27 15:12, Swati Sharma wrote:
> All the subtests in kms_atomic have test names in non-standard
> convention, changing those to standard convention. '-' is the normal
> delimeter in subtest names.
> 
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>

Please do not merge this patch until cibuglog learns about these
renames. I'll do it when the patch gets R-b someone.

Martin

> ---
>  tests/kms_atomic.c | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
> index aacd83c5..f80b5189 100644
> --- a/tests/kms_atomic.c
> +++ b/tests/kms_atomic.c
> @@ -1098,7 +1098,7 @@ igt_main
>  				      LOCAL_DRM_FORMAT_MOD_NONE, &fb);
>  	}
>  
> -	igt_subtest("plane_overlay_legacy") {
> +	igt_subtest("plane-overlay-legacy") {
>  		igt_plane_t *overlay =
>  			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
>  
> @@ -1108,7 +1108,7 @@ igt_main
>  		plane_overlay(pipe_obj, output, overlay);
>  	}
>  
> -	igt_subtest("plane_primary_legacy") {
> +	igt_subtest("plane-primary-legacy") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_primary(pipe_obj, primary, &fb);
> @@ -1116,7 +1116,7 @@ igt_main
>  
>  	igt_describe("Verify that the overlay plane can cover the primary one (and "\
>  		     "vice versa) by changing their zpos property.");
> -	igt_subtest("plane_primary_overlay_mutable_zpos") {
> +	igt_subtest("plane-primary-overlay-mutable-zpos") {
>  		uint32_t format_primary = DRM_FORMAT_ARGB8888;
>  		uint32_t format_overlay = DRM_FORMAT_ARGB1555;
>  
> @@ -1137,18 +1137,18 @@ igt_main
>  
>  	igt_describe("Verify the reported zpos property of planes by making sure "\
>  		     "only higher zpos planes cover the lower zpos ones.");
> -	igt_subtest("plane_immutable_zpos") {
> +	igt_subtest("plane-immutable-zpos") {
>  		igt_output_set_pipe(output, pipe);
>  		plane_immutable_zpos(&display, pipe_obj, output);
>  	}
>  
> -	igt_subtest("test_only") {
> +	igt_subtest("test-only") {
>  		atomic_clear(&display, pipe, primary, output);
>  
>  		test_only(pipe_obj, primary, output);
>  	}
>  
> -	igt_subtest("plane_cursor_legacy") {
> +	igt_subtest("plane-cursor-legacy") {
>  		igt_plane_t *cursor =
>  			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_CURSOR);
>  
> @@ -1158,31 +1158,31 @@ igt_main
>  		plane_cursor(pipe_obj, output, cursor);
>  	}
>  
> -	igt_subtest("plane_invalid_params") {
> +	igt_subtest("plane-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_invalid_params(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("plane_invalid_params_fence") {
> +	igt_subtest("plane-invalid-params-fence") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_invalid_params_fence(pipe_obj, output, primary);
>  	}
>  
> -	igt_subtest("crtc_invalid_params") {
> +	igt_subtest("crtc-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		crtc_invalid_params(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("crtc_invalid_params_fence") {
> +	igt_subtest("crtc-invalid-params-fence") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		crtc_invalid_params_fence(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("atomic_invalid_params") {
> +	igt_subtest("atomic-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		atomic_invalid_params(pipe_obj, primary, output, &fb);
> 


[-- Attachment #2: pEpkey.asc --]
[-- Type: application/pgp-keys, Size: 1774 bytes --]

[-- Attachment #3: 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] 7+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention
  2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
  2020-03-27 13:29   ` Peres, Martin
@ 2020-03-27 13:43   ` Ville Syrjälä
  1 sibling, 0 replies; 7+ messages in thread
From: Ville Syrjälä @ 2020-03-27 13:43 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev, petri.latvala

On Fri, Mar 27, 2020 at 06:42:22PM +0530, Swati Sharma wrote:
> All the subtests in kms_atomic have test names in non-standard
> convention, changing those to standard convention. '-' is the normal
> delimeter in subtest names.
> 
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

I do see a handful of other tests have adopted the '_' convention as
well, but the majority do use '-'.

> ---
>  tests/kms_atomic.c | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
> index aacd83c5..f80b5189 100644
> --- a/tests/kms_atomic.c
> +++ b/tests/kms_atomic.c
> @@ -1098,7 +1098,7 @@ igt_main
>  				      LOCAL_DRM_FORMAT_MOD_NONE, &fb);
>  	}
>  
> -	igt_subtest("plane_overlay_legacy") {
> +	igt_subtest("plane-overlay-legacy") {
>  		igt_plane_t *overlay =
>  			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
>  
> @@ -1108,7 +1108,7 @@ igt_main
>  		plane_overlay(pipe_obj, output, overlay);
>  	}
>  
> -	igt_subtest("plane_primary_legacy") {
> +	igt_subtest("plane-primary-legacy") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_primary(pipe_obj, primary, &fb);
> @@ -1116,7 +1116,7 @@ igt_main
>  
>  	igt_describe("Verify that the overlay plane can cover the primary one (and "\
>  		     "vice versa) by changing their zpos property.");
> -	igt_subtest("plane_primary_overlay_mutable_zpos") {
> +	igt_subtest("plane-primary-overlay-mutable-zpos") {
>  		uint32_t format_primary = DRM_FORMAT_ARGB8888;
>  		uint32_t format_overlay = DRM_FORMAT_ARGB1555;
>  
> @@ -1137,18 +1137,18 @@ igt_main
>  
>  	igt_describe("Verify the reported zpos property of planes by making sure "\
>  		     "only higher zpos planes cover the lower zpos ones.");
> -	igt_subtest("plane_immutable_zpos") {
> +	igt_subtest("plane-immutable-zpos") {
>  		igt_output_set_pipe(output, pipe);
>  		plane_immutable_zpos(&display, pipe_obj, output);
>  	}
>  
> -	igt_subtest("test_only") {
> +	igt_subtest("test-only") {
>  		atomic_clear(&display, pipe, primary, output);
>  
>  		test_only(pipe_obj, primary, output);
>  	}
>  
> -	igt_subtest("plane_cursor_legacy") {
> +	igt_subtest("plane-cursor-legacy") {
>  		igt_plane_t *cursor =
>  			igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_CURSOR);
>  
> @@ -1158,31 +1158,31 @@ igt_main
>  		plane_cursor(pipe_obj, output, cursor);
>  	}
>  
> -	igt_subtest("plane_invalid_params") {
> +	igt_subtest("plane-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_invalid_params(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("plane_invalid_params_fence") {
> +	igt_subtest("plane-invalid-params-fence") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		plane_invalid_params_fence(pipe_obj, output, primary);
>  	}
>  
> -	igt_subtest("crtc_invalid_params") {
> +	igt_subtest("crtc-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		crtc_invalid_params(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("crtc_invalid_params_fence") {
> +	igt_subtest("crtc-invalid-params-fence") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		crtc_invalid_params_fence(pipe_obj, output, primary, &fb);
>  	}
>  
> -	igt_subtest("atomic_invalid_params") {
> +	igt_subtest("atomic-invalid-params") {
>  		atomic_setup(&display, pipe, output, primary, &fb);
>  
>  		atomic_invalid_params(pipe_obj, primary, output, &fb);
> -- 
> 2.25.1

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
  2020-03-27 13:12 [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos Swati Sharma
  2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
@ 2020-03-27 13:55 ` Patchwork
  2020-03-27 14:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2020-03-28 14:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-03-27 13:55 UTC (permalink / raw)
  To: Sharma, Swati2; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
URL   : https://patchwork.freedesktop.org/series/75170/
State : failure

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_atomic@atomic-invalid-params
kms_atomic@crtc-invalid-params
kms_atomic@crtc-invalid-params-fence
kms_atomic@plane-cursor-legacy
kms_atomic@plane-invalid-params
kms_atomic@plane-invalid-params-fence
kms_atomic@plane-overlay-legacy
kms_atomic@plane-primary-legacy
kms_atomic@test-only

Can you document them as per the requirement in the [CONTRIBUTING.md]?

[Documentation] has more details on how to do this.

Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d

Thanks in advance!

[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe

Other than that, pipeline status: SUCCESS.

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

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/125276
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
  2020-03-27 13:12 [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos Swati Sharma
  2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
  2020-03-27 13:55 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos Patchwork
@ 2020-03-27 14:09 ` Patchwork
  2020-03-28 14:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-03-27 14:09 UTC (permalink / raw)
  To: Sharma, Swati2; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
URL   : https://patchwork.freedesktop.org/series/75170/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8202 -> IGTPW_4366
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@execlists:
    - fi-skl-6600u:       [PASS][1] -> [INCOMPLETE][2] ([i915#656])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/fi-skl-6600u/igt@i915_selftest@live@execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/fi-skl-6600u/igt@i915_selftest@live@execlists.html
    - fi-bxt-dsi:         [PASS][3] -> [INCOMPLETE][4] ([fdo#103927] / [i915#656])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/fi-bxt-dsi/igt@i915_selftest@live@execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/fi-bxt-dsi/igt@i915_selftest@live@execlists.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-kefka:       [DMESG-FAIL][5] ([i915#1314]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/fi-bsw-kefka/igt@i915_selftest@live@execlists.html

  
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [i915#1314]: https://gitlab.freedesktop.org/drm/intel/issues/1314
  [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656


Participating hosts (47 -> 42)
------------------------------

  Additional (2): fi-skl-lmem fi-kbl-7560u 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5542 -> IGTPW_4366

  CI-20190529: 20190529
  CI_DRM_8202: 3d926ba12446374635f2fc299233742ffc1ba69a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/index.html
  IGT_5542: 633ae927e4924006040f075841ef8d98751ce3b4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_atomic@atomic-invalid-params
+igt@kms_atomic@crtc-invalid-params
+igt@kms_atomic@crtc-invalid-params-fence
+igt@kms_atomic@plane-cursor-legacy
+igt@kms_atomic@plane-immutable-zpos
+igt@kms_atomic@plane-invalid-params
+igt@kms_atomic@plane-invalid-params-fence
+igt@kms_atomic@plane-overlay-legacy
+igt@kms_atomic@plane-primary-legacy
+igt@kms_atomic@plane-primary-overlay-mutable-zpos
+igt@kms_atomic@test-only
-igt@kms_atomic@atomic_invalid_params
-igt@kms_atomic@crtc_invalid_params
-igt@kms_atomic@crtc_invalid_params_fence
-igt@kms_atomic@plane_cursor_legacy
-igt@kms_atomic@plane_invalid_params
-igt@kms_atomic@plane_invalid_params_fence
-igt@kms_atomic@plane_overlay_legacy
-igt@kms_atomic@plane_primary_legacy
-igt@kms_atomic@plane_primary_overlay_zpos
-igt@kms_atomic@test_only

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
  2020-03-27 13:12 [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos Swati Sharma
                   ` (2 preceding siblings ...)
  2020-03-27 14:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-03-28 14:13 ` Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-03-28 14:13 UTC (permalink / raw)
  To: Sharma, Swati2; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos
URL   : https://patchwork.freedesktop.org/series/75170/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8202_full -> IGTPW_4366_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_atomic@plane-immutable-zpos} (NEW):
    - shard-snb:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-snb5/igt@kms_atomic@plane-immutable-zpos.html
    - shard-hsw:          NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw8/igt@kms_atomic@plane-immutable-zpos.html
    - shard-kbl:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl4/igt@kms_atomic@plane-immutable-zpos.html
    - shard-apl:          NOTRUN -> [FAIL][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl4/igt@kms_atomic@plane-immutable-zpos.html
    - shard-glk:          NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-glk2/igt@kms_atomic@plane-immutable-zpos.html

  * {igt@kms_atomic@plane-primary-overlay-mutable-zpos} (NEW):
    - shard-tglb:         NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
    - shard-iclb:         NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  
#### Suppressed ####

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

  * {igt@gem_ctx_shared@q-independent@vcs0}:
    - shard-tglb:         [PASS][8] -> [FAIL][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb7/igt@gem_ctx_shared@q-independent@vcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb1/igt@gem_ctx_shared@q-independent@vcs0.html

  * {igt@gem_ctx_shared@q-independent@vecs0}:
    - shard-iclb:         [PASS][10] -> [FAIL][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb4/igt@gem_ctx_shared@q-independent@vecs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb8/igt@gem_ctx_shared@q-independent@vecs0.html

  
New tests
---------

  New tests have been introduced between CI_DRM_8202_full and IGTPW_4366_full:

### New IGT tests (11) ###

  * igt@kms_atomic@atomic-invalid-params:
    - Statuses : 7 pass(s)
    - Exec time: [0.07, 0.23] s

  * igt@kms_atomic@crtc-invalid-params:
    - Statuses : 7 pass(s)
    - Exec time: [0.02, 0.19] s

  * igt@kms_atomic@crtc-invalid-params-fence:
    - Statuses : 7 pass(s)
    - Exec time: [0.05, 0.23] s

  * igt@kms_atomic@plane-cursor-legacy:
    - Statuses : 7 pass(s)
    - Exec time: [0.05, 0.19] s

  * igt@kms_atomic@plane-immutable-zpos:
    - Statuses : 5 fail(s) 2 pass(s)
    - Exec time: [0.05, 0.51] s

  * igt@kms_atomic@plane-invalid-params:
    - Statuses : 5 pass(s)
    - Exec time: [0.08, 0.24] s

  * igt@kms_atomic@plane-invalid-params-fence:
    - Statuses : 7 pass(s)
    - Exec time: [0.02, 0.17] s

  * igt@kms_atomic@plane-overlay-legacy:
    - Statuses : 7 pass(s)
    - Exec time: [0.10, 0.28] s

  * igt@kms_atomic@plane-primary-legacy:
    - Statuses : 7 pass(s)
    - Exec time: [0.09, 0.31] s

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@kms_atomic@test-only:
    - Statuses : 7 pass(s)
    - Exec time: [0.23, 2.63] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@implicit-read-write-bsd1:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#109276] / [i915#677])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb4/igt@gem_exec_schedule@implicit-read-write-bsd1.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb5/igt@gem_exec_schedule@implicit-read-write-bsd1.html

  * igt@gem_exec_schedule@pi-shared-iova-bsd:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([i915#677]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb3/igt@gem_exec_schedule@pi-shared-iova-bsd.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb4/igt@gem_exec_schedule@pi-shared-iova-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([fdo#109276]) +17 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][18] -> [SKIP][19] ([fdo#112146]) +4 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-iclb:         [PASS][20] -> [INCOMPLETE][21] ([i915#1373])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb2/igt@gem_exec_suspend@basic-s4-devices.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_wait@await-vcs1:
    - shard-iclb:         [PASS][22] -> [SKIP][23] ([fdo#112080]) +6 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb2/igt@gem_wait@await-vcs1.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb3/igt@gem_wait@await-vcs1.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-glk:          [PASS][24] -> [FAIL][25] ([i915#1527])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-glk2/igt@i915_pm_rc6_residency@rc6-idle.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-glk8/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_busy@basic-flip-pipe-a:
    - shard-snb:          [PASS][26] -> [DMESG-WARN][27] ([i915#478])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-snb2/igt@kms_busy@basic-flip-pipe-a.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-snb1/igt@kms_busy@basic-flip-pipe-a.html
    - shard-hsw:          [PASS][28] -> [DMESG-WARN][29] ([i915#478])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw5/igt@kms_busy@basic-flip-pipe-a.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw5/igt@kms_busy@basic-flip-pipe-a.html

  * igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen:
    - shard-kbl:          [PASS][30] -> [FAIL][31] ([i915#54] / [i915#93] / [i915#95])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html

  * igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled:
    - shard-glk:          [PASS][32] -> [FAIL][33] ([i915#52] / [i915#54])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-ytiled.html

  * igt@kms_flip@basic-plain-flip:
    - shard-apl:          [PASS][34] -> [DMESG-WARN][35] ([i915#1297])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl4/igt@kms_flip@basic-plain-flip.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl3/igt@kms_flip@basic-plain-flip.html
    - shard-kbl:          [PASS][36] -> [DMESG-WARN][37] ([i915#1297])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl3/igt@kms_flip@basic-plain-flip.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl7/igt@kms_flip@basic-plain-flip.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [PASS][38] -> [INCOMPLETE][39] ([i915#61])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw8/igt@kms_flip@flip-vs-suspend.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw8/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [PASS][40] -> [DMESG-WARN][41] ([i915#180]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][42] -> [SKIP][43] ([i915#433])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [PASS][44] -> [DMESG-WARN][45] ([i915#180]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_cursor@pipe-a-viewport-size-256:
    - shard-apl:          [PASS][46] -> [FAIL][47] ([i915#95])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl3/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl8/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
    - shard-kbl:          [PASS][48] -> [FAIL][49] ([i915#93] / [i915#95])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl6/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl3/igt@kms_plane_cursor@pipe-a-viewport-size-256.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [PASS][50] -> [SKIP][51] ([fdo#109642] / [fdo#111068])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb1/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][52] -> [SKIP][53] ([fdo#109441]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb3/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [PASS][54] -> [FAIL][55] ([i915#31])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl7/igt@kms_setmode@basic.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl2/igt@kms_setmode@basic.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [PASS][56] -> [FAIL][57] ([i915#1085])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb1/igt@perf@gen12-mi-rpc.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb3/igt@perf@gen12-mi-rpc.html

  
#### Possible fixes ####

  * igt@gem_busy@busy-vcs1:
    - shard-iclb:         [SKIP][58] ([fdo#112080]) -> [PASS][59] +11 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb5/igt@gem_busy@busy-vcs1.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb4/igt@gem_busy@busy-vcs1.html

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [DMESG-WARN][60] ([i915#180] / [i915#93] / [i915#95]) -> [PASS][61] +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl2/igt@gem_eio@in-flight-suspend.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl1/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_async@concurrent-writes-bsd:
    - shard-iclb:         [SKIP][62] ([fdo#112146]) -> [PASS][63] +2 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb5/igt@gem_exec_async@concurrent-writes-bsd.html

  * igt@gem_exec_balancer@hang:
    - shard-tglb:         [FAIL][64] ([i915#1277]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb5/igt@gem_exec_balancer@hang.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb7/igt@gem_exec_balancer@hang.html

  * igt@gem_exec_schedule@implicit-both-bsd2:
    - shard-iclb:         [SKIP][66] ([fdo#109276] / [i915#677]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb5/igt@gem_exec_schedule@implicit-both-bsd2.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd2.html

  * igt@gem_exec_schedule@pi-common-bsd1:
    - shard-iclb:         [SKIP][68] ([fdo#109276]) -> [PASS][69] +11 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb6/igt@gem_exec_schedule@pi-common-bsd1.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@gem_exec_schedule@pi-common-bsd1.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-hsw:          [DMESG-WARN][70] ([fdo#111870]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw7/igt@gem_userptr_blits@dmabuf-unsync.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw6/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-snb:          [DMESG-WARN][72] ([fdo#111870] / [i915#478]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-snb4/igt@gem_userptr_blits@dmabuf-unsync.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - shard-tglb:         [SKIP][74] ([i915#1316]) -> [PASS][75] +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@pm-tiling:
    - shard-iclb:         [SKIP][76] ([i915#1316]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb4/igt@i915_pm_rpm@pm-tiling.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb4/igt@i915_pm_rpm@pm-tiling.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x64-offscreen:
    - shard-kbl:          [FAIL][78] ([i915#54] / [i915#93] / [i915#95]) -> [PASS][79] +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-64x64-offscreen.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-64x64-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][80] ([i915#180]) -> [PASS][81] +3 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][82] ([fdo#109349]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_draw_crc@draw-method-rgb565-blt-ytiled:
    - shard-glk:          [FAIL][84] ([i915#52] / [i915#54]) -> [PASS][85] +4 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-glk5/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-glk7/igt@kms_draw_crc@draw-method-rgb565-blt-ytiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled:
    - shard-kbl:          [FAIL][86] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95]) -> [PASS][87] +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl7/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl1/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
    - shard-apl:          [FAIL][88] ([i915#52] / [i915#54] / [i915#95]) -> [PASS][89] +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl8/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl4/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [DMESG-WARN][90] ([i915#180] / [i915#95]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-kbl:          [FAIL][92] ([i915#49]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
    - shard-apl:          [FAIL][94] ([i915#49]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_plane_cursor@pipe-a-overlay-size-64:
    - shard-apl:          [FAIL][96] ([i915#95]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl2/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl1/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
    - shard-kbl:          [FAIL][98] ([i915#93] / [i915#95]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl2/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl3/igt@kms_plane_cursor@pipe-a-overlay-size-64.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][100] ([fdo#109441]) -> [PASS][101] +3 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_vblank@pipe-a-wait-forked-busy:
    - shard-snb:          [SKIP][102] ([fdo#109271]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-snb4/igt@kms_vblank@pipe-a-wait-forked-busy.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-snb1/igt@kms_vblank@pipe-a-wait-forked-busy.html

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-apl:          [DMESG-WARN][104] ([i915#180]) -> [PASS][105] +2 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html

  * igt@perf_pmu@rc6-runtime-pm:
    - shard-glk:          [SKIP][106] ([fdo#109271]) -> [PASS][107] +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-glk5/igt@perf_pmu@rc6-runtime-pm.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-glk1/igt@perf_pmu@rc6-runtime-pm.html
    - shard-tglb:         [SKIP][108] ([fdo#111719]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb2/igt@perf_pmu@rc6-runtime-pm.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb2/igt@perf_pmu@rc6-runtime-pm.html
    - shard-hsw:          [SKIP][110] ([fdo#109271]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw7/igt@perf_pmu@rc6-runtime-pm.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw6/igt@perf_pmu@rc6-runtime-pm.html
    - shard-iclb:         [SKIP][112] ([i915#293]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-iclb4/igt@perf_pmu@rc6-runtime-pm.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-iclb6/igt@perf_pmu@rc6-runtime-pm.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][114] ([i915#454]) -> [SKIP][115] ([i915#468])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-tglb6/igt@i915_pm_dc@dc6-psr.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          [FAIL][116] ([fdo#108145] / [i915#95]) -> [FAIL][117] ([fdo#108145])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb:
    - shard-kbl:          [FAIL][118] ([fdo#108145]) -> [FAIL][119] ([fdo#108145] / [i915#93] / [i915#95])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb.html
    - shard-apl:          [FAIL][120] ([fdo#108145]) -> [FAIL][121] ([fdo#108145] / [i915#95]) +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-apl6/igt@kms_plane_alpha_blend@pipe-c-alpha-transparant-fb.html

  * igt@runner@aborted:
    - shard-hsw:          ([FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128]) ([fdo#111870] / [i915#1485]) -> ([FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([fdo#111870] / [i915#1485] / [i915#478])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw4/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw8/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw8/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw8/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw7/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw8/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8202/shard-hsw4/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw5/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw4/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw5/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw6/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw2/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw2/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw8/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw7/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/shard-hsw4/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#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111719]: https://bugs.freedesktop.org/show_bug.cgi?id=111719
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
  [i915#1277]: https://gitlab.freedesktop.org/drm/intel/issues/1277
  [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373
  [i915#1485]: https://gitlab.freedesktop.org/drm/intel/issues/1485
  [i915#1527]: https://gitlab.freedesktop.org/drm/intel/issues/1527
  [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#293]: https://gitlab.freedesktop.org/drm/intel/issues/293
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
  [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (10 -> 8)
------------------------------

  Missing    (2): pig-skl-6260u pig-glk-j5005 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5542 -> IGTPW_4366
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8202: 3d926ba12446374635f2fc299233742ffc1ba69a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/index.html
  IGT_5542: 633ae927e4924006040f075841ef8d98751ce3b4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4366/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-03-28 14:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-27 13:12 [igt-dev] [PATCH i-g-t v5 1/2] tests/kms_atomic: Add test to validate immutable zpos Swati Sharma
2020-03-27 13:12 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_atomic: Changed test names into standard convention Swati Sharma
2020-03-27 13:29   ` Peres, Martin
2020-03-27 13:43   ` Ville Syrjälä
2020-03-27 13:55 ` [igt-dev] ✗ GitLab.Pipeline: failure for series starting with [i-g-t,v5,1/2] tests/kms_atomic: Add test to validate immutable zpos Patchwork
2020-03-27 14:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-03-28 14:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox