public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable
@ 2019-10-17  9:17 Petri Latvala
  2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Petri Latvala @ 2019-10-17  9:17 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala

The blacklist for pipes E and F are not capturing kms_busy's usage of
them, because of the differing naming convention. Make that more
uniform.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Martin Peres <martin.peres@linux.intel.com>
---

Martin, test renaming here. Needs your ack for the cibuglog changes
needed.

tests/kms_busy.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/tests/kms_busy.c b/tests/kms_busy.c
index 5ff2b846..1426a5f0 100644
--- a/tests/kms_busy.c
+++ b/tests/kms_busy.c
@@ -313,14 +313,14 @@ igt_main
 			igt_display_require_output_on_pipe(&display, n);
 		}
 
-		igt_subtest_f("basic-flip-%s",
+		igt_subtest_f("basic-flip-pipe-%s",
 			kmstest_pipe_name(n)) {
 			igt_require(gem_has_ring(display.drm_fd,
 						e->exec_id | e->flags));
 
 			test_flip(&display, e->exec_id | e->flags, n, false);
 		}
-		igt_subtest_f("basic-modeset-%s",
+		igt_subtest_f("basic-modeset-pipe-%s",
 			kmstest_pipe_name(n)) {
 			igt_require(gem_has_ring(display.drm_fd,
 						e->exec_id | e->flags));
@@ -335,7 +335,7 @@ igt_main
 			hang = igt_allow_hang(display.drm_fd, 0, 0);
 		}
 
-		igt_subtest_f("extended-pageflip-modeset-hang-oldfb-%s-%s",
+		igt_subtest_f("extended-pageflip-modeset-hang-oldfb-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n)) {
 			igt_require(gem_has_ring(display.drm_fd,
 						e->exec_id | e->flags));
@@ -346,23 +346,23 @@ igt_main
 		igt_fixture
 			igt_require(display.is_atomic);
 
-		igt_subtest_f("extended-pageflip-hang-oldfb-%s-%s",
+		igt_subtest_f("extended-pageflip-hang-oldfb-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n))
 			test_hang(&display, e->exec_id | e->flags, n, false, false);
 
-		igt_subtest_f("extended-pageflip-hang-newfb-%s-%s",
+		igt_subtest_f("extended-pageflip-hang-newfb-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n))
 			test_hang(&display, e->exec_id | e->flags, n, false, true);
 
-		igt_subtest_f("extended-modeset-hang-oldfb-%s-%s",
+		igt_subtest_f("extended-modeset-hang-oldfb-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n))
 			test_hang(&display, e->exec_id | e->flags, n, true, false);
 
-		igt_subtest_f("extended-modeset-hang-newfb-%s-%s",
+		igt_subtest_f("extended-modeset-hang-newfb-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n))
 			test_hang(&display, e->exec_id | e->flags, n, true, true);
 
-		igt_subtest_f("extended-modeset-hang-oldfb-with-reset-%s-%s",
+		igt_subtest_f("extended-modeset-hang-oldfb-with-reset-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n)) {
 			igt_set_module_param_int("force_reset_modeset_test", 1);
 
@@ -371,7 +371,7 @@ igt_main
 			igt_set_module_param_int("force_reset_modeset_test", 0);
 		}
 
-		igt_subtest_f("extended-modeset-hang-newfb-with-reset-%s-%s",
+		igt_subtest_f("extended-modeset-hang-newfb-with-reset-%s-pipe-%s",
 				e->name, kmstest_pipe_name(n)) {
 			igt_set_module_param_int("force_reset_modeset_test", 1);
 
-- 
2.19.1

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

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

* [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
@ 2019-10-17  9:17 ` Petri Latvala
  2019-10-17  9:21   ` [igt-dev] [PATCH i-g-t v2 " Petri Latvala
  2019-11-07 14:45   ` [igt-dev] [PATCH i-g-t " Arkadiusz Hiler
  2019-10-17  9:41 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2) Patchwork
                   ` (8 subsequent siblings)
  9 siblings, 2 replies; 14+ messages in thread
From: Petri Latvala @ 2019-10-17  9:17 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala

Blacklist pipes E and F usage even when the subtest name ends in
pipe-x.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Martin Peres <martin.peres@linux.intel.com>
---
 tests/intel-ci/blacklist.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
index 734fa40a..4cea75db 100644
--- a/tests/intel-ci/blacklist.txt
+++ b/tests/intel-ci/blacklist.txt
@@ -106,5 +106,5 @@ igt@i915_suspend@shrink
 ###############################################
 # pipe-e, pipe-f no current HW support
 ###############################################
-igt@.*@.*pipe-e-.*
-igt@.*@.*pipe-f-.*
+igt@.*@.*pipe-e-?.*
+igt@.*@.*pipe-f-?.*
-- 
2.19.1

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

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

* [igt-dev] [PATCH i-g-t v2 2/2] intel-ci: Adjust pipe-specific blacklisting
  2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
@ 2019-10-17  9:21   ` Petri Latvala
  2019-11-07 14:45   ` [igt-dev] [PATCH i-g-t " Arkadiusz Hiler
  1 sibling, 0 replies; 14+ messages in thread
From: Petri Latvala @ 2019-10-17  9:21 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala

Blacklist pipes E and F usage even when the subtest name ends in
pipe-x.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Martin Peres <martin.peres@linux.intel.com>
---
 tests/intel-ci/blacklist.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
index 734fa40a..4d1813e5 100644
--- a/tests/intel-ci/blacklist.txt
+++ b/tests/intel-ci/blacklist.txt
@@ -106,5 +106,5 @@ igt@i915_suspend@shrink
 ###############################################
 # pipe-e, pipe-f no current HW support
 ###############################################
-igt@.*@.*pipe-e-.*
-igt@.*@.*pipe-f-.*
+igt@.*@.*pipe-e($|-.*)
+igt@.*@.*pipe-f($|-.*)
-- 
2.19.1

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
  2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
@ 2019-10-17  9:41 ` Patchwork
  2019-10-17 10:00 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-17  9:41 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2)
URL   : https://patchwork.freedesktop.org/series/68141/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_busy@basic-flip-pipe-A
kms_busy@basic-flip-pipe-B
kms_busy@basic-flip-pipe-C
kms_busy@basic-flip-pipe-D
kms_busy@basic-flip-pipe-E
kms_busy@basic-flip-pipe-F
kms_busy@basic-modeset-pipe-A
kms_busy@basic-modeset-pipe-B
kms_busy@basic-modeset-pipe-C
kms_busy@basic-modeset-pipe-D
kms_busy@basic-modeset-pipe-E
kms_busy@basic-modeset-pipe-F
kms_busy@extended-modeset-hang-newfb-render-pipe-A
kms_busy@extended-modeset-hang-newfb-render-pipe-B
kms_busy@extended-modeset-hang-newfb-render-pipe-C
kms_busy@extended-modeset-hang-newfb-render-pipe-D
kms_busy@extended-modeset-hang-newfb-render-pipe-E
kms_busy@extended-modeset-hang-newfb-render-pipe-F
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-F
kms_busy@extended-pageflip-hang-newfb-render-pipe-A
kms_busy@extended-pageflip-hang-newfb-render-pipe-B
kms_busy@extended-pageflip-hang-newfb-render-pipe-C
kms_busy@extended-pageflip-hang-newfb-render-pipe-D
kms_busy@extended-pageflip-hang-newfb-render-pipe-E
kms_busy@extended-pageflip-hang-newfb-render-pipe-F
kms_busy@extended-pageflip-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-hang-oldfb-render-pipe-F
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-F

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

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
  2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
  2019-10-17  9:41 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2) Patchwork
@ 2019-10-17 10:00 ` Patchwork
  2019-10-20 10:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3) Patchwork
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-17 10:00 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2)
URL   : https://patchwork.freedesktop.org/series/68141/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7114 -> IGTPW_3581
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_execlists:
    - fi-kbl-7500u:       [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-kbl-7500u/igt@i915_selftest@live_execlists.html
    - fi-glk-dsi:         [PASS][3] -> [DMESG-FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-glk-dsi/igt@i915_selftest@live_execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-glk-dsi/igt@i915_selftest@live_execlists.html
    - fi-skl-lmem:        [PASS][5] -> [DMESG-FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-skl-lmem/igt@i915_selftest@live_execlists.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-skl-lmem/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-cfl-8109u:       [PASS][7] -> [DMESG-FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html

  
#### Warnings ####

  * igt@i915_selftest@live_execlists:
    - fi-whl-u:           [INCOMPLETE][9] -> [DMESG-FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-whl-u/igt@i915_selftest@live_execlists.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-whl-u/igt@i915_selftest@live_execlists.html

  
#### Suppressed ####

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

  * igt@i915_selftest@live_execlists:
    - {fi-kbl-soraka}:    [PASS][11] -> [INCOMPLETE][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-kbl-soraka/igt@i915_selftest@live_execlists.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-kbl-soraka/igt@i915_selftest@live_execlists.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-icl-u3:          [PASS][13] -> [DMESG-WARN][14] ([fdo#107724]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-icl-u3/igt@gem_exec_suspend@basic-s4-devices.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-icl-u3/igt@gem_exec_suspend@basic-s4-devices.html

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic-files:
    - fi-bdw-gvtdvm:      [DMESG-WARN][15] -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-bdw-gvtdvm/igt@gem_ctx_create@basic-files.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-bdw-gvtdvm/igt@gem_ctx_create@basic-files.html

  * igt@gem_flink_basic@double-flink:
    - fi-icl-u3:          [DMESG-WARN][17] ([fdo#107724]) -> [PASS][18] +2 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-icl-u3/igt@gem_flink_basic@double-flink.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-icl-u3/igt@gem_flink_basic@double-flink.html

  * igt@i915_selftest@live_execlists:
    - fi-cfl-guc:         [DMESG-FAIL][19] -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-cfl-guc/igt@i915_selftest@live_execlists.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-cfl-guc/igt@i915_selftest@live_execlists.html
    - fi-apl-guc:         [DMESG-FAIL][21] -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-apl-guc/igt@i915_selftest@live_execlists.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-apl-guc/igt@i915_selftest@live_execlists.html

  * igt@kms_chamelium@dp-edid-read:
    - {fi-icl-u4}:        [FAIL][23] ([fdo#111045]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-icl-u4/igt@kms_chamelium@dp-edid-read.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-icl-u4/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - {fi-icl-dsi}:       [DMESG-WARN][25] ([fdo#107724]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7114/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html

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

  [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
  [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111049]: https://bugs.freedesktop.org/show_bug.cgi?id=111049
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
  [fdo#111872]: https://bugs.freedesktop.org/show_bug.cgi?id=111872


Participating hosts (52 -> 46)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5231 -> IGTPW_3581

  CI-20190529: 20190529
  CI_DRM_7114: d9e909272a022597067d3ac2dfcedacd63c61af9 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3581: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3581/index.html
  IGT_5231: e293051f8f99c72cb01d21e4b73a5928ea351eb3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+++ 54 lines
--- 54 lines

== Logs ==

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (2 preceding siblings ...)
  2019-10-17 10:00 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-20 10:51 ` Patchwork
  2019-10-20 11:08 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-20 10:51 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3)
URL   : https://patchwork.freedesktop.org/series/68141/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_busy@basic-flip-pipe-A
kms_busy@basic-flip-pipe-B
kms_busy@basic-flip-pipe-C
kms_busy@basic-flip-pipe-D
kms_busy@basic-flip-pipe-E
kms_busy@basic-flip-pipe-F
kms_busy@basic-modeset-pipe-A
kms_busy@basic-modeset-pipe-B
kms_busy@basic-modeset-pipe-C
kms_busy@basic-modeset-pipe-D
kms_busy@basic-modeset-pipe-E
kms_busy@basic-modeset-pipe-F
kms_busy@extended-modeset-hang-newfb-render-pipe-A
kms_busy@extended-modeset-hang-newfb-render-pipe-B
kms_busy@extended-modeset-hang-newfb-render-pipe-C
kms_busy@extended-modeset-hang-newfb-render-pipe-D
kms_busy@extended-modeset-hang-newfb-render-pipe-E
kms_busy@extended-modeset-hang-newfb-render-pipe-F
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-F
kms_busy@extended-pageflip-hang-newfb-render-pipe-A
kms_busy@extended-pageflip-hang-newfb-render-pipe-B
kms_busy@extended-pageflip-hang-newfb-render-pipe-C
kms_busy@extended-pageflip-hang-newfb-render-pipe-D
kms_busy@extended-pageflip-hang-newfb-render-pipe-E
kms_busy@extended-pageflip-hang-newfb-render-pipe-F
kms_busy@extended-pageflip-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-hang-oldfb-render-pipe-F
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-F

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

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (3 preceding siblings ...)
  2019-10-20 10:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3) Patchwork
@ 2019-10-20 11:08 ` Patchwork
  2019-10-21 11:42 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-20 11:08 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3)
URL   : https://patchwork.freedesktop.org/series/68141/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7136 -> IGTPW_3587
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@runner@aborted:
    - fi-kbl-guc:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-kbl-guc/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_execlists:
    - fi-kbl-guc:         [PASS][2] -> [INCOMPLETE][3] ([fdo#112065])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-kbl-guc/igt@i915_selftest@live_execlists.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-kbl-guc/igt@i915_selftest@live_execlists.html
    - fi-cml-u2:          [PASS][4] -> [INCOMPLETE][5] ([fdo#110566])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-cml-u2/igt@i915_selftest@live_execlists.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-cml-u2/igt@i915_selftest@live_execlists.html
    - fi-skl-6260u:       [PASS][6] -> [INCOMPLETE][7] ([fdo#111934])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-skl-6260u/igt@i915_selftest@live_execlists.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-skl-6260u/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_gem_contexts:
    - fi-cfl-8109u:       [PASS][8] -> [DMESG-FAIL][9] ([fdo#112050 ])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-cfl-8109u/igt@i915_selftest@live_gem_contexts.html

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic:
    - fi-icl-u3:          [DMESG-WARN][10] ([fdo#107724]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-icl-u3/igt@gem_ctx_create@basic.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-icl-u3/igt@gem_ctx_create@basic.html

  * igt@gem_ctx_switch@legacy-render:
    - fi-icl-u3:          [INCOMPLETE][12] ([fdo#107713] / [fdo#111381]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-icl-u3/igt@gem_ctx_switch@legacy-render.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-icl-u3/igt@gem_ctx_switch@legacy-render.html

  * igt@i915_selftest@live_coherency:
    - fi-kbl-soraka:      [TIMEOUT][14] ([fdo#111944]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-kbl-soraka/igt@i915_selftest@live_coherency.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-kbl-soraka/igt@i915_selftest@live_coherency.html

  * igt@i915_selftest@live_hangcheck:
    - {fi-tgl-u2}:        [INCOMPLETE][16] ([fdo#111747]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-tgl-u2/igt@i915_selftest@live_hangcheck.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-tgl-u2/igt@i915_selftest@live_hangcheck.html
    - {fi-icl-u4}:        [INCOMPLETE][18] ([fdo#107713] / [fdo#108569]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-icl-u4/igt@i915_selftest@live_hangcheck.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-icl-u4/igt@i915_selftest@live_hangcheck.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - {fi-icl-dsi}:       [DMESG-WARN][20] ([fdo#107724]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html

  
#### Warnings ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][22] ([fdo#111407]) -> [FAIL][23] ([fdo#111045] / [fdo#111096])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7136/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

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

  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#111934]: https://bugs.freedesktop.org/show_bug.cgi?id=111934
  [fdo#111944]: https://bugs.freedesktop.org/show_bug.cgi?id=111944
  [fdo#112050 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112050 
  [fdo#112065]: https://bugs.freedesktop.org/show_bug.cgi?id=112065


Participating hosts (51 -> 44)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5234 -> IGTPW_3587

  CI-20190529: 20190529
  CI_DRM_7136: 6f7e6926bb09b1ec80c5a3d44a930d690dd09d9c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3587: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3587/index.html
  IGT_5234: 1205552397bd8a19dc6e5abdaa727cc091dabbfe @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+++ 54 lines
--- 54 lines

== Logs ==

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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (4 preceding siblings ...)
  2019-10-20 11:08 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2019-10-21 11:42 ` Patchwork
  2019-10-21 12:17 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-21 11:42 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
URL   : https://patchwork.freedesktop.org/series/68141/
State : warning

== Summary ==

ERROR! This series introduces new undocumented tests:

kms_busy@basic-flip-pipe-A
kms_busy@basic-flip-pipe-B
kms_busy@basic-flip-pipe-C
kms_busy@basic-flip-pipe-D
kms_busy@basic-flip-pipe-E
kms_busy@basic-flip-pipe-F
kms_busy@basic-modeset-pipe-A
kms_busy@basic-modeset-pipe-B
kms_busy@basic-modeset-pipe-C
kms_busy@basic-modeset-pipe-D
kms_busy@basic-modeset-pipe-E
kms_busy@basic-modeset-pipe-F
kms_busy@extended-modeset-hang-newfb-render-pipe-A
kms_busy@extended-modeset-hang-newfb-render-pipe-B
kms_busy@extended-modeset-hang-newfb-render-pipe-C
kms_busy@extended-modeset-hang-newfb-render-pipe-D
kms_busy@extended-modeset-hang-newfb-render-pipe-E
kms_busy@extended-modeset-hang-newfb-render-pipe-F
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-render-pipe-F
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-A
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-B
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-C
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-D
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-E
kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-F
kms_busy@extended-pageflip-hang-newfb-render-pipe-A
kms_busy@extended-pageflip-hang-newfb-render-pipe-B
kms_busy@extended-pageflip-hang-newfb-render-pipe-C
kms_busy@extended-pageflip-hang-newfb-render-pipe-D
kms_busy@extended-pageflip-hang-newfb-render-pipe-E
kms_busy@extended-pageflip-hang-newfb-render-pipe-F
kms_busy@extended-pageflip-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-hang-oldfb-render-pipe-F
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-A
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-B
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-C
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-D
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-E
kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-F

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

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (5 preceding siblings ...)
  2019-10-21 11:42 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork
@ 2019-10-21 12:17 ` Patchwork
  2019-10-21 15:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-21 12:17 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
URL   : https://patchwork.freedesktop.org/series/68141/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7139 -> IGTPW_3589
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][1] -> [FAIL][2] ([fdo#111407])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@prime_vgem@basic-fence-flip:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-icl-u3/igt@prime_vgem@basic-fence-flip.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-icl-u3/igt@prime_vgem@basic-fence-flip.html

  
#### Possible fixes ####

  * igt@gem_busy@busy-all:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-icl-u3/igt@gem_busy@busy-all.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-icl-u3/igt@gem_busy@busy-all.html

  * igt@gem_ctx_create@basic-files:
    - {fi-tgl-u}:         [INCOMPLETE][7] ([fdo#111735]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-tgl-u/igt@gem_ctx_create@basic-files.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-tgl-u/igt@gem_ctx_create@basic-files.html

  * igt@gem_ctx_switch@rcs0:
    - {fi-icl-guc}:       [INCOMPLETE][9] ([fdo#107713]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-icl-guc/igt@gem_ctx_switch@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-icl-guc/igt@gem_ctx_switch@rcs0.html

  * igt@gem_flink_basic@basic:
    - fi-icl-u3:          [DMESG-WARN][11] ([fdo#107724] / [fdo#112052 ]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-icl-u3/igt@gem_flink_basic@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-icl-u3/igt@gem_flink_basic@basic.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - {fi-icl-dsi}:       [DMESG-WARN][13] ([fdo#107724]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-icl-dsi/igt@kms_flip@basic-flip-vs-dpms.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][15] ([fdo#102614]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7139/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.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#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747
  [fdo#112052 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112052 


Participating hosts (51 -> 44)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5234 -> IGTPW_3589

  CI-20190529: 20190529
  CI_DRM_7139: b3159c87a05de1502964bab9aedf22714f7b20dd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3589: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/index.html
  IGT_5234: 1205552397bd8a19dc6e5abdaa727cc091dabbfe @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+++ 54 lines
--- 54 lines

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (6 preceding siblings ...)
  2019-10-21 12:17 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-10-21 15:22 ` Patchwork
  2019-11-07 14:45 ` [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Arkadiusz Hiler
  2019-11-11 11:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-10-21 15:22 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
URL   : https://patchwork.freedesktop.org/series/68141/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5234_full -> IGTPW_3589_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-iclb:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  
#### Suppressed ####

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

  * igt@gem_userptr_blits@create-destroy-sync:
    - {shard-tglb}:       [PASS][3] -> [INCOMPLETE][4] +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb3/igt@gem_userptr_blits@create-destroy-sync.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb2/igt@gem_userptr_blits@create-destroy-sync.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-xtiled:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-xtiled.html

  
New tests
---------

  New tests have been introduced between IGT_5234_full and IGTPW_3589_full:

### New IGT tests (36) ###

  * igt@kms_busy@basic-flip-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [21.77, 22.50] s

  * igt@kms_busy@basic-flip-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [21.54, 23.83] s

  * igt@kms_busy@basic-flip-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 23.52] s

  * igt@kms_busy@basic-flip-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@basic-modeset-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [21.89, 24.75] s

  * igt@kms_busy@basic-modeset-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [22.26, 25.30] s

  * igt@kms_busy@basic-modeset-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 26.14] s

  * igt@kms_busy@basic-modeset-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 25.81] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [22.24, 27.27] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [21.73, 27.07] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 28.87] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-a:
    - Statuses : 5 pass(s)
    - Exec time: [21.57, 25.43] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [22.04, 27.40] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 28.69] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 26.48] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [14.25, 17.83] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [14.37, 17.21] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.84] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [13.71, 17.79] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [12.99, 20.17] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 17.01] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 16.89] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [11.47, 16.13] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [10.99, 15.95] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.70] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 16.79] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [0.19, 1.68] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [0.11, 1.51] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.52] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.53] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [13.63, 16.53] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [12.96, 15.92] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.06] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 17.87] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * 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/IGT_5234/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_eio@reset-stress:
    - shard-snb:          [PASS][8] -> [FAIL][9] ([fdo#109661])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb5/igt@gem_eio@reset-stress.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb2/igt@gem_eio@reset-stress.html

  * igt@gem_exec_async@concurrent-writes-bsd:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#111325]) +5 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb6/igt@gem_exec_async@concurrent-writes-bsd.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#109276]) +16 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][16] -> [DMESG-WARN][17] ([fdo#111870]) +2 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@gem_workarounds@suspend-resume:
    - shard-kbl:          [PASS][18] -> [INCOMPLETE][19] ([fdo#103665])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-kbl3/igt@gem_workarounds@suspend-resume.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-kbl4/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [PASS][20] -> [DMESG-WARN][21] ([fdo#108566]) +7 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl2/igt@gem_workarounds@suspend-resume-context.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl2/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-hsw:          [PASS][22] -> [FAIL][23] ([fdo#103355])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#103167]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

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

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109441]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-s3:
    - {shard-tglb}:       [INCOMPLETE][30] ([fdo#111832]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb5/igt@gem_ctx_isolation@vcs1-s3.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb1/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_shared@q-smoketest-all:
    - {shard-tglb}:       [INCOMPLETE][32] ([fdo#111735]) -> [PASS][33] +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb6/igt@gem_ctx_shared@q-smoketest-all.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb5/igt@gem_ctx_shared@q-smoketest-all.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][34] ([fdo#110854]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb8/igt@gem_exec_balancer@smoke.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@gem_exec_balancer@smoke.html

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

  * igt@gem_exec_suspend@basic-s4-devices:
    - {shard-tglb}:       [INCOMPLETE][38] ([fdo#111850]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@gem_exec_suspend@basic-s4-devices.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb7/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_persistent_relocs@forked-faulting-reloc-thrashing:
    - shard-iclb:         [INCOMPLETE][40] ([fdo#107713]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb4/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb3/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html

  * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive:
    - shard-hsw:          [FAIL][42] ([fdo#112037]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw5/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html

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

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [DMESG-WARN][46] ([fdo#111870]) -> [PASS][47] +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@i915_selftest@live_hangcheck:
    - shard-iclb:         [INCOMPLETE][48] ([fdo#107713] / [fdo#108569]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb1/igt@i915_selftest@live_hangcheck.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb2/igt@i915_selftest@live_hangcheck.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][50] ([fdo#108566]) -> [PASS][51] +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - {shard-tglb}:       [INCOMPLETE][52] ([fdo#111747] / [fdo#111832] / [fdo#111850]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-badstride:
    - shard-iclb:         [FAIL][54] ([fdo#103167]) -> [PASS][55] +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-badstride.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - {shard-tglb}:       [FAIL][56] ([fdo#103167]) -> [PASS][57] +3 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - {shard-tglb}:       [INCOMPLETE][58] ([fdo#111832] / [fdo#111850]) -> [PASS][59] +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][60] ([fdo#99912]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl2/igt@kms_setmode@basic.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl7/igt@kms_setmode@basic.html
    - shard-kbl:          [FAIL][62] ([fdo#99912]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-kbl6/igt@kms_setmode@basic.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-kbl7/igt@kms_setmode@basic.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][64] ([fdo#109276]) -> [PASS][65] +18 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb8/igt@prime_busy@hang-bsd2.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@prime_busy@hang-bsd2.html

  * igt@prime_busy@hang-render:
    - shard-hsw:          [INCOMPLETE][66] ([fdo#103540]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw1/igt@prime_busy@hang-render.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw7/igt@prime_busy@hang-render.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-hsw:          [SKIP][68] ([fdo#109271]) -> [SKIP][69] ([fdo#109271] / [fdo#112080]) +12 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw8/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw6/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-glk:          [SKIP][70] ([fdo#109271]) -> [SKIP][71] ([fdo#109271] / [fdo#112080]) +13 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-glk3/igt@gem_ctx_isolation@vcs1-s3.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-glk4/igt@gem_ctx_isolation@vcs1-s3.html
    - shard-apl:          [SKIP][72] ([fdo#109271]) -> [SKIP][73] ([fdo#109271] / [fdo#112080]) +13 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl7/igt@gem_ctx_isolation@vcs1-s3.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl4/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_isolation@vcs2-dirty-create:
    - shard-snb:          [SKIP][74] ([fdo#109271]) -> [SKIP][75] ([fdo#109271] / [fdo#112080]) +13 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb4/igt@gem_ctx_isolation@vcs2-dirty-create.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb2/igt@gem_ctx_isolation@vcs2-dirty-create.html

  * igt@gem_ctx_isolation@vcs2-dirty-switch:
    - shard-iclb:         [SKIP][76] ([fdo#109276]) -> [SKIP][77] ([fdo#109276] / [fdo#112080]) +9 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb1/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-kbl:          [SKIP][78] ([fdo#109271]) -> [SKIP][79] ([fdo#109271] / [fdo#112080]) +6 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-kbl2/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-kbl1/igt@gem_ctx_isolation@vcs2-dirty-switch.html

  * igt@gem_exec_schedule@reorder-wide-bsd1:
    - shard-iclb:         [INCOMPLETE][80] ([fdo#107713]) -> [SKIP][81] ([fdo#1092

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (7 preceding siblings ...)
  2019-10-21 15:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2019-11-07 14:45 ` Arkadiusz Hiler
  2019-11-11 11:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork
  9 siblings, 0 replies; 14+ messages in thread
From: Arkadiusz Hiler @ 2019-11-07 14:45 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

On Thu, Oct 17, 2019 at 12:17:12PM +0300, Petri Latvala wrote:
> The blacklist for pipes E and F are not capturing kms_busy's usage of
> them, because of the differing naming convention. Make that more
> uniform.
> 
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Martin Peres <martin.peres@linux.intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting
  2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
  2019-10-17  9:21   ` [igt-dev] [PATCH i-g-t v2 " Petri Latvala
@ 2019-11-07 14:45   ` Arkadiusz Hiler
  2019-11-07 14:54     ` Arkadiusz Hiler
  1 sibling, 1 reply; 14+ messages in thread
From: Arkadiusz Hiler @ 2019-11-07 14:45 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

On Thu, Oct 17, 2019 at 12:17:13PM +0300, Petri Latvala wrote:
> Blacklist pipes E and F usage even when the subtest name ends in
> pipe-x.
> 
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Martin Peres <martin.peres@linux.intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting
  2019-11-07 14:45   ` [igt-dev] [PATCH i-g-t " Arkadiusz Hiler
@ 2019-11-07 14:54     ` Arkadiusz Hiler
  0 siblings, 0 replies; 14+ messages in thread
From: Arkadiusz Hiler @ 2019-11-07 14:54 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

On Thu, Nov 07, 2019 at 04:45:51PM +0200, Arkadiusz Hiler wrote:
> On Thu, Oct 17, 2019 at 12:17:13PM +0300, Petri Latvala wrote:
> > Blacklist pipes E and F usage even when the subtest name ends in
> > pipe-x.
> > 
> > Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> > Cc: Martin Peres <martin.peres@linux.intel.com>
> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

was meant for the v2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
  2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
                   ` (8 preceding siblings ...)
  2019-11-07 14:45 ` [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Arkadiusz Hiler
@ 2019-11-11 11:31 ` Patchwork
  9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2019-11-11 11:31 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4)
URL   : https://patchwork.freedesktop.org/series/68141/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5234_full -> IGTPW_3589_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_userptr_blits@create-destroy-sync:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb3/igt@gem_userptr_blits@create-destroy-sync.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb2/igt@gem_userptr_blits@create-destroy-sync.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-xtiled:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-xtiled.html

  
New tests
---------

  New tests have been introduced between IGT_5234_full and IGTPW_3589_full:

### New IGT tests (36) ###

  * igt@kms_busy@basic-flip-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [21.77, 22.50] s

  * igt@kms_busy@basic-flip-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [21.54, 23.83] s

  * igt@kms_busy@basic-flip-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 23.52] s

  * igt@kms_busy@basic-flip-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@basic-modeset-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [21.89, 24.75] s

  * igt@kms_busy@basic-modeset-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [22.26, 25.30] s

  * igt@kms_busy@basic-modeset-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 26.14] s

  * igt@kms_busy@basic-modeset-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 25.81] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [22.24, 27.27] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [21.73, 27.07] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 28.87] s

  * igt@kms_busy@extended-modeset-hang-newfb-render-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-a:
    - Statuses : 5 pass(s)
    - Exec time: [21.57, 25.43] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [22.04, 27.40] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 28.69] s

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 26.48] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [14.25, 17.83] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [14.37, 17.21] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.84] s

  * igt@kms_busy@extended-modeset-hang-oldfb-render-pipe-d:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [13.71, 17.79] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [12.99, 20.17] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 17.01] s

  * igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 16.89] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-a:
    - Statuses : 7 pass(s)
    - Exec time: [11.47, 16.13] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [10.99, 15.95] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-c:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.70] s

  * igt@kms_busy@extended-pageflip-hang-newfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 16.79] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [0.19, 1.68] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-b:
    - Statuses : 7 pass(s)
    - Exec time: [0.11, 1.51] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.52] s

  * igt@kms_busy@extended-pageflip-hang-oldfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 1.53] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-a:
    - Statuses : 6 pass(s)
    - Exec time: [13.63, 16.53] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-b:
    - Statuses : 6 pass(s)
    - Exec time: [12.96, 15.92] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-c:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 16.06] s

  * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-pipe-d:
    - Statuses : 1 pass(s) 6 skip(s)
    - Exec time: [0.0, 17.87] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [PASS][4] -> [FAIL][5] ([fdo#111925])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb4/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_eio@reset-stress:
    - shard-snb:          [PASS][6] -> [FAIL][7] ([fdo#109661])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb5/igt@gem_eio@reset-stress.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb2/igt@gem_eio@reset-stress.html

  * igt@gem_exec_async@concurrent-writes-bsd:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#111325]) +5 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb6/igt@gem_exec_async@concurrent-writes-bsd.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@gem_exec_async@concurrent-writes-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#109276]) +16 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [PASS][12] -> [DMESG-WARN][13] ([fdo#111870])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@gem_workarounds@suspend-resume:
    - shard-kbl:          [PASS][16] -> [INCOMPLETE][17] ([fdo#103665])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-kbl3/igt@gem_workarounds@suspend-resume.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-kbl4/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [PASS][18] -> [DMESG-WARN][19] ([fdo#108566]) +7 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl2/igt@gem_workarounds@suspend-resume-context.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl2/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_suspend@sysfs-reader:
    - shard-tglb:         [PASS][20] -> [INCOMPLETE][21] ([fdo#111832] / [fdo#111850]) +2 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb2/igt@i915_suspend@sysfs-reader.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb2/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-hsw:          [PASS][22] -> [FAIL][23] ([fdo#103355])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#103167]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-tglb:         [PASS][26] -> [FAIL][27] ([fdo#103167]) +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

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

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109441]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-iclb:         [PASS][32] -> [DMESG-WARN][33] ([fdo#111764])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-tglb:         [INCOMPLETE][34] ([fdo#111832]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb5/igt@gem_ctx_isolation@vcs1-s3.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb1/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_shared@q-smoketest-all:
    - shard-tglb:         [INCOMPLETE][36] ([fdo#111735]) -> [PASS][37] +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb6/igt@gem_ctx_shared@q-smoketest-all.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb5/igt@gem_ctx_shared@q-smoketest-all.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][38] ([fdo#110854]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb8/igt@gem_exec_balancer@smoke.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@preempt-other-bsd:
    - shard-iclb:         [SKIP][40] ([fdo#111325]) -> [PASS][41] +3 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb7/igt@gem_exec_schedule@preempt-other-bsd.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-tglb:         [INCOMPLETE][42] ([fdo#111850]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@gem_exec_suspend@basic-s4-devices.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb7/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_persistent_relocs@forked-faulting-reloc-thrashing:
    - shard-iclb:         [INCOMPLETE][44] ([fdo#107713]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb4/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb3/igt@gem_persistent_relocs@forked-faulting-reloc-thrashing.html

  * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive:
    - shard-hsw:          [FAIL][46] ([fdo#112037]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw5/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html

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

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51] +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@i915_selftest@live_hangcheck:
    - shard-iclb:         [INCOMPLETE][52] ([fdo#107713] / [fdo#108569]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb1/igt@i915_selftest@live_hangcheck.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb2/igt@i915_selftest@live_hangcheck.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][54] ([fdo#108566]) -> [PASS][55] +5 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-tglb:         [INCOMPLETE][56] ([fdo#111747] / [fdo#111832] / [fdo#111850]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-badstride:
    - shard-iclb:         [FAIL][58] ([fdo#103167]) -> [PASS][59] +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-badstride.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-badstride.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-tglb:         [FAIL][60] ([fdo#103167]) -> [PASS][61] +3 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-tglb:         [INCOMPLETE][62] ([fdo#111832] / [fdo#111850]) -> [PASS][63] +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-tglb6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][64] ([fdo#99912]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-apl2/igt@kms_setmode@basic.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-apl7/igt@kms_setmode@basic.html
    - shard-kbl:          [FAIL][66] ([fdo#99912]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-kbl6/igt@kms_setmode@basic.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-kbl7/igt@kms_setmode@basic.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][68] ([fdo#109276]) -> [PASS][69] +18 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb8/igt@prime_busy@hang-bsd2.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb1/igt@prime_busy@hang-bsd2.html

  * igt@prime_busy@hang-render:
    - shard-hsw:          [INCOMPLETE][70] ([fdo#103540]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw1/igt@prime_busy@hang-render.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw7/igt@prime_busy@hang-render.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-dirty-create:
    - shard-hsw:          [SKIP][72] ([fdo#109271]) -> [SKIP][73] ([fdo#109271] / [fdo#112080]) +14 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-hsw8/igt@gem_ctx_isolation@vcs1-dirty-create.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-hsw6/igt@gem_ctx_isolation@vcs1-dirty-create.html

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-glk:          [SKIP][74] ([fdo#109271]) -> [SKIP][75] ([fdo#109271] / [fdo#112080]) +15 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-glk3/igt@gem_ctx_isolation@vcs1-s3.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-glk4/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_isolation@vcs2-dirty-create:
    - shard-snb:          [SKIP][76] ([fdo#109271]) -> [SKIP][77] ([fdo#109271] / [fdo#112080]) +15 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-snb4/igt@gem_ctx_isolation@vcs2-dirty-create.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-snb2/igt@gem_ctx_isolation@vcs2-dirty-create.html

  * igt@gem_ctx_isolation@vcs2-dirty-switch:
    - shard-iclb:         [SKIP][78] ([fdo#109276]) -> [SKIP][79] ([fdo#109276] / [fdo#112080]) +11 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5234/shard-iclb1/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3589/shard-iclb6/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-kbl:          [SKIP][80] ([fdo#109271]) -> [SKIP][81] ([fdo#109271] / [fdo#112080]) +7 similar issues
   [80]: htt

== Logs ==

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

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

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

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-17  9:17 [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Petri Latvala
2019-10-17  9:17 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci: Adjust pipe-specific blacklisting Petri Latvala
2019-10-17  9:21   ` [igt-dev] [PATCH i-g-t v2 " Petri Latvala
2019-11-07 14:45   ` [igt-dev] [PATCH i-g-t " Arkadiusz Hiler
2019-11-07 14:54     ` Arkadiusz Hiler
2019-10-17  9:41 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev2) Patchwork
2019-10-17 10:00 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2019-10-20 10:51 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev3) Patchwork
2019-10-20 11:08 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2019-10-21 11:42 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork
2019-10-21 12:17 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-10-21 15:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2019-11-07 14:45 ` [igt-dev] [PATCH i-g-t 1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable Arkadiusz Hiler
2019-11-11 11:31 ` [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] kms_busy: Rename tests so pipe-specific subtests are blacklistable (rev4) Patchwork

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