All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
@ 2020-09-08  9:04 Sowmya Kaparthi
  2020-09-09  6:51 ` Kahola, Mika
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Sowmya Kaparthi @ 2020-09-08  9:04 UTC (permalink / raw)
  To: igt-dev, james.ausmus, mika.kahola, sowmyax.kaparthi

Depending on pixel format minimum width and height can be as
high as 20. Set width and height to 20. Remove is_planar_yuv_format,
no longer used.

Cc: Ausmus, James <james.ausmus@intel.com>
Signed-off-by: Sowmya Kaparthi <sowmyax.kaparthi@intel.com>
---
 tests/kms_plane_scaling.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 19087286..ecd2c2e3 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -62,19 +62,6 @@ static int get_num_scalers(data_t* d, enum pipe pipe)
 		return 1;
 }
 
-static bool is_planar_yuv_format(uint32_t pixelformat)
-{
-	switch (pixelformat) {
-	case DRM_FORMAT_NV12:
-	case DRM_FORMAT_P010:
-	case DRM_FORMAT_P012:
-	case DRM_FORMAT_P016:
-		return true;
-	default:
-		return false;
-	}
-}
-
 static void cleanup_fbs(data_t *data)
 {
 	int i;
@@ -147,9 +134,7 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
 	mode = igt_output_get_mode(output);
 
 	/* create buffer in the range of  min and max source side limit.*/
-	width = height = 8;
-	if (is_i915_device(d->drm_fd) && is_planar_yuv_format(pixel_format))
-		width = height = 16;
+	width = height = 20;
 	igt_create_color_fb(display->drm_fd, width, height,
 		       pixel_format, tiling, 0.0, 1.0, 0.0, &d->fb[0]);
 	igt_plane_set_fb(plane, &d->fb[0]);
-- 
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] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
  2020-09-08  9:04 [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20 Sowmya Kaparthi
@ 2020-09-09  6:51 ` Kahola, Mika
  2020-09-09  9:07   ` Petri Latvala
  2020-09-09  9:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: set minimum height and width to 20 (rev3) Patchwork
  2020-09-09  9:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 1 reply; 7+ messages in thread
From: Kahola, Mika @ 2020-09-09  6:51 UTC (permalink / raw)
  To: Kaparthi, SowmyaX, igt-dev, Ausmus, James

> -----Original Message-----
> From: Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> Sent: Tuesday, September 8, 2020 12:05 PM
> To: igt-dev@lists.freedesktop.org; Ausmus, James
> <james.ausmus@intel.com>; Kahola, Mika <mika.kahola@intel.com>;
> Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> Subject: [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
> 
> Depending on pixel format minimum width and height can be as high as 20.
> Set width and height to 20. Remove is_planar_yuv_format, no longer used.
> 
> Cc: Ausmus, James <james.ausmus@intel.com>
> Signed-off-by: Sowmya Kaparthi <sowmyax.kaparthi@intel.com>

The patch look ok to me. The width and height can be divided by 4 and there's no need to have separate width and height for yuv and planar formats.

Reviewed-by: Mika Kahola <mika.kahola@intel.com>

> ---
>  tests/kms_plane_scaling.c | 17 +----------------
>  1 file changed, 1 insertion(+), 16 deletions(-)
> 
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index
> 19087286..ecd2c2e3 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -62,19 +62,6 @@ static int get_num_scalers(data_t* d, enum pipe pipe)
>  		return 1;
>  }
> 
> -static bool is_planar_yuv_format(uint32_t pixelformat) -{
> -	switch (pixelformat) {
> -	case DRM_FORMAT_NV12:
> -	case DRM_FORMAT_P010:
> -	case DRM_FORMAT_P012:
> -	case DRM_FORMAT_P016:
> -		return true;
> -	default:
> -		return false;
> -	}
> -}
> -
>  static void cleanup_fbs(data_t *data)
>  {
>  	int i;
> @@ -147,9 +134,7 @@ static void check_scaling_pipe_plane_rot(data_t *d,
> igt_plane_t *plane,
>  	mode = igt_output_get_mode(output);
> 
>  	/* create buffer in the range of  min and max source side limit.*/
> -	width = height = 8;
> -	if (is_i915_device(d->drm_fd) &&
> is_planar_yuv_format(pixel_format))
> -		width = height = 16;
> +	width = height = 20;
>  	igt_create_color_fb(display->drm_fd, width, height,
>  		       pixel_format, tiling, 0.0, 1.0, 0.0, &d->fb[0]);
>  	igt_plane_set_fb(plane, &d->fb[0]);
> --
> 2.25.1

_______________________________________________
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 tests/kms_plane_scaling: set minimum height and width to 20 (rev3)
  2020-09-08  9:04 [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20 Sowmya Kaparthi
  2020-09-09  6:51 ` Kahola, Mika
@ 2020-09-09  9:03 ` Patchwork
  2020-09-09  9:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-09-09  9:03 UTC (permalink / raw)
  To: Matt Atwood; +Cc: igt-dev


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

== Series Details ==

Series: tests/kms_plane_scaling: set minimum height and width to 20 (rev3)
URL   : https://patchwork.freedesktop.org/series/78536/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8989 -> IGTPW_4969
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_gttfill@basic:
    - fi-ilk-650:         [PASS][1] -> [INCOMPLETE][2] ([i915#2439])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-ilk-650/igt@gem_exec_gttfill@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-ilk-650/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_parallel@engines@basic:
    - fi-bsw-kefka:       [PASS][3] -> [INCOMPLETE][4] ([i915#2439])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-bsw-kefka/igt@gem_exec_parallel@engines@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-bsw-kefka/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - fi-pnv-d510:        [PASS][5] -> [INCOMPLETE][6] ([i915#2439] / [i915#299])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-pnv-d510/igt@gem_tiled_fence_blits@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-pnv-d510/igt@gem_tiled_fence_blits@basic.html

  * igt@i915_selftest@live@gem_execbuf:
    - fi-bsw-nick:        [PASS][7] -> [INCOMPLETE][8] ([i915#2439])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-bsw-nick/igt@i915_selftest@live@gem_execbuf.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-bsw-nick/igt@i915_selftest@live@gem_execbuf.html

  
#### Possible fixes ####

  * igt@debugfs_test@read_all_entries:
    - {fi-kbl-7560u}:     [INCOMPLETE][9] ([i915#2417]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-kbl-7560u/igt@debugfs_test@read_all_entries.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-kbl-7560u/igt@debugfs_test@read_all_entries.html

  * igt@gem_exec_parallel@engines@basic:
    - fi-bdw-gvtdvm:      [INCOMPLETE][11] ([i915#2439]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-bdw-gvtdvm/igt@gem_exec_parallel@engines@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-bdw-gvtdvm/igt@gem_exec_parallel@engines@basic.html

  * igt@gem_exec_parallel@engines@contexts:
    - fi-byt-j1900:       [INCOMPLETE][13] ([i915#2439]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-byt-j1900/igt@gem_exec_parallel@engines@contexts.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-byt-j1900/igt@gem_exec_parallel@engines@contexts.html
    - {fi-ehl-1}:         [INCOMPLETE][15] ([i915#2439]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-ehl-1/igt@gem_exec_parallel@engines@contexts.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-ehl-1/igt@gem_exec_parallel@engines@contexts.html

  * igt@gem_tiled_fence_blits@basic:
    - fi-gdg-551:         [INCOMPLETE][17] ([i915#172] / [i915#2439]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-gdg-551/igt@gem_tiled_fence_blits@basic.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-gdg-551/igt@gem_tiled_fence_blits@basic.html

  * igt@i915_selftest@live@gem_execbuf:
    - fi-bsw-n3050:       [INCOMPLETE][19] ([i915#2439]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-bsw-n3050/igt@i915_selftest@live@gem_execbuf.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-bsw-n3050/igt@i915_selftest@live@gem_execbuf.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-bsw-kefka:       [FAIL][21] ([i915#1436] / [i915#2109] / [i915#2439]) -> [FAIL][22] ([i915#2439])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-bsw-kefka/igt@runner@aborted.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-bsw-kefka/igt@runner@aborted.html
    - fi-kbl-r:           [FAIL][23] ([i915#2398] / [i915#2439]) -> [FAIL][24] ([i915#1784] / [i915#2398] / [i915#2439])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-kbl-r/igt@runner@aborted.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-kbl-r/igt@runner@aborted.html
    - fi-kbl-guc:         [FAIL][25] ([i915#1186] / [i915#1784] / [i915#2439]) -> [FAIL][26] ([i915#1186] / [i915#2439])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-kbl-guc/igt@runner@aborted.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-kbl-guc/igt@runner@aborted.html
    - fi-cml-u2:          [FAIL][27] ([i915#1186] / [i915#2082] / [i915#2439]) -> [FAIL][28] ([i915#1186] / [i915#2439])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/fi-cml-u2/igt@runner@aborted.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/fi-cml-u2/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).

  [i915#1186]: https://gitlab.freedesktop.org/drm/intel/issues/1186
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#172]: https://gitlab.freedesktop.org/drm/intel/issues/172
  [i915#1784]: https://gitlab.freedesktop.org/drm/intel/issues/1784
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082
  [i915#2109]: https://gitlab.freedesktop.org/drm/intel/issues/2109
  [i915#2398]: https://gitlab.freedesktop.org/drm/intel/issues/2398
  [i915#2417]: https://gitlab.freedesktop.org/drm/intel/issues/2417
  [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299


Participating hosts (41 -> 36)
------------------------------

  Missing    (5): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5779 -> IGTPW_4969

  CI-20190529: 20190529
  CI_DRM_8989: f38d31de4aa327d89646ad8c49e2f5cc68d3916a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4969: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/index.html
  IGT_5779: f52bf19b5f02d52fc3e201c6467ec3f511227fba @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 9002 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] 7+ messages in thread

* Re: [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
  2020-09-09  6:51 ` Kahola, Mika
@ 2020-09-09  9:07   ` Petri Latvala
  2020-09-09  9:27     ` Kaparthi, SowmyaX
  0 siblings, 1 reply; 7+ messages in thread
From: Petri Latvala @ 2020-09-09  9:07 UTC (permalink / raw)
  To: Kahola, Mika; +Cc: igt-dev, Kaparthi, SowmyaX

On Wed, Sep 09, 2020 at 06:51:13AM +0000, Kahola, Mika wrote:
> > -----Original Message-----
> > From: Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> > Sent: Tuesday, September 8, 2020 12:05 PM
> > To: igt-dev@lists.freedesktop.org; Ausmus, James
> > <james.ausmus@intel.com>; Kahola, Mika <mika.kahola@intel.com>;
> > Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> > Subject: [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
> > 
> > Depending on pixel format minimum width and height can be as high as 20.
> > Set width and height to 20. Remove is_planar_yuv_format, no longer used.
> > 
> > Cc: Ausmus, James <james.ausmus@intel.com>
> > Signed-off-by: Sowmya Kaparthi <sowmyax.kaparthi@intel.com>
> 
> The patch look ok to me. The width and height can be divided by 4 and there's no need to have separate width and height for yuv and planar formats.
> 
> Reviewed-by: Mika Kahola <mika.kahola@intel.com>

I'm confused by what's going on here. This patch was originated by
Matt Atwood, resent, re-reviewed...

I merged the patch now, with all S-o-b:s and R-b:s combined.



-- 
Petri Latvala
_______________________________________________
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] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
  2020-09-09  9:07   ` Petri Latvala
@ 2020-09-09  9:27     ` Kaparthi, SowmyaX
  2020-09-09  9:42       ` Petri Latvala
  0 siblings, 1 reply; 7+ messages in thread
From: Kaparthi, SowmyaX @ 2020-09-09  9:27 UTC (permalink / raw)
  To: Latvala, Petri, Kahola, Mika; +Cc: igt-dev

Hi Petri,

  This patch got merged in internal igt but not in open source igt.  This causing the kms_plane_scaling test case fail. So I requested Mika to push this patch to open source igt. 

Thanks and Regards
Sowmya

-----Original Message-----
From: Latvala, Petri <petri.latvala@intel.com> 
Sent: 09 September 2020 14:38
To: Kahola, Mika <mika.kahola@intel.com>
Cc: Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>; igt-dev@lists.freedesktop.org; Ausmus, James <james.ausmus@intel.com>
Subject: Re: [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20

On Wed, Sep 09, 2020 at 06:51:13AM +0000, Kahola, Mika wrote:
> > -----Original Message-----
> > From: Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> > Sent: Tuesday, September 8, 2020 12:05 PM
> > To: igt-dev@lists.freedesktop.org; Ausmus, James 
> > <james.ausmus@intel.com>; Kahola, Mika <mika.kahola@intel.com>; 
> > Kaparthi, SowmyaX <sowmyax.kaparthi@intel.com>
> > Subject: [i-g-t] tests/kms_plane_scaling: set minimum height and 
> > width to 20
> > 
> > Depending on pixel format minimum width and height can be as high as 20.
> > Set width and height to 20. Remove is_planar_yuv_format, no longer used.
> > 
> > Cc: Ausmus, James <james.ausmus@intel.com>
> > Signed-off-by: Sowmya Kaparthi <sowmyax.kaparthi@intel.com>
> 
> The patch look ok to me. The width and height can be divided by 4 and there's no need to have separate width and height for yuv and planar formats.
> 
> Reviewed-by: Mika Kahola <mika.kahola@intel.com>

I'm confused by what's going on here. This patch was originated by Matt Atwood, resent, re-reviewed...

I merged the patch now, with all S-o-b:s and R-b:s combined.



--
Petri Latvala
_______________________________________________
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] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20
  2020-09-09  9:27     ` Kaparthi, SowmyaX
@ 2020-09-09  9:42       ` Petri Latvala
  0 siblings, 0 replies; 7+ messages in thread
From: Petri Latvala @ 2020-09-09  9:42 UTC (permalink / raw)
  To: Kaparthi, SowmyaX; +Cc: igt-dev

On Wed, Sep 09, 2020 at 12:27:19PM +0300, Kaparthi, SowmyaX wrote:
> Hi Petri,
>
>   This patch got merged in internal igt but not in open source igt.
>   This causing the kms_plane_scaling test case fail. So I requested
>   Mika to push this patch to open source igt.


Please avoid changing the authorship when sending patches
upstream. And check if the patch has already been sent to the mailing
list.


-- 
Petri Latvala
_______________________________________________
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: failure for tests/kms_plane_scaling: set minimum height and width to 20 (rev3)
  2020-09-08  9:04 [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20 Sowmya Kaparthi
  2020-09-09  6:51 ` Kahola, Mika
  2020-09-09  9:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: set minimum height and width to 20 (rev3) Patchwork
@ 2020-09-09  9:44 ` Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2020-09-09  9:44 UTC (permalink / raw)
  To: Matt Atwood; +Cc: igt-dev


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

== Series Details ==

Series: tests/kms_plane_scaling: set minimum height and width to 20 (rev3)
URL   : https://patchwork.freedesktop.org/series/78536/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8989_full -> IGTPW_4969_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@plane-position-hole-dpms-pipe-c-planes:
    - shard-kbl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl4/igt@kms_plane@plane-position-hole-dpms-pipe-c-planes.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-cpu-read-active:
    - shard-glk:          [PASS][2] -> [INCOMPLETE][3] ([i915#2439]) +2 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk6/igt@gem_exec_reloc@basic-cpu-read-active.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk7/igt@gem_exec_reloc@basic-cpu-read-active.html
    - shard-kbl:          [PASS][4] -> [INCOMPLETE][5] ([i915#2439]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl3/igt@gem_exec_reloc@basic-cpu-read-active.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@gem_exec_reloc@basic-cpu-read-active.html

  * igt@gem_exec_reloc@basic-gtt-wc-active:
    - shard-glk:          [PASS][6] -> [DMESG-FAIL][7] ([i915#2439])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk2/igt@gem_exec_reloc@basic-gtt-wc-active.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk1/igt@gem_exec_reloc@basic-gtt-wc-active.html

  * igt@gem_exec_reloc@basic-wc-cpu-active:
    - shard-snb:          [PASS][8] -> [INCOMPLETE][9] ([i915#2439] / [i915#82]) +3 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-snb2/igt@gem_exec_reloc@basic-wc-cpu-active.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-snb4/igt@gem_exec_reloc@basic-wc-cpu-active.html

  * igt@gem_exec_reloc@basic-write-wc-active:
    - shard-apl:          [PASS][10] -> [INCOMPLETE][11] ([i915#1635] / [i915#2439])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-apl3/igt@gem_exec_reloc@basic-write-wc-active.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-apl7/igt@gem_exec_reloc@basic-write-wc-active.html

  * igt@gem_exec_schedule@deep@rcs0:
    - shard-tglb:         [PASS][12] -> [INCOMPLETE][13] ([i915#2439]) +4 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb2/igt@gem_exec_schedule@deep@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@gem_exec_schedule@deep@rcs0.html

  * igt@gem_exec_whisper@basic-queues-all:
    - shard-iclb:         [PASS][14] -> [INCOMPLETE][15] ([i915#2439]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-iclb6/igt@gem_exec_whisper@basic-queues-all.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-iclb8/igt@gem_exec_whisper@basic-queues-all.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
    - shard-tglb:         [PASS][16] -> [DMESG-WARN][17] ([i915#1982])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a2:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#407]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk1/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a2.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk8/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#49])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html

  * igt@kms_vblank@pipe-b-query-forked-busy:
    - shard-apl:          [PASS][22] -> [DMESG-WARN][23] ([i915#1635] / [i915#1982]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-apl2/igt@kms_vblank@pipe-b-query-forked-busy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-apl8/igt@kms_vblank@pipe-b-query-forked-busy.html

  
#### Possible fixes ####

  * {igt@gem_exec_fence@syncobj-backward-timeline-chain-engines}:
    - shard-glk:          [INCOMPLETE][24] ([i915#2439]) -> [PASS][25] +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk5/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html

  * igt@gem_exec_reloc@basic-gtt-wc-active:
    - shard-iclb:         [INCOMPLETE][26] ([i915#2439]) -> [PASS][27] +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-iclb7/igt@gem_exec_reloc@basic-gtt-wc-active.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-iclb5/igt@gem_exec_reloc@basic-gtt-wc-active.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-tglb:         [INCOMPLETE][28] ([i915#2439]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@gem_exec_reloc@basic-write-cpu-active.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb6/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_reloc@basic-write-gtt-active:
    - shard-snb:          [INCOMPLETE][30] ([i915#2439] / [i915#82]) -> [PASS][31] +5 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-snb5/igt@gem_exec_reloc@basic-write-gtt-active.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-snb1/igt@gem_exec_reloc@basic-write-gtt-active.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-kbl:          [DMESG-WARN][32] ([i915#180]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl1/igt@gem_exec_suspend@basic-s3.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_exec_whisper@basic-forked:
    - shard-kbl:          [INCOMPLETE][34] ([i915#2439]) -> [PASS][35] +5 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl2/igt@gem_exec_whisper@basic-forked.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl6/igt@gem_exec_whisper@basic-forked.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
    - shard-kbl:          [DMESG-WARN][36] ([i915#1982]) -> [PASS][37] +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl3/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html

  * igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-xtiled:
    - shard-snb:          [SKIP][38] ([fdo#109271]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-snb6/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-xtiled.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-snb1/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-xtiled.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
    - shard-tglb:         [DMESG-WARN][40] ([i915#1982]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_plane_scaling@pipe-c-scaler-with-rotation:
    - shard-iclb:         [FAIL][42] ([fdo#109052]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-iclb2/igt@kms_plane_scaling@pipe-c-scaler-with-rotation.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-iclb1/igt@kms_plane_scaling@pipe-c-scaler-with-rotation.html

  * igt@kms_plane_scaling@pipe-d-scaler-with-pixel-format:
    - shard-tglb:         [FAIL][44] ([i915#1214]) -> [PASS][45] +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@kms_plane_scaling@pipe-d-scaler-with-pixel-format.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb1/igt@kms_plane_scaling@pipe-d-scaler-with-pixel-format.html

  
#### Warnings ####

  * igt@gem_exec_parallel@engines@basic:
    - shard-glk:          [INCOMPLETE][46] ([i915#2439]) -> [INCOMPLETE][47] ([i915#2439] / [i915#95])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-glk5/igt@gem_exec_parallel@engines@basic.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-glk6/igt@gem_exec_parallel@engines@basic.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58], [FAIL][59], [FAIL][60], [FAIL][61], [FAIL][62], [FAIL][63], [FAIL][64], [FAIL][65], [FAIL][66], [FAIL][67], [FAIL][68], [FAIL][69], [FAIL][70]) ([i915#1611] / [i915#1784] / [i915#2263] / [i915#2398] / [i915#2439]) -> ([FAIL][71], [FAIL][72], [FAIL][73], [FAIL][74], [FAIL][75], [FAIL][76], [FAIL][77], [FAIL][78], [FAIL][79], [FAIL][80], [FAIL][81], [FAIL][82], [FAIL][83], [FAIL][84], [FAIL][85], [FAIL][86], [FAIL][87], [FAIL][88], [FAIL][89], [FAIL][90]) ([i915#1186] / [i915#1611] / [i915#1784] / [i915#2263] / [i915#2398] / [i915#2439])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl4/igt@runner@aborted.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl2/igt@runner@aborted.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl4/igt@runner@aborted.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl3/igt@runner@aborted.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl1/igt@runner@aborted.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl4/igt@runner@aborted.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl2/igt@runner@aborted.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl3/igt@runner@aborted.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl1/igt@runner@aborted.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl2/igt@runner@aborted.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl4/igt@runner@aborted.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl3/igt@runner@aborted.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl1/igt@runner@aborted.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl2/igt@runner@aborted.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl4/igt@runner@aborted.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl7/igt@runner@aborted.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl7/igt@runner@aborted.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-kbl6/igt@runner@aborted.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@runner@aborted.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@runner@aborted.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@runner@aborted.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl4/igt@runner@aborted.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl2/igt@runner@aborted.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@runner@aborted.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl2/igt@runner@aborted.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl6/igt@runner@aborted.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@runner@aborted.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl4/igt@runner@aborted.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl1/igt@runner@aborted.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl2/igt@runner@aborted.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@runner@aborted.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@runner@aborted.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@runner@aborted.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl7/igt@runner@aborted.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl4/igt@runner@aborted.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl3/igt@runner@aborted.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl4/igt@runner@aborted.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-kbl1/igt@runner@aborted.html
    - shard-tglb:         ([FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94], [FAIL][95], [FAIL][96], [FAIL][97], [FAIL][98], [FAIL][99], [FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111]) ([i915#2263] / [i915#2398] / [i915#2439]) -> ([FAIL][112], [FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134]) ([i915#1764] / [i915#2045] / [i915#2263] / [i915#2398] / [i915#2439])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb3/igt@runner@aborted.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb8/igt@runner@aborted.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb6/igt@runner@aborted.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb2/igt@runner@aborted.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb3/igt@runner@aborted.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb7/igt@runner@aborted.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@runner@aborted.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb6/igt@runner@aborted.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb1/igt@runner@aborted.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@runner@aborted.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb1/igt@runner@aborted.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb3/igt@runner@aborted.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb6/igt@runner@aborted.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb8/igt@runner@aborted.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@runner@aborted.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb7/igt@runner@aborted.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@runner@aborted.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb2/igt@runner@aborted.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb5/igt@runner@aborted.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb8/igt@runner@aborted.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8989/shard-tglb1/igt@runner@aborted.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb1/igt@runner@aborted.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb3/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb8/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb1/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb8/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb3/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb7/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb7/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb6/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb1/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb3/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb2/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb5/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/shard-tglb6/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#109052]: https://bugs.freedesktop.org/show_bug.cgi?id=109052
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1186]: https://gitlab.freedesktop.org/drm/intel/issues/1186
  [i915#1214]: https://gitlab.freedesktop.org/drm/intel/issues/1214
  [i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611
  [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
  [i915#1764]: https://gitlab.freedesktop.org/drm/intel/issues/1764
  [i915#1784]: https://gitlab.freedesktop.org/drm/intel/issues/1784
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2045]: https://gitlab.freedesktop.org/drm/intel/issues/2045
  [i915#2263]: https://gitlab.freedesktop.org/drm/intel/issues/2263
  [i915#2398]: https://gitlab.freedesktop.org/drm/intel/issues/2398
  [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439
  [i915#407]: https://gitlab.freedesktop.org/drm/intel/issues/407
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (12 -> 8)
------------------------------

  Missing    (4): pig-snb-2600 pig-glk-j5005 pig-skl-6260u pig-icl-1065g7 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5779 -> IGTPW_4969
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8989: f38d31de4aa327d89646ad8c49e2f5cc68d3916a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4969: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4969/index.html
  IGT_5779: f52bf19b5f02d52fc3e201c6467ec3f511227fba @ 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_4969/index.html

[-- Attachment #1.2: Type: text/html, Size: 25419 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] 7+ messages in thread

end of thread, other threads:[~2020-09-09  9:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-08  9:04 [igt-dev] [i-g-t] tests/kms_plane_scaling: set minimum height and width to 20 Sowmya Kaparthi
2020-09-09  6:51 ` Kahola, Mika
2020-09-09  9:07   ` Petri Latvala
2020-09-09  9:27     ` Kaparthi, SowmyaX
2020-09-09  9:42       ` Petri Latvala
2020-09-09  9:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: set minimum height and width to 20 (rev3) Patchwork
2020-09-09  9:44 ` [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.