public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam
@ 2019-10-11 12:43 Chris Wilson
  2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2019-10-11 12:43 UTC (permalink / raw)
  To: intel-gfx; +Cc: igt-dev, Tvrtko Ursulin

We already check that debugfs do not cause spam (and they tend to be
more heavyhanded and so more likely to break), but that does not excuse
not checking our sysfs directory!

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 tests/debugfs_test.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/tests/debugfs_test.c b/tests/debugfs_test.c
index f8dd851c9..2d4753df5 100644
--- a/tests/debugfs_test.c
+++ b/tests/debugfs_test.c
@@ -56,7 +56,7 @@ static void read_and_discard_sysfs_entries(int path_fd, int indent)
 			igt_debug("%sEntering subdir %s\n", tabs, dirent->d_name);
 			read_and_discard_sysfs_entries(sub_fd, indent + 1);
 			close(sub_fd);
-		} else {
+		} else if (dirent->d_type == DT_REG) {
 			char buf[512];
 			int sub_fd;
 			ssize_t ret;
@@ -149,7 +149,7 @@ static void kms_tests(int fd, int debugfs)
 
 igt_main
 {
-	int fd = -1, debugfs;
+	int fd = -1, debugfs, sysfs;
 
 	igt_skip_on_simulation();
 
@@ -157,10 +157,13 @@ igt_main
 		fd = drm_open_driver_master(DRIVER_INTEL);
 		igt_require_gem(fd);
 		debugfs = igt_debugfs_dir(fd);
+		sysfs = igt_sysfs_open(fd);
 
 		kmstest_set_vt_graphics_mode();
 	}
 
+	igt_subtest("sysfs")
+		read_and_discard_sysfs_entries(sysfs, 0);
 	igt_subtest("read_all_entries")
 		read_and_discard_sysfs_entries(debugfs, 0);
 
@@ -168,6 +171,7 @@ igt_main
 		kms_tests(fd, debugfs);
 
 	igt_fixture {
+		close(sysfs);
 		close(debugfs);
 		close(fd);
 	}
-- 
2.23.0

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for Check all sysfs entries are readable without dmesg spam
  2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
@ 2019-10-11 12:57 ` Patchwork
  2019-10-11 13:12 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Tvrtko Ursulin
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-10-11 12:57 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: Check all sysfs entries are readable without dmesg spam
URL   : https://patchwork.freedesktop.org/series/67910/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

debugfs_test@sysfs

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/69952 for more details

== Logs ==

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

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

* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam
  2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
  2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
@ 2019-10-11 13:12 ` Tvrtko Ursulin
  2019-10-11 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2019-10-11 20:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Tvrtko Ursulin @ 2019-10-11 13:12 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx; +Cc: igt-dev


On 11/10/2019 13:43, Chris Wilson wrote:
> We already check that debugfs do not cause spam (and they tend to be
> more heavyhanded and so more likely to break), but that does not excuse
> not checking our sysfs directory!
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
>   tests/debugfs_test.c | 8 ++++++--
>   1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/debugfs_test.c b/tests/debugfs_test.c
> index f8dd851c9..2d4753df5 100644
> --- a/tests/debugfs_test.c
> +++ b/tests/debugfs_test.c
> @@ -56,7 +56,7 @@ static void read_and_discard_sysfs_entries(int path_fd, int indent)
>   			igt_debug("%sEntering subdir %s\n", tabs, dirent->d_name);
>   			read_and_discard_sysfs_entries(sub_fd, indent + 1);
>   			close(sub_fd);
> -		} else {
> +		} else if (dirent->d_type == DT_REG) {
>   			char buf[512];
>   			int sub_fd;
>   			ssize_t ret;
> @@ -149,7 +149,7 @@ static void kms_tests(int fd, int debugfs)
>   
>   igt_main
>   {
> -	int fd = -1, debugfs;
> +	int fd = -1, debugfs, sysfs;
>   
>   	igt_skip_on_simulation();
>   
> @@ -157,10 +157,13 @@ igt_main
>   		fd = drm_open_driver_master(DRIVER_INTEL);
>   		igt_require_gem(fd);
>   		debugfs = igt_debugfs_dir(fd);
> +		sysfs = igt_sysfs_open(fd);
>   
>   		kmstest_set_vt_graphics_mode();
>   	}
>   
> +	igt_subtest("sysfs")
> +		read_and_discard_sysfs_entries(sysfs, 0);
>   	igt_subtest("read_all_entries")
>   		read_and_discard_sysfs_entries(debugfs, 0);
>   
> @@ -168,6 +171,7 @@ igt_main
>   		kms_tests(fd, debugfs);
>   
>   	igt_fixture {
> +		close(sysfs);
>   		close(debugfs);
>   		close(fd);
>   	}
> 

Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Regards,

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for Check all sysfs entries are readable without dmesg spam
  2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
  2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
  2019-10-11 13:12 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Tvrtko Ursulin
@ 2019-10-11 13:31 ` Patchwork
  2019-10-11 20:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-10-11 13:31 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: Check all sysfs entries are readable without dmesg spam
URL   : https://patchwork.freedesktop.org/series/67910/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7062 -> IGTPW_3560
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html

  
#### Possible fixes ####

  * igt@gem_ctx_switch@rcs0:
    - fi-bxt-dsi:         [INCOMPLETE][3] ([fdo#103927]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/fi-bxt-dsi/igt@gem_ctx_switch@rcs0.html

  * igt@gem_sync@basic-all:
    - {fi-tgl-u}:         [INCOMPLETE][5] ([fdo#111880]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/fi-tgl-u/igt@gem_sync@basic-all.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/fi-tgl-u/igt@gem_sync@basic-all.html

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

  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880


Participating hosts (46 -> 43)
------------------------------

  Additional (2): fi-hsw-peppy fi-gdg-551 
  Missing    (5): fi-hsw-4200u fi-bsw-cyan fi-icl-y fi-icl-guc fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5220 -> IGTPW_3560

  CI-20190529: 20190529
  CI_DRM_7062: 69ff7e120c479f7a53d20493f868ab02e688af9a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3560: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/index.html
  IGT_5220: 1e38e32d721210a780198c8293a6b8c8e881df68 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@debugfs_test@sysfs

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Check all sysfs entries are readable without dmesg spam
  2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
                   ` (2 preceding siblings ...)
  2019-10-11 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-10-11 20:11 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-10-11 20:11 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: Check all sysfs entries are readable without dmesg spam
URL   : https://patchwork.freedesktop.org/series/67910/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7062_full -> IGTPW_3560_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html

  
New tests
---------

  New tests have been introduced between CI_DRM_7062_full and IGTPW_3560_full:

### New IGT tests (1) ###

  * igt@debugfs_test@sysfs:
    - Statuses : 7 pass(s)
    - Exec time: [0.01, 0.03] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][2] -> [SKIP][3] ([fdo#110841])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb3/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_ctx_switch@queue-heavy:
    - shard-glk:          [PASS][4] -> [INCOMPLETE][5] ([fdo#103359] / [k.org#198133]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-glk3/igt@gem_ctx_switch@queue-heavy.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-glk9/igt@gem_ctx_switch@queue-heavy.html

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [PASS][6] -> [FAIL][7] ([fdo#111925])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-snb7/igt@gem_eio@in-flight-contexts-immediate.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-snb2/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#111325]) +5 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-apl:          [PASS][10] -> [INCOMPLETE][11] ([fdo#103927] / [fdo#108686])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl4/igt@gem_tiled_swapping@non-threaded.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl7/igt@gem_tiled_swapping@non-threaded.html
    - shard-glk:          [PASS][12] -> [INCOMPLETE][13] ([fdo#103359] / [fdo#108686] / [k.org#198133])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-glk6/igt@gem_tiled_swapping@non-threaded.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-glk9/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-snb:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-snb7/igt@gem_userptr_blits@dmabuf-sync.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-snb7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [PASS][16] -> [DMESG-WARN][17] ([fdo#111870])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-hsw6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x42-onscreen:
    - shard-kbl:          [PASS][18] -> [FAIL][19] ([fdo#103232])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-128x42-onscreen.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x42-onscreen.html
    - shard-apl:          [PASS][20] -> [FAIL][21] ([fdo#103232])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-128x42-onscreen.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x42-onscreen.html

  * igt@kms_flip@dpms-vs-vblank-race:
    - shard-apl:          [PASS][22] -> [FAIL][23] ([fdo#111609])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl2/igt@kms_flip@dpms-vs-vblank-race.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl4/igt@kms_flip@dpms-vs-vblank-race.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-glk:          [PASS][24] -> [FAIL][25] ([fdo#105363])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-glk4/igt@kms_flip@flip-vs-expired-vblank.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-glk8/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [PASS][26] -> [FAIL][27] ([fdo#103167]) +5 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [PASS][28] -> [DMESG-WARN][29] ([fdo#108566]) +5 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109642] / [fdo#111068])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb3/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#109441]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [PASS][34] -> [SKIP][35] ([fdo#109276]) +21 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb2/igt@prime_busy@hang-bsd2.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb3/igt@prime_busy@hang-bsd2.html

  
#### Possible fixes ####

  * igt@gem_exec_schedule@preempt-bsd:
    - shard-iclb:         [SKIP][36] ([fdo#111325]) -> [PASS][37] +7 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb1/igt@gem_exec_schedule@preempt-bsd.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb7/igt@gem_exec_schedule@preempt-bsd.html

  * igt@gem_sync@basic-many-each:
    - shard-iclb:         [INCOMPLETE][38] ([fdo#107713] / [fdo#109100]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb7/igt@gem_sync@basic-many-each.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb6/igt@gem_sync@basic-many-each.html

  * igt@gem_tiled_blits@normal:
    - shard-apl:          [DMESG-WARN][40] ([fdo#109385]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl4/igt@gem_tiled_blits@normal.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl8/igt@gem_tiled_blits@normal.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [DMESG-WARN][42] ([fdo#111870]) -> [PASS][43] +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][44] ([fdo#111870]) -> [PASS][45] +4 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html

  * {igt@i915_pm_dc@dc6-dpms}:
    - shard-iclb:         [FAIL][46] ([fdo#110548]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_color@pipe-c-degamma:
    - shard-apl:          [FAIL][48] ([fdo#104782]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl1/igt@kms_color@pipe-c-degamma.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl8/igt@kms_color@pipe-c-degamma.html
    - shard-glk:          [FAIL][50] ([fdo#104782]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-glk2/igt@kms_color@pipe-c-degamma.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-glk9/igt@kms_color@pipe-c-degamma.html
    - shard-kbl:          [FAIL][52] ([fdo#104782]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-kbl1/igt@kms_color@pipe-c-degamma.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-kbl1/igt@kms_color@pipe-c-degamma.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-iclb:         [DMESG-WARN][54] -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb5/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-hsw:          [INCOMPLETE][56] ([fdo#103540]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-hsw5/igt@kms_flip@2x-flip-vs-suspend.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-hsw1/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@absolute-wf_vblank:
    - shard-apl:          [INCOMPLETE][58] ([fdo#103927]) -> [PASS][59] +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl7/igt@kms_flip@absolute-wf_vblank.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl2/igt@kms_flip@absolute-wf_vblank.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - shard-hsw:          [DMESG-WARN][60] ([fdo#102614]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-hsw5/igt@kms_flip@basic-flip-vs-modeset.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-hsw4/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [DMESG-WARN][62] ([fdo#108566]) -> [PASS][63] +5 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
    - shard-iclb:         [FAIL][64] ([fdo#103167]) -> [PASS][65] +7 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
    - {shard-tglb}:       [FAIL][66] ([fdo#103167]) -> [PASS][67] +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [SKIP][68] ([fdo#109441]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html

  * igt@kms_universal_plane@universal-plane-pipe-b-functional:
    - shard-glk:          [FAIL][70] ([fdo#111134]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-glk8/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-glk7/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
    - shard-apl:          [FAIL][72] ([fdo#111134]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-apl8/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
    - shard-kbl:          [FAIL][74] ([fdo#111134]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-kbl6/igt@kms_universal_plane@universal-plane-pipe-b-functional.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-kbl7/igt@kms_universal_plane@universal-plane-pipe-b-functional.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][76] ([fdo#109276]) -> [PASS][77] +13 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [DMESG-WARN][78] ([fdo#107724]) -> [SKIP][79] ([fdo#109349])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][80] ([fdo#109441]) -> [DMESG-WARN][81] ([fdo#107724])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7062/shard-iclb1/igt@kms_psr@psr2_suspend.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/shard-iclb2/igt@kms_psr@psr2_suspend.html

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

  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110548]: https://bugs.freedesktop.org/show_bug.cgi?id=110548
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111134]: https://bugs.freedesktop.org/show_bug.cgi?id=111134
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111609]: https://bugs.freedesktop.org/show_bug.cgi?id=111609
  [fdo#111795 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111795 
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111925]: https://bugs.freedesktop.org/show_bug.cgi?id=111925
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


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

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5220 -> IGTPW_3560
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7062: 69ff7e120c479f7a53d20493f868ab02e688af9a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3560: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3560/index.html
  IGT_5220: 1e38e32d721210a780198c8293a6b8c8e881df68 @ 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_3560/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-10-11 20:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2019-10-11 13:12 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Tvrtko Ursulin
2019-10-11 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-10-11 20:11 ` [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