Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting
@ 2020-11-05  6:08 nidhi1.gupta
  2020-11-05  7:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3) Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: nidhi1.gupta @ 2020-11-05  6:08 UTC (permalink / raw)
  To: igt-dev; +Cc: Nidhi Gupta, Petri Latvala

From: Nidhi Gupta <nidhi1.gupta@intel.com>

For Multipipe scenario added dynamic subtests
for accurate reporting of the results.

Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
---
 tests/kms_atomic_interruptible.c | 56 +++++++++++++++---------
 tests/kms_flip_tiling.c          | 73 ++++++++++++++++++++------------
 2 files changed, 81 insertions(+), 48 deletions(-)

diff --git a/tests/kms_atomic_interruptible.c b/tests/kms_atomic_interruptible.c
index e5ccdf5b..27bb6a2b 100644
--- a/tests/kms_atomic_interruptible.c
+++ b/tests/kms_atomic_interruptible.c
@@ -284,47 +284,61 @@ igt_main
 		igt_require_sw_sync();
 	}
 
-	igt_subtest("legacy-setmode")
+	igt_subtest_with_dynamic("legacy-setmode") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_legacy_modeset, DRM_PLANE_TYPE_PRIMARY);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_legacy_modeset, DRM_PLANE_TYPE_PRIMARY);
+				break;
 		}
+	}
 
-	igt_subtest("atomic-setmode")
+	igt_subtest_with_dynamic("atomic-setmode") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_atomic_modeset, DRM_PLANE_TYPE_PRIMARY);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_atomic_modeset, DRM_PLANE_TYPE_PRIMARY);
+				break;
 		}
+	}
 
-	igt_subtest("legacy-dpms")
+	igt_subtest_with_dynamic("legacy-dpms") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_legacy_dpms, DRM_PLANE_TYPE_PRIMARY);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_legacy_dpms, DRM_PLANE_TYPE_PRIMARY);
+				break;
 		}
+	}
 
-	igt_subtest("legacy-pageflip")
+	igt_subtest_with_dynamic("legacy-pageflip") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_pageflip, DRM_PLANE_TYPE_PRIMARY);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_pageflip, DRM_PLANE_TYPE_PRIMARY);
+				break;
 		}
+	}
 
-	igt_subtest("legacy-cursor")
+	igt_subtest_with_dynamic("legacy-cursor") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_setcursor, DRM_PLANE_TYPE_CURSOR);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_setcursor, DRM_PLANE_TYPE_CURSOR);
+				break;
 		}
+	}
 
-	igt_subtest("universal-setplane-primary")
+	igt_subtest_with_dynamic("universal-setplane-primary") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_PRIMARY);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_PRIMARY);
+				break;
 		}
+	}
 
-	igt_subtest("universal-setplane-cursor")
+	igt_subtest_with_dynamic("universal-setplane-cursor") {
 		for_each_pipe_with_valid_output(&display, pipe, output) {
-			run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_CURSOR);
-			break;
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_CURSOR);
+				break;
 		}
+	}
 
 	/* TODO: legacy gamma_set/get, object set/getprop, getcrtc, getconnector */
 	igt_fixture {
diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c
index fb79de15..7a736fba 100644
--- a/tests/kms_flip_tiling.c
+++ b/tests/kms_flip_tiling.c
@@ -173,7 +173,7 @@ igt_main
 	 * generated and compared to the reference one.
 	 */
 
-	igt_subtest_f("flip-changes-tiling") {
+	igt_subtest_with_dynamic("flip-changes-tiling") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
 				       LOCAL_DRM_FORMAT_MOD_NONE };
 		enum pipe pipe;
@@ -181,11 +181,13 @@ igt_main
 		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
 			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-changes-tiling-Y") {
+	igt_subtest_with_dynamic("flip-changes-tiling-Y") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
 				       LOCAL_DRM_FORMAT_MOD_NONE };
 		enum pipe pipe;
@@ -197,11 +199,14 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-changes-tiling-Yf") {
+
+	igt_subtest_with_dynamic("flip-changes-tiling-Yf") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
 				       LOCAL_DRM_FORMAT_MOD_NONE };
 		enum pipe pipe;
@@ -213,8 +218,10 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
 	/*
@@ -225,7 +232,7 @@ igt_main
 	 * reference one.
 	 */
 
-	igt_subtest_f("flip-X-tiled") {
+	igt_subtest_with_dynamic("flip-X-tiled") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
 				       LOCAL_I915_FORMAT_MOD_X_TILED };
 		enum pipe pipe;
@@ -233,11 +240,13 @@ igt_main
 		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
 			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-Y-tiled") {
+	igt_subtest_with_dynamic("flip-Y-tiled") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
 				       LOCAL_I915_FORMAT_MOD_Y_TILED };
 		enum pipe pipe;
@@ -249,11 +258,13 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-Yf-tiled") {
+	igt_subtest_with_dynamic("flip-Yf-tiled") {
 		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
 				       LOCAL_I915_FORMAT_MOD_Yf_TILED };
 		enum pipe pipe;
@@ -265,8 +276,10 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
 	/*
@@ -277,7 +290,7 @@ igt_main
 	 * reference one.
 	 */
 
-	igt_subtest_f("flip-to-X-tiled") {
+	igt_subtest_with_dynamic("flip-to-X-tiled") {
 		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
 				       LOCAL_I915_FORMAT_MOD_X_TILED };
 		enum pipe pipe;
@@ -285,11 +298,13 @@ igt_main
 		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
 			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-to-Y-tiled") {
+	igt_subtest_with_dynamic("flip-to-Y-tiled") {
 		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
 				       LOCAL_I915_FORMAT_MOD_Y_TILED };
 		enum pipe pipe;
@@ -301,11 +316,13 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
-	igt_subtest_f("flip-to-Yf-tiled") {
+	igt_subtest_with_dynamic("flip-to-Yf-tiled") {
 		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
 				       LOCAL_I915_FORMAT_MOD_Yf_TILED };
 		enum pipe pipe;
@@ -317,8 +334,10 @@ igt_main
 
 		igt_require(data.gen >= 9);
 
-		for_each_pipe_with_valid_output(&data.display, pipe, output)
-			test_flip_tiling(&data, pipe, output, tiling);
+		for_each_pipe_with_valid_output(&data.display, pipe, output) {
+			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
+				test_flip_tiling(&data, pipe, output, tiling);
+		}
 	}
 
 	igt_fixture {
-- 
2.26.2

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
@ 2020-11-05  7:29 ` Patchwork
  2020-11-05  8:00   ` Petri Latvala
  2020-11-05  9:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2020-11-05  7:29 UTC (permalink / raw)
  To: nidhi1.gupta; +Cc: igt-dev


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

== Series Details ==

Series: Added dynamic subtests for accurate reporting (rev3)
URL   : https://patchwork.freedesktop.org/series/82743/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5833 -> IGTPW_5134
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@hangcheck:
    - fi-bsw-n3050:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload:
    - fi-tgl-u2:          [PASS][3] -> [DMESG-WARN][4] ([i915#1982] / [k.org#205379])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-bsw-kefka:       [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-byt-j1900:       [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          [PASS][9] -> [DMESG-WARN][10] ([i915#1982])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-tgl-u2:          [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html

  * igt@debugfs_test@read_all_entries:
    - fi-bsw-nick:        [INCOMPLETE][13] ([i915#1250] / [i915#1436]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-nick/igt@debugfs_test@read_all_entries.html

  * igt@i915_module_load@reload:
    - fi-icl-u2:          [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@i915_module_load@reload.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@i915_module_load@reload.html
    - fi-byt-j1900:       [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@i915_module_load@reload.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - {fi-ehl-1}:         [DMESG-WARN][19] ([i915#1982]) -> [PASS][20] +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_selftest@live@execlists:
    - {fi-kbl-7560u}:     [INCOMPLETE][21] ([i915#794]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7560u/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       [FAIL][23] ([i915#1161] / [i915#262]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html

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

  [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
  [i915#1250]: https://gitlab.freedesktop.org/drm/intel/issues/1250
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2601]: https://gitlab.freedesktop.org/drm/intel/issues/2601
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
  [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379


Participating hosts (44 -> 40)
------------------------------

  Missing    (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5833 -> IGTPW_5134

  CI-20190529: 20190529
  CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5134: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html
  IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  7:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3) Patchwork
@ 2020-11-05  8:00   ` Petri Latvala
  2020-11-05 17:51     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 8+ messages in thread
From: Petri Latvala @ 2020-11-05  8:00 UTC (permalink / raw)
  To: igt-dev, Lakshminarayana Vudum; +Cc: nidhi1.gupta

On Thu, Nov 05, 2020 at 07:29:50AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Added dynamic subtests for accurate reporting (rev3)
> URL   : https://patchwork.freedesktop.org/series/82743/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5833 -> IGTPW_5134
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5134 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5134, 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_5134/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_5134:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-bsw-n3050:       [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html


Lakshmi, false positive here.


-- 
Petri Latvala


> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5134 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@i915_module_load@reload:
>     - fi-tgl-u2:          [PASS][3] -> [DMESG-WARN][4] ([i915#1982] / [k.org#205379])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@i915_module_load@reload.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@i915_module_load@reload.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - fi-bsw-kefka:       [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - fi-byt-j1900:       [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - fi-icl-u2:          [PASS][9] -> [DMESG-WARN][10] ([i915#1982])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - fi-tgl-u2:          [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@debugfs_test@read_all_entries:
>     - fi-bsw-nick:        [INCOMPLETE][13] ([i915#1250] / [i915#1436]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
> 
>   * igt@i915_module_load@reload:
>     - fi-icl-u2:          [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] +2 similar issues
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@i915_module_load@reload.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@i915_module_load@reload.html
>     - fi-byt-j1900:       [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@i915_module_load@reload.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@i915_module_load@reload.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - {fi-ehl-1}:         [DMESG-WARN][19] ([i915#1982]) -> [PASS][20] +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_selftest@live@execlists:
>     - {fi-kbl-7560u}:     [INCOMPLETE][21] ([i915#794]) -> [PASS][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
> 
>   * igt@kms_chamelium@dp-crc-fast:
>     - fi-kbl-7500u:       [FAIL][23] ([i915#1161] / [i915#262]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
>   [i915#1250]: https://gitlab.freedesktop.org/drm/intel/issues/1250
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
>   [i915#2601]: https://gitlab.freedesktop.org/drm/intel/issues/2601
>   [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
>   [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
>   [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
> 
> 
> Participating hosts (44 -> 40)
> ------------------------------
> 
>   Missing    (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5833 -> IGTPW_5134
> 
>   CI-20190529: 20190529
>   CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_5134: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html
>   IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html

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

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
  2020-11-05  7:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3) Patchwork
@ 2020-11-05  9:07 ` Patchwork
  2020-11-05 10:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2020-11-05  9:07 UTC (permalink / raw)
  To: nidhi1.gupta; +Cc: igt-dev


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

== Series Details ==

Series: Added dynamic subtests for accurate reporting (rev3)
URL   : https://patchwork.freedesktop.org/series/82743/
State : success

== Summary ==

CI Bug Log - changes from IGT_5833 -> IGTPW_5134
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload:
    - fi-tgl-u2:          [PASS][1] -> [DMESG-WARN][2] ([i915#1982] / [k.org#205379])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@i915_module_load@reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-bsw-kefka:       [PASS][3] -> [DMESG-WARN][4] ([i915#1982])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_selftest@live@hangcheck:
    - fi-bsw-n3050:       [PASS][5] -> [INCOMPLETE][6] ([i915#2639])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-byt-j1900:       [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          [PASS][9] -> [DMESG-WARN][10] ([i915#1982])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-tgl-u2:          [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html

  * igt@debugfs_test@read_all_entries:
    - fi-bsw-nick:        [INCOMPLETE][13] ([i915#1250] / [i915#1436]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-nick/igt@debugfs_test@read_all_entries.html

  * igt@i915_module_load@reload:
    - fi-icl-u2:          [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@i915_module_load@reload.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@i915_module_load@reload.html
    - fi-byt-j1900:       [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@i915_module_load@reload.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - {fi-ehl-1}:         [DMESG-WARN][19] ([i915#1982]) -> [PASS][20] +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_selftest@live@execlists:
    - {fi-kbl-7560u}:     [INCOMPLETE][21] ([i915#794]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7560u/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       [FAIL][23] ([i915#1161] / [i915#262]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html

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

  [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
  [i915#1250]: https://gitlab.freedesktop.org/drm/intel/issues/1250
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2601]: https://gitlab.freedesktop.org/drm/intel/issues/2601
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#2639]: https://gitlab.freedesktop.org/drm/intel/issues/2639
  [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
  [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379


Participating hosts (44 -> 40)
------------------------------

  Missing    (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5833 -> IGTPW_5134

  CI-20190529: 20190529
  CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5134: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html
  IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
  2020-11-05  7:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3) Patchwork
  2020-11-05  9:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-11-05 10:55 ` Patchwork
  2020-11-05 17:41 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2020-11-09 17:37 ` [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting Zbigniew Kempczyński
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2020-11-05 10:55 UTC (permalink / raw)
  To: nidhi1.gupta; +Cc: igt-dev


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

== Series Details ==

Series: Added dynamic subtests for accurate reporting (rev3)
URL   : https://patchwork.freedesktop.org/series/82743/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5833_full -> IGTPW_5134_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - shard-iclb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb3/igt@gem_exec_whisper@basic-contexts-priority-all.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_tiled_fence_blits@basic:
    - shard-snb:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb6/igt@gem_tiled_fence_blits@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@gem_workarounds@suspend-resume.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@gem_workarounds@suspend-resume.html
    - shard-hsw:          [PASS][7] -> [DMESG-WARN][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@gem_workarounds@suspend-resume.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw2/igt@gem_workarounds@suspend-resume.html

  
New tests
---------

  New tests have been introduced between IGT_5833_full and IGTPW_5134_full:

### New IGT tests (141) ###

  * igt@kms_atomic_interruptible@atomic-setmode@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.39, 6.40] s

  * igt@kms_atomic_interruptible@atomic-setmode@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.99, 7.03] s

  * igt@kms_atomic_interruptible@atomic-setmode@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.67] s

  * igt@kms_atomic_interruptible@atomic-setmode@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.15, 6.23] s

  * igt@kms_atomic_interruptible@legacy-cursor@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.37, 6.55] s

  * igt@kms_atomic_interruptible@legacy-cursor@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [7.49, 7.53] s

  * igt@kms_atomic_interruptible@legacy-cursor@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.15, 6.28] s

  * igt@kms_atomic_interruptible@legacy-dpms@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.25, 6.35] s

  * igt@kms_atomic_interruptible@legacy-dpms@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [7.50] s

  * igt@kms_atomic_interruptible@legacy-dpms@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.57] s

  * igt@kms_atomic_interruptible@legacy-dpms@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.15, 6.17] s

  * igt@kms_atomic_interruptible@legacy-pageflip@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.25, 6.34] s

  * igt@kms_atomic_interruptible@legacy-pageflip@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [7.51, 7.54] s

  * igt@kms_atomic_interruptible@legacy-pageflip@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.65] s

  * igt@kms_atomic_interruptible@legacy-pageflip@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.16, 6.20] s

  * igt@kms_atomic_interruptible@legacy-setmode@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.26, 6.35] s

  * igt@kms_atomic_interruptible@legacy-setmode@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.86, 6.88] s

  * igt@kms_atomic_interruptible@legacy-setmode@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.59] s

  * igt@kms_atomic_interruptible@legacy-setmode@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.14, 6.17] s

  * igt@kms_atomic_interruptible@universal-setplane-cursor@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.25, 6.34] s

  * igt@kms_atomic_interruptible@universal-setplane-cursor@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [7.49, 7.53] s

  * igt@kms_atomic_interruptible@universal-setplane-cursor@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.60] s

  * igt@kms_atomic_interruptible@universal-setplane-cursor@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.15, 6.23] s

  * igt@kms_atomic_interruptible@universal-setplane-primary@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.26, 6.43] s

  * igt@kms_atomic_interruptible@universal-setplane-primary@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [7.52, 7.54] s

  * igt@kms_atomic_interruptible@universal-setplane-primary@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [6.60] s

  * igt@kms_atomic_interruptible@universal-setplane-primary@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [6.18, 6.22] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.40, 0.53] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.46, 0.57] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.45, 0.58] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.59, 0.76] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@edp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [1.30, 1.34] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@edp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [1.28, 1.37] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.29] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.92] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.53] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.52] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.57] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.53] s

  * igt@kms_flip_tiling@flip-changes-tiling-y@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.55] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.39, 0.54] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.46, 0.58] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.45, 0.58] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@edp-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.72] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@edp-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [1.36] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@edp-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [1.36] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.97] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.53] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.58] s

  * igt@kms_flip_tiling@flip-changes-tiling-yf@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.53] s

  * igt@kms_flip_tiling@flip-changes-tiling@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.39, 0.48] s

  * igt@kms_flip_tiling@flip-changes-tiling@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.51] s

  * igt@kms_flip_tiling@flip-changes-tiling@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.51] s

  * igt@kms_flip_tiling@flip-changes-tiling@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.56, 0.73] s

  * igt@kms_flip_tiling@flip-changes-tiling@edp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [1.26, 1.34] s

  * igt@kms_flip_tiling@flip-changes-tiling@edp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [1.27, 1.34] s

  * igt@kms_flip_tiling@flip-changes-tiling@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.29] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 0.83] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 0.46] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 0.47] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.51] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.47] s

  * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.47] s

  * igt@kms_flip_tiling@flip-changes-tiling@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.30, 0.39] s

  * igt@kms_flip_tiling@flip-changes-tiling@vga-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.28, 0.31] s

  * igt@kms_flip_tiling@flip-changes-tiling@vga-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.28] s

  * igt@kms_flip_tiling@flip-to-x-tiled@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.38, 0.50] s

  * igt@kms_flip_tiling@flip-to-x-tiled@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.45, 0.61] s

  * igt@kms_flip_tiling@flip-to-x-tiled@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.45, 0.58] s

  * igt@kms_flip_tiling@flip-to-x-tiled@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.59, 0.69] s

  * igt@kms_flip_tiling@flip-to-x-tiled@edp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [1.30, 1.34] s

  * igt@kms_flip_tiling@flip-to-x-tiled@edp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [1.28, 1.34] s

  * igt@kms_flip_tiling@flip-to-x-tiled@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.29] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.25, 0.87] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.26, 0.48] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.26, 0.48] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.49] s

  * igt@kms_flip_tiling@flip-to-x-tiled@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.50] s

  * igt@kms_flip_tiling@flip-to-x-tiled@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.31, 0.39] s

  * igt@kms_flip_tiling@flip-to-x-tiled@vga-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.29, 0.33] s

  * igt@kms_flip_tiling@flip-to-x-tiled@vga-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.29] s

  * igt@kms_flip_tiling@flip-to-y-tiled@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.40, 0.55] s

  * igt@kms_flip_tiling@flip-to-y-tiled@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.46, 0.59] s

  * igt@kms_flip_tiling@flip-to-y-tiled@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.48, 0.59] s

  * igt@kms_flip_tiling@flip-to-y-tiled@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.66, 0.75] s

  * igt@kms_flip_tiling@flip-to-y-tiled@edp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [1.30, 1.32] s

  * igt@kms_flip_tiling@flip-to-y-tiled@edp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [1.28, 1.36] s

  * igt@kms_flip_tiling@flip-to-y-tiled@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.28] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-1-pipe-a:
    - Statuses : 1 dmesg-warn(s)
    - Exec time: [0.95] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.55] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.61] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-to-y-tiled@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.54] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.41, 0.56] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.59] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.60] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@edp-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.78] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@edp-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [1.32] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@edp-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [1.32] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.93] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.54] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.57] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.56] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.58] s

  * igt@kms_flip_tiling@flip-to-yf-tiled@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.54] s

  * igt@kms_flip_tiling@flip-x-tiled@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.45, 0.63] s

  * igt@kms_flip_tiling@flip-x-tiled@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.52] s

  * igt@kms_flip_tiling@flip-x-tiled@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.43, 0.51] s

  * igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.61, 0.74] s

  * igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [1.24, 1.38] s

  * igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [1.28, 1.34] s

  * igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.28] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 1.00] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 0.49] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.24, 0.47] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.49] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.47] s

  * igt@kms_flip_tiling@flip-x-tiled@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.47] s

  * igt@kms_flip_tiling@flip-x-tiled@vga-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.41, 0.46] s

  * igt@kms_flip_tiling@flip-x-tiled@vga-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.28, 0.31] s

  * igt@kms_flip_tiling@flip-x-tiled@vga-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.28] s

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.60] s

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [1.25] s

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [1.29] s

  * igt@kms_flip_tiling@flip-y-tiled@edp-1-pipe-d:
    - Statuses : 1 pass(s)
    - Exec time: [1.29] s

  * igt@kms_flip_tiling@flip-yf-tiled@dp-1-pipe-a:
    - Statuses : 2 pass(s)
    - Exec time: [0.47, 0.62] s

  * igt@kms_flip_tiling@flip-yf-tiled@dp-1-pipe-b:
    - Statuses : 2 pass(s)
    - Exec time: [0.47, 0.63] s

  * igt@kms_flip_tiling@flip-yf-tiled@dp-1-pipe-c:
    - Statuses : 2 pass(s)
    - Exec time: [0.49, 0.66] s

  * igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.75] s

  * igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [1.38] s

  * igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [1.34] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-1-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.96] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-1-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-1-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.63] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-2-pipe-a:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-2-pipe-b:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

  * igt@kms_flip_tiling@flip-yf-tiled@hdmi-a-2-pipe-c:
    - Statuses : 1 pass(s)
    - Exec time: [0.63] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2389])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk7/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-forked:
    - shard-snb:          [PASS][11] -> [INCOMPLETE][12] ([i915#2502] / [i915#82])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@gem_exec_whisper@basic-contexts-forked.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@gem_exec_whisper@basic-contexts-forked.html

  * igt@gem_workarounds@suspend-resume:
    - shard-iclb:         [PASS][13] -> [INCOMPLETE][14] ([i915#1185]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@gem_workarounds@suspend-resume.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb5/igt@gem_workarounds@suspend-resume.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [PASS][15] -> [INCOMPLETE][16] ([i915#1635] / [i915#2635]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl1/igt@i915_suspend@sysfs-reader.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl3/igt@i915_suspend@sysfs-reader.html
    - shard-glk:          [PASS][17] -> [INCOMPLETE][18] ([i915#2635])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@i915_suspend@sysfs-reader.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@i915_suspend@sysfs-reader.html
    - shard-hsw:          [PASS][19] -> [INCOMPLETE][20] ([i915#2055] / [i915#2637])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@i915_suspend@sysfs-reader.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw7/igt@i915_suspend@sysfs-reader.html
    - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#155]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl1/igt@i915_suspend@sysfs-reader.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl3/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-hsw:          [PASS][23] -> [FAIL][24] ([i915#96])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-hsw:          [PASS][25] -> [FAIL][26] ([i915#2370]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_draw_crc@draw-method-rgb565-render-xtiled:
    - shard-snb:          [PASS][27] -> [FAIL][28] ([i915#54])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb6/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html

  * igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
    - shard-hsw:          [PASS][29] -> [DMESG-WARN][30] ([i915#1982])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw8/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#1635] / [i915#1982]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-glk:          [PASS][33] -> [DMESG-WARN][34] ([i915#1982]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-tglb:         [PASS][35] -> [DMESG-WARN][36] ([i915#1982]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html
    - shard-iclb:         [PASS][37] -> [DMESG-WARN][38] ([i915#1982])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb4/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:
    - shard-kbl:          [PASS][41] -> [DMESG-WARN][42] ([i915#1982]) +4 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html

  * igt@perf@create-destroy-userspace-config:
    - shard-glk:          [PASS][43] -> [SKIP][44] ([fdo#109271] / [i915#1354])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk9/igt@perf@create-destroy-userspace-config.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@perf@create-destroy-userspace-config.html
    - shard-apl:          [PASS][45] -> [SKIP][46] ([fdo#109271] / [i915#1354] / [i915#1635])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl8/igt@perf@create-destroy-userspace-config.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl6/igt@perf@create-destroy-userspace-config.html
    - shard-kbl:          [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl1/igt@perf@create-destroy-userspace-config.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl6/igt@perf@create-destroy-userspace-config.html
    - shard-hsw:          [PASS][49] -> [SKIP][50] ([fdo#109271])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@perf@create-destroy-userspace-config.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw8/igt@perf@create-destroy-userspace-config.html
    - shard-iclb:         [PASS][51] -> [SKIP][52] ([i915#1354])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb5/igt@perf@create-destroy-userspace-config.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb3/igt@perf@create-destroy-userspace-config.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [PASS][53] -> [SKIP][54] ([i915#1354]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb3/igt@perf@gen12-mi-rpc.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb1/igt@perf@gen12-mi-rpc.html

  
#### Possible fixes ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-kbl:          [INCOMPLETE][55] -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@drm_read@short-buffer-wakeup.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl7/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_caching@writes:
    - shard-snb:          [INCOMPLETE][57] ([i915#82]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@gem_caching@writes.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb6/igt@gem_caching@writes.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][59] ([i915#454]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb3/igt@i915_pm_dc@dc6-psr.html

  * {igt@kms_async_flips@alternate-sync-async-flip}:
    - shard-tglb:         [FAIL][61] ([i915#2521]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_async_flips@alternate-sync-async-flip.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb7/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-hsw:          [DMESG-WARN][63] ([i915#1982]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1:
    - shard-kbl:          [DMESG-WARN][65] ([i915#1982]) -> [PASS][66] +3 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@b-vga1:
    - shard-snb:          [DMESG-WARN][67] ([i915#42]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb2/igt@kms_flip@flip-vs-suspend@b-vga1.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-tglb:         [DMESG-WARN][69] ([i915#1982]) -> [PASS][70] +2 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-snb:          [FAIL][71] ([i915#2546]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [SKIP][73] ([i915#433]) -> [PASS][74]
   [73]: https://i

== Logs ==

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

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

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
                   ` (2 preceding siblings ...)
  2020-11-05 10:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-11-05 17:41 ` Patchwork
  2020-11-09 17:37 ` [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting Zbigniew Kempczyński
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2020-11-05 17:41 UTC (permalink / raw)
  To: nidhi1.gupta; +Cc: igt-dev


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

== Series Details ==

Series: Added dynamic subtests for accurate reporting (rev3)
URL   : https://patchwork.freedesktop.org/series/82743/
State : success

== Summary ==

CI Bug Log - changes from IGT_5833_full -> IGTPW_5134_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-glk:          [PASS][1] -> [FAIL][2] ([i915#2389])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk7/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-forked:
    - shard-snb:          [PASS][3] -> [INCOMPLETE][4] ([i915#2502] / [i915#82])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@gem_exec_whisper@basic-contexts-forked.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@gem_exec_whisper@basic-contexts-forked.html

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - shard-iclb:         [PASS][5] -> [INCOMPLETE][6] ([i915#1895])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb3/igt@gem_exec_whisper@basic-contexts-priority-all.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_tiled_fence_blits@basic:
    - shard-snb:          [PASS][7] -> [FAIL][8] ([i915#1867])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb6/igt@gem_tiled_fence_blits@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [PASS][9] -> [DMESG-WARN][10] ([i915#2635])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@gem_workarounds@suspend-resume.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@gem_workarounds@suspend-resume.html
    - shard-iclb:         [PASS][11] -> [INCOMPLETE][12] ([i915#1185]) +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@gem_workarounds@suspend-resume.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb5/igt@gem_workarounds@suspend-resume.html
    - shard-hsw:          [PASS][13] -> [DMESG-WARN][14] ([i915#2637])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@gem_workarounds@suspend-resume.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw2/igt@gem_workarounds@suspend-resume.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [PASS][15] -> [INCOMPLETE][16] ([i915#1635] / [i915#2635]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl1/igt@i915_suspend@sysfs-reader.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl3/igt@i915_suspend@sysfs-reader.html
    - shard-glk:          [PASS][17] -> [INCOMPLETE][18] ([i915#2635])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@i915_suspend@sysfs-reader.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@i915_suspend@sysfs-reader.html
    - shard-hsw:          [PASS][19] -> [INCOMPLETE][20] ([i915#2055] / [i915#2637])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@i915_suspend@sysfs-reader.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw7/igt@i915_suspend@sysfs-reader.html
    - shard-kbl:          [PASS][21] -> [INCOMPLETE][22] ([i915#155]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl1/igt@i915_suspend@sysfs-reader.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl3/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-hsw:          [PASS][23] -> [FAIL][24] ([i915#96])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-hsw:          [PASS][25] -> [FAIL][26] ([i915#2370]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_draw_crc@draw-method-rgb565-render-xtiled:
    - shard-snb:          [PASS][27] -> [FAIL][28] ([i915#54])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb6/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb5/igt@kms_draw_crc@draw-method-rgb565-render-xtiled.html

  * igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
    - shard-hsw:          [PASS][29] -> [DMESG-WARN][30] ([i915#1982])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw8/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-apl:          [PASS][31] -> [DMESG-WARN][32] ([i915#1635] / [i915#1982]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-glk:          [PASS][33] -> [DMESG-WARN][34] ([i915#1982]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-tglb:         [PASS][35] -> [DMESG-WARN][36] ([i915#1982]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html
    - shard-iclb:         [PASS][37] -> [DMESG-WARN][38] ([i915#1982])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#109441]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb4/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:
    - shard-kbl:          [PASS][41] -> [DMESG-WARN][42] ([i915#1982]) +4 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl2/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html

  * igt@perf@create-destroy-userspace-config:
    - shard-glk:          [PASS][43] -> [SKIP][44] ([fdo#109271] / [i915#1354])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk9/igt@perf@create-destroy-userspace-config.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@perf@create-destroy-userspace-config.html
    - shard-apl:          [PASS][45] -> [SKIP][46] ([fdo#109271] / [i915#1354] / [i915#1635])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl8/igt@perf@create-destroy-userspace-config.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl6/igt@perf@create-destroy-userspace-config.html
    - shard-kbl:          [PASS][47] -> [SKIP][48] ([fdo#109271] / [i915#1354])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl1/igt@perf@create-destroy-userspace-config.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl6/igt@perf@create-destroy-userspace-config.html
    - shard-hsw:          [PASS][49] -> [SKIP][50] ([fdo#109271])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@perf@create-destroy-userspace-config.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw8/igt@perf@create-destroy-userspace-config.html
    - shard-iclb:         [PASS][51] -> [SKIP][52] ([i915#1354])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb5/igt@perf@create-destroy-userspace-config.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb3/igt@perf@create-destroy-userspace-config.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [PASS][53] -> [SKIP][54] ([i915#1354]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb3/igt@perf@gen12-mi-rpc.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb1/igt@perf@gen12-mi-rpc.html

  
#### Possible fixes ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-kbl:          [INCOMPLETE][55] -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@drm_read@short-buffer-wakeup.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl7/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_caching@writes:
    - shard-snb:          [INCOMPLETE][57] ([i915#82]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@gem_caching@writes.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb6/igt@gem_caching@writes.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][59] ([i915#454]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb3/igt@i915_pm_dc@dc6-psr.html

  * {igt@kms_async_flips@alternate-sync-async-flip}:
    - shard-tglb:         [FAIL][61] ([i915#2521]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_async_flips@alternate-sync-async-flip.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb7/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-hsw:          [DMESG-WARN][63] ([i915#1982]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1:
    - shard-kbl:          [DMESG-WARN][65] ([i915#1982]) -> [PASS][66] +3 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@b-vga1:
    - shard-snb:          [DMESG-WARN][67] ([i915#42]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb2/igt@kms_flip@flip-vs-suspend@b-vga1.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-tglb:         [DMESG-WARN][69] ([i915#1982]) -> [PASS][70] +2 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-snb:          [FAIL][71] ([i915#2546]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-snb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [SKIP][73] ([i915#433]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_cursor@pipe-b-overlay-size-256:
    - shard-apl:          [DMESG-WARN][75] ([i915#1635] / [i915#1982]) -> [PASS][76] +6 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl2/igt@kms_plane_cursor@pipe-b-overlay-size-256.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl2/igt@kms_plane_cursor@pipe-b-overlay-size-256.html

  * igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping:
    - shard-glk:          [DMESG-WARN][77] ([i915#1982]) -> [PASS][78] +4 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk4/igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk7/igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][79] ([fdo#109441]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@perf@polling-parameterized:
    - shard-glk:          [SKIP][81] ([fdo#109271] / [i915#1354]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk6/igt@perf@polling-parameterized.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@perf@polling-parameterized.html
    - shard-iclb:         [SKIP][83] ([i915#1354]) -> [PASS][84] +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb6/igt@perf@polling-parameterized.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb6/igt@perf@polling-parameterized.html

  * igt@perf@polling-small-buf:
    - shard-tglb:         [SKIP][85] ([i915#1354]) -> [PASS][86] +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb5/igt@perf@polling-small-buf.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb6/igt@perf@polling-small-buf.html
    - shard-apl:          [SKIP][87] ([fdo#109271] / [i915#1354] / [i915#1635]) -> [PASS][88] +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl2/igt@perf@polling-small-buf.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl4/igt@perf@polling-small-buf.html
    - shard-kbl:          [SKIP][89] ([fdo#109271] / [i915#1354]) -> [PASS][90] +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl2/igt@perf@polling-small-buf.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl4/igt@perf@polling-small-buf.html
    - shard-hsw:          [SKIP][91] ([fdo#109271]) -> [PASS][92] +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-hsw1/igt@perf@polling-small-buf.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-hsw8/igt@perf@polling-small-buf.html

  
#### Warnings ####

  * igt@i915_suspend@sysfs-reader:
    - shard-tglb:         [DMESG-WARN][93] ([i915#2411]) -> [DMESG-WARN][94] ([i915#1436])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb2/igt@i915_suspend@sysfs-reader.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb6/igt@i915_suspend@sysfs-reader.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [DMESG-WARN][95] ([i915#1226]) -> [SKIP][96] ([fdo#109349])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-tglb:         [DMESG-WARN][97] ([i915#2411]) -> [DMESG-WARN][98] ([i915#1982] / [i915#2411])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@perf@gen12-mi-rpc:
    - shard-kbl:          [SKIP][99] ([fdo#109271]) -> [SKIP][100] ([fdo#109271] / [i915#1354])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-kbl7/igt@perf@gen12-mi-rpc.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-kbl6/igt@perf@gen12-mi-rpc.html
    - shard-iclb:         [SKIP][101] ([fdo#109289]) -> [SKIP][102] ([i915#1354])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-iclb4/igt@perf@gen12-mi-rpc.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-iclb2/igt@perf@gen12-mi-rpc.html
    - shard-glk:          [SKIP][103] ([fdo#109271]) -> [SKIP][104] ([fdo#109271] / [i915#1354])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk3/igt@perf@gen12-mi-rpc.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk8/igt@perf@gen12-mi-rpc.html
    - shard-apl:          [SKIP][105] ([fdo#109271] / [i915#1635]) -> [SKIP][106] ([fdo#109271] / [i915#1354] / [i915#1635])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-apl2/igt@perf@gen12-mi-rpc.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-apl8/igt@perf@gen12-mi-rpc.html

  * igt@runner@aborted:
    - shard-glk:          [FAIL][107] ([i915#1611] / [i915#1814] / [k.org#202321]) -> ([FAIL][108], [FAIL][109]) ([i915#2439] / [i915#483] / [k.org#202321])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/shard-glk8/igt@runner@aborted.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@runner@aborted.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/shard-glk3/igt@runner@aborted.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
  [i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611
  [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1867]: https://gitlab.freedesktop.org/drm/intel/issues/1867
  [i915#1895]: https://gitlab.freedesktop.org/drm/intel/issues/1895
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055
  [i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439
  [i915#2502]: https://gitlab.freedesktop.org/drm/intel/issues/2502
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
  [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635
  [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637
  [i915#2641]: https://gitlab.freedesktop.org/drm/intel/issues/2641
  [i915#2642]: https://gitlab.freedesktop.org/drm/intel/issues/2642
  [i915#42]: https://gitlab.freedesktop.org/drm/intel/issues/42
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
  [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96
  [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321


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

  No changes in participating hosts


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5833 -> IGTPW_5134

  CI-20190529: 20190529
  CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5134: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html
  IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3)
  2020-11-05  8:00   ` Petri Latvala
@ 2020-11-05 17:51     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 8+ messages in thread
From: Vudum, Lakshminarayana @ 2020-11-05 17:51 UTC (permalink / raw)
  To: Latvala, Petri, igt-dev@lists.freedesktop.org; +Cc: Gupta, Nidhi1

I had to re-report twice. But everything looks OK.

Lakshmi.
-----Original Message-----
From: Petri Latvala <petri.latvala@intel.com> 
Sent: Thursday, November 5, 2020 12:00 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3)

On Thu, Nov 05, 2020 at 07:29:50AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Added dynamic subtests for accurate reporting (rev3)
> URL   : https://patchwork.freedesktop.org/series/82743/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5833 -> IGTPW_5134 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5134 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5134, 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_5134/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_5134:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-bsw-n3050:       [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-n3050/igt@i915_selftest@live@hangcheck.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-n3050/igt@i
> 915_selftest@live@hangcheck.html


Lakshmi, false positive here.


--
Petri Latvala


> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5134 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@i915_module_load@reload:
>     - fi-tgl-u2:          [PASS][3] -> [DMESG-WARN][4] ([i915#1982] / [k.org#205379])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@i915_module_load@reload.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@i915_module_load@reload.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - fi-bsw-kefka:       [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>     - fi-byt-j1900:       [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
> 
>   * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>     - fi-icl-u2:          [PASS][9] -> [DMESG-WARN][10] ([i915#1982])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_hotunplug@unbind-rebind:
>     - fi-tgl-u2:          [DMESG-WARN][11] ([i915#1982]) -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
> 
>   * igt@debugfs_test@read_all_entries:
>     - fi-bsw-nick:        [INCOMPLETE][13] ([i915#1250] / [i915#1436]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-bsw-nick/igt@debugfs_test@read_all_entries.html
> 
>   * igt@i915_module_load@reload:
>     - fi-icl-u2:          [DMESG-WARN][15] ([i915#1982]) -> [PASS][16] +2 similar issues
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-icl-u2/igt@i915_module_load@reload.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-icl-u2/igt@i915_module_load@reload.html
>     - fi-byt-j1900:       [DMESG-WARN][17] ([i915#1982]) -> [PASS][18]
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-byt-j1900/igt@i915_module_load@reload.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-byt-j1900/igt@i915_module_load@reload.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - {fi-ehl-1}:         [DMESG-WARN][19] ([i915#1982]) -> [PASS][20] +1 similar issue
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-ehl-1/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_selftest@live@execlists:
>     - {fi-kbl-7560u}:     [INCOMPLETE][21] ([i915#794]) -> [PASS][22]
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7560u/igt@i915_selftest@live@execlists.html
> 
>   * igt@kms_chamelium@dp-crc-fast:
>     - fi-kbl-7500u:       [FAIL][23] ([i915#1161] / [i915#262]) -> [PASS][24]
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5833/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
>   [i915#1250]: https://gitlab.freedesktop.org/drm/intel/issues/1250
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
>   [i915#2601]: https://gitlab.freedesktop.org/drm/intel/issues/2601
>   [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
>   [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794
>   [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
> 
> 
> Participating hosts (44 -> 40)
> ------------------------------
> 
>   Missing    (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5833 -> IGTPW_5134
> 
>   CI-20190529: 20190529
>   CI_DRM_9265: 4152d4ab08d937cfb9254d0e880f1daea64db549 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_5134: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html
>   IGT_5833: 212e55b9aa9e98a3ef63f37a50fd5b69761fbecd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5134/index.html

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

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

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

* Re: [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting
  2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
                   ` (3 preceding siblings ...)
  2020-11-05 17:41 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2020-11-09 17:37 ` Zbigniew Kempczyński
  4 siblings, 0 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2020-11-09 17:37 UTC (permalink / raw)
  To: nidhi1.gupta; +Cc: igt-dev, Petri Latvala

On Thu, Nov 05, 2020 at 11:38:20AM +0530, nidhi1.gupta@intel.com wrote:
> From: Nidhi Gupta <nidhi1.gupta@intel.com>
> 
> For Multipipe scenario added dynamic subtests
> for accurate reporting of the results.
> 
> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> ---
>  tests/kms_atomic_interruptible.c | 56 +++++++++++++++---------
>  tests/kms_flip_tiling.c          | 73 ++++++++++++++++++++------------
>  2 files changed, 81 insertions(+), 48 deletions(-)
> 
> diff --git a/tests/kms_atomic_interruptible.c b/tests/kms_atomic_interruptible.c
> index e5ccdf5b..27bb6a2b 100644
> --- a/tests/kms_atomic_interruptible.c
> +++ b/tests/kms_atomic_interruptible.c
> @@ -284,47 +284,61 @@ igt_main
>  		igt_require_sw_sync();
>  	}
>  
> -	igt_subtest("legacy-setmode")
> +	igt_subtest_with_dynamic("legacy-setmode") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_legacy_modeset, DRM_PLANE_TYPE_PRIMARY);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_legacy_modeset, DRM_PLANE_TYPE_PRIMARY);
> +				break;

Please fix this patch because breaks are not covered by curly braces and we got compiler warnings.

--
Zbigniew

>  		}
> +	}
>  
> -	igt_subtest("atomic-setmode")
> +	igt_subtest_with_dynamic("atomic-setmode") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_atomic_modeset, DRM_PLANE_TYPE_PRIMARY);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_atomic_modeset, DRM_PLANE_TYPE_PRIMARY);
> +				break;
>  		}
> +	}
>  
> -	igt_subtest("legacy-dpms")
> +	igt_subtest_with_dynamic("legacy-dpms") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_legacy_dpms, DRM_PLANE_TYPE_PRIMARY);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_legacy_dpms, DRM_PLANE_TYPE_PRIMARY);
> +				break;
>  		}
> +	}
>  
> -	igt_subtest("legacy-pageflip")
> +	igt_subtest_with_dynamic("legacy-pageflip") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_pageflip, DRM_PLANE_TYPE_PRIMARY);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_pageflip, DRM_PLANE_TYPE_PRIMARY);
> +				break;
>  		}
> +	}
>  
> -	igt_subtest("legacy-cursor")
> +	igt_subtest_with_dynamic("legacy-cursor") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_setcursor, DRM_PLANE_TYPE_CURSOR);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_setcursor, DRM_PLANE_TYPE_CURSOR);
> +				break;
>  		}
> +	}
>  
> -	igt_subtest("universal-setplane-primary")
> +	igt_subtest_with_dynamic("universal-setplane-primary") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_PRIMARY);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_PRIMARY);
> +				break;
>  		}
> +	}
>  
> -	igt_subtest("universal-setplane-cursor")
> +	igt_subtest_with_dynamic("universal-setplane-cursor") {
>  		for_each_pipe_with_valid_output(&display, pipe, output) {
> -			run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_CURSOR);
> -			break;
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				run_plane_test(&display, pipe, output, test_setplane, DRM_PLANE_TYPE_CURSOR);
> +				break;
>  		}
> +	}
>  
>  	/* TODO: legacy gamma_set/get, object set/getprop, getcrtc, getconnector */
>  	igt_fixture {
> diff --git a/tests/kms_flip_tiling.c b/tests/kms_flip_tiling.c
> index fb79de15..7a736fba 100644
> --- a/tests/kms_flip_tiling.c
> +++ b/tests/kms_flip_tiling.c
> @@ -173,7 +173,7 @@ igt_main
>  	 * generated and compared to the reference one.
>  	 */
>  
> -	igt_subtest_f("flip-changes-tiling") {
> +	igt_subtest_with_dynamic("flip-changes-tiling") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
>  				       LOCAL_DRM_FORMAT_MOD_NONE };
>  		enum pipe pipe;
> @@ -181,11 +181,13 @@ igt_main
>  		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
>  			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-changes-tiling-Y") {
> +	igt_subtest_with_dynamic("flip-changes-tiling-Y") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
>  				       LOCAL_DRM_FORMAT_MOD_NONE };
>  		enum pipe pipe;
> @@ -197,11 +199,14 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-changes-tiling-Yf") {
> +
> +	igt_subtest_with_dynamic("flip-changes-tiling-Yf") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
>  				       LOCAL_DRM_FORMAT_MOD_NONE };
>  		enum pipe pipe;
> @@ -213,8 +218,10 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
>  	/*
> @@ -225,7 +232,7 @@ igt_main
>  	 * reference one.
>  	 */
>  
> -	igt_subtest_f("flip-X-tiled") {
> +	igt_subtest_with_dynamic("flip-X-tiled") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_X_TILED,
>  				       LOCAL_I915_FORMAT_MOD_X_TILED };
>  		enum pipe pipe;
> @@ -233,11 +240,13 @@ igt_main
>  		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
>  			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-Y-tiled") {
> +	igt_subtest_with_dynamic("flip-Y-tiled") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Y_TILED,
>  				       LOCAL_I915_FORMAT_MOD_Y_TILED };
>  		enum pipe pipe;
> @@ -249,11 +258,13 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-Yf-tiled") {
> +	igt_subtest_with_dynamic("flip-Yf-tiled") {
>  		uint64_t tiling[2] = { LOCAL_I915_FORMAT_MOD_Yf_TILED,
>  				       LOCAL_I915_FORMAT_MOD_Yf_TILED };
>  		enum pipe pipe;
> @@ -265,8 +276,10 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
>  	/*
> @@ -277,7 +290,7 @@ igt_main
>  	 * reference one.
>  	 */
>  
> -	igt_subtest_f("flip-to-X-tiled") {
> +	igt_subtest_with_dynamic("flip-to-X-tiled") {
>  		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
>  				       LOCAL_I915_FORMAT_MOD_X_TILED };
>  		enum pipe pipe;
> @@ -285,11 +298,13 @@ igt_main
>  		for (int i = 0; i < ARRAY_SIZE(tiling); i++)
>  			igt_require(igt_display_has_format_mod(&data.display, data.testformat, tiling[i]));
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-to-Y-tiled") {
> +	igt_subtest_with_dynamic("flip-to-Y-tiled") {
>  		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
>  				       LOCAL_I915_FORMAT_MOD_Y_TILED };
>  		enum pipe pipe;
> @@ -301,11 +316,13 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
> -	igt_subtest_f("flip-to-Yf-tiled") {
> +	igt_subtest_with_dynamic("flip-to-Yf-tiled") {
>  		uint64_t tiling[2] = { LOCAL_DRM_FORMAT_MOD_NONE,
>  				       LOCAL_I915_FORMAT_MOD_Yf_TILED };
>  		enum pipe pipe;
> @@ -317,8 +334,10 @@ igt_main
>  
>  		igt_require(data.gen >= 9);
>  
> -		for_each_pipe_with_valid_output(&data.display, pipe, output)
> -			test_flip_tiling(&data, pipe, output, tiling);
> +		for_each_pipe_with_valid_output(&data.display, pipe, output) {
> +			igt_dynamic_f("%s-pipe-%s", igt_output_name(output), kmstest_pipe_name(pipe))
> +				test_flip_tiling(&data, pipe, output, tiling);
> +		}
>  	}
>  
>  	igt_fixture {
> -- 
> 2.26.2
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-11-09 17:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-05  6:08 [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting nidhi1.gupta
2020-11-05  7:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for Added dynamic subtests for accurate reporting (rev3) Patchwork
2020-11-05  8:00   ` Petri Latvala
2020-11-05 17:51     ` Vudum, Lakshminarayana
2020-11-05  9:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2020-11-05 10:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-11-05 17:41 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2020-11-09 17:37 ` [igt-dev] [PATCH i-g-t v3] Added dynamic subtests for accurate reporting Zbigniew Kempczyński

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