All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
@ 2020-03-13 15:29 Arkadiusz Hiler
  2020-03-13 15:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest Arkadiusz Hiler
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Arkadiusz Hiler @ 2020-03-13 15:29 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Martin Peres

Tends to generate invalid configurations using CCS planes or
configurations that exceed HW capabilities resulting in sporadic failure
with -EINVAL.

Maintaining extra constraints for Intel's HW is too costly in comparison
to the value provided.

Seems like the test is used by other vendors, so unless they are fine
with removal we'll keep it. In the meantime let's blacklist it for our
CI.

Fixes: https://gitlab.freedesktop.org/drm/intel/issues/1404
Fixes: https://gitlab.freedesktop.org/drm/intel/issues/239
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Martin Peres <martin.peres@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 tests/intel-ci/blacklist.txt | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
index 8085719f..a7bd1e68 100644
--- a/tests/intel-ci/blacklist.txt
+++ b/tests/intel-ci/blacklist.txt
@@ -69,6 +69,17 @@ igt@gen7_exec_parse@.*lri.*
 ###############################################
 igt@kms_frontbuffer_tracking@.*drrs.*
 ###############################################
+# Tends to generate invalid configurations
+# using CCS planes or configurations that
+# exceed HW capabilities resulting in sporadic
+# failure with -EINVAL.
+#
+# Maintaining extra constraints for Intel's HW
+# is too costly in comparison to the value
+# provided.
+###############################################
+igt@kms_chamelium@hdmi-.*-planes-random
+###############################################
 # Broadcom
 ###############################################
 igt@vc4_.*
-- 
2.24.1

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

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

* [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest
  2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
@ 2020-03-13 15:29 ` Arkadiusz Hiler
  2020-03-16  9:07   ` Petri Latvala
  2020-03-13 16:16 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Arkadiusz Hiler @ 2020-03-13 15:29 UTC (permalink / raw)
  To: igt-dev; +Cc: Martin Peres, Petri Latvala

The test is making Chamelium's receiver signal a need for retraining to
the upstream, which i915 handles correctly. Then it asserts a number of
conditions that are neither a part of the DisplayPort spec, conformance
test suite or the current driver's behavior.

The test needs a complete rethinking. Let's remove it instead of letting
it bitrot further.

Fixes: https://gitlab.freedesktop.org/drm/intel/issues/1059
Cc: Martin Peres <martin.peres@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 lib/igt_chamelium.c   |  15 -----
 lib/igt_chamelium.h   |   3 -
 tests/kms_chamelium.c | 147 ------------------------------------------
 3 files changed, 165 deletions(-)

diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index aaf17d51..2a4930ec 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -1206,21 +1206,6 @@ void chamelium_infoframe_destroy(struct chamelium_infoframe *infoframe)
 	free(infoframe);
 }
 
-bool chamelium_supports_trigger_link_failure(struct chamelium *chamelium)
-{
-	return chamelium_supports_method(chamelium, "TriggerLinkFailure");
-}
-
-/**
- * chamelium_trigger_link_failure: trigger a link failure on the provided port.
- */
-void chamelium_trigger_link_failure(struct chamelium *chamelium,
-				    struct chamelium_port *port)
-{
-	xmlrpc_DECREF(chamelium_rpc(chamelium, port, "TriggerLinkFailure",
-				    "(i)", port->id));
-}
-
 bool chamelium_has_audio_support(struct chamelium *chamelium,
 				 struct chamelium_port *port)
 {
diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h
index d03c924a..bdfdd546 100644
--- a/lib/igt_chamelium.h
+++ b/lib/igt_chamelium.h
@@ -161,9 +161,6 @@ struct chamelium_infoframe *
 chamelium_get_last_infoframe(struct chamelium *chamelium,
 			     struct chamelium_port *port,
 			     enum chamelium_infoframe_type type);
-bool chamelium_supports_trigger_link_failure(struct chamelium *chamelium);
-void chamelium_trigger_link_failure(struct chamelium *chamelium,
-				    struct chamelium_port *port);
 bool chamelium_has_audio_support(struct chamelium *chamelium,
 				 struct chamelium_port *port);
 void chamelium_get_audio_channel_mapping(struct chamelium *chamelium,
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 2acac1e4..3d0b429a 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -578,149 +578,6 @@ enable_output(data_t *data,
 	drmModeFreeConnector(connector);
 }
 
-static bool find_mode(const drmModeModeInfo *list, size_t list_len,
-		      const drmModeModeInfo *mode)
-{
-	size_t i;
-
-	for (i = 0; i < list_len; i++) {
-		if (memcmp(&list[i], mode, sizeof(*mode)) == 0) {
-			return true;
-		}
-	}
-
-	return false;
-}
-
-static void check_modes_subset(const drmModeModeInfo *prev, size_t prev_len,
-			       const drmModeModeInfo *cur, size_t cur_len)
-{
-	size_t i;
-
-	for (i = 0; i < cur_len; i++) {
-		igt_assert_f(find_mode(prev, prev_len, &cur[i]),
-			     "Got new mode %s after link status failure\n",
-			     cur[i].name);
-	}
-
-	igt_assert(cur_len <= prev_len); /* safety net */
-	igt_debug("New mode list contains %zu less modes\n",
-		  prev_len - cur_len);
-}
-
-static bool are_fallback_modes(const drmModeModeInfo *modes, size_t modes_len)
-{
-	igt_assert(modes_len > 0);
-
-	return modes[0].hdisplay <= 1024 && modes[0].vdisplay <= 768;
-}
-
-static const char test_link_status_desc[] =
-	"Simulate a series of link failures, check we get a uevent each time "
-	"with the link-status property set to BAD and the list of modes "
-	"shrinks (or stays the same), until we reach fallback modes";
-static void
-test_link_status(data_t *data, struct chamelium_port *port)
-{
-	drmModeConnector *connector;
-	igt_output_t *output;
-	igt_plane_t *primary;
-	drmModeModeInfo *prev_modes;
-	size_t prev_modes_len;
-	drmModeModeInfo mode = {0};
-	uint32_t link_status_id;
-	uint64_t link_status;
-	bool has_prop;
-	unsigned int fb_id = 0;
-	struct igt_fb fb;
-	struct udev_monitor *mon;
-
-	igt_require(chamelium_supports_trigger_link_failure(data->chamelium));
-
-	reset_state(data, port);
-
-	output = prepare_output(data, port, TEST_EDID_BASE);
-	connector = chamelium_port_get_connector(data->chamelium, port, false);
-	primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
-	igt_assert(primary);
-
-	has_prop = kmstest_get_property(data->drm_fd, connector->connector_id,
-					DRM_MODE_OBJECT_CONNECTOR,
-					"link-status", &link_status_id,
-					&link_status, NULL);
-	igt_require(has_prop);
-	igt_assert_f(link_status == DRM_MODE_LINK_STATUS_GOOD,
-		     "Expected link status to be %d initially, got %"PRIu64"\n",
-		     DRM_MODE_LINK_STATUS_GOOD, link_status);
-
-	igt_debug("Connector has %d modes\n", connector->count_modes);
-	prev_modes_len = connector->count_modes;
-	prev_modes = malloc(prev_modes_len * sizeof(drmModeModeInfo));
-	memcpy(prev_modes, connector->modes,
-	       prev_modes_len * sizeof(drmModeModeInfo));
-
-	mon = igt_watch_hotplug();
-
-	while (1) {
-		if (link_status == DRM_MODE_LINK_STATUS_BAD) {
-			igt_output_set_prop_value(output,
-						  IGT_CONNECTOR_LINK_STATUS,
-						  DRM_MODE_LINK_STATUS_GOOD);
-		}
-
-		if (memcmp(&connector->modes[0], &mode, sizeof(mode)) != 0) {
-			igt_assert(connector->count_modes > 0);
-			mode = connector->modes[0];
-			igt_debug("Modesetting with %s\n", mode.name);
-			if (fb_id > 0)
-				igt_remove_fb(data->drm_fd, &fb);
-			fb_id = igt_create_color_pattern_fb(data->drm_fd,
-							    mode.hdisplay,
-							    mode.vdisplay,
-							    DRM_FORMAT_XRGB8888,
-							    LOCAL_DRM_FORMAT_MOD_NONE,
-							    0, 0, 0, &fb);
-			igt_assert(fb_id > 0);
-			enable_output(data, port, output, &mode, &fb);
-		} else {
-			igt_display_commit2(&data->display, COMMIT_ATOMIC);
-		}
-
-		igt_debug("Triggering link failure\n");
-		chamelium_trigger_link_failure(data->chamelium, port);
-
-		igt_assert(igt_hotplug_detected(mon, HOTPLUG_TIMEOUT));
-		igt_assert_eq(reprobe_connector(data, port),
-			      DRM_MODE_CONNECTED);
-
-		igt_flush_hotplugs(mon);
-
-		drmModeFreeConnector(connector);
-		connector = chamelium_port_get_connector(data->chamelium, port,
-							 false);
-		link_status = igt_output_get_prop(output, IGT_CONNECTOR_LINK_STATUS);
-		igt_assert_f(link_status == DRM_MODE_LINK_STATUS_BAD,
-			     "Expected link status to be %d after link failure, "
-			     "got %"PRIu64"\n",
-			     DRM_MODE_LINK_STATUS_BAD, link_status);
-		check_modes_subset(prev_modes, prev_modes_len,
-				   connector->modes, connector->count_modes);
-		prev_modes_len = connector->count_modes;
-		memcpy(prev_modes, connector->modes,
-		       connector->count_modes * sizeof(drmModeModeInfo));
-
-		if (are_fallback_modes(connector->modes, connector->count_modes)) {
-			igt_debug("Reached fallback modes\n");
-			break;
-		}
-	}
-
-	igt_cleanup_hotplug(mon);
-	igt_remove_fb(data->drm_fd, &fb);
-	free(prev_modes);
-	drmModeFreeConnector(connector);
-}
-
 static void chamelium_paint_xr24_pattern(uint32_t *data,
 					 size_t width, size_t height,
 					 size_t stride, size_t block_size)
@@ -2693,10 +2550,6 @@ igt_main
 			test_hpd_storm_disable(&data, port,
 					       HPD_STORM_PULSE_INTERVAL_DP);
 
-		igt_describe(test_link_status_desc);
-		connector_subtest("dp-link-status", DisplayPort)
-			test_link_status(&data, port);
-
 		igt_describe(test_suspend_resume_edid_change_desc);
 		connector_subtest("dp-edid-change-during-suspend", DisplayPort)
 			test_suspend_resume_edid_change(&data, port,
-- 
2.24.1

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
  2020-03-13 15:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest Arkadiusz Hiler
@ 2020-03-13 16:16 ` Patchwork
  2020-03-16 10:10   ` Arkadiusz Hiler
  2020-03-16  9:05 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2020-03-13 16:16 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
URL   : https://patchwork.freedesktop.org/series/74684/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8134 -> IGTPW_4302
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@ring_submission:
    - fi-bwr-2160:        NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bwr-2160/igt@i915_selftest@live@ring_submission.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@execlists:
    - fi-icl-y:           [PASS][2] -> [DMESG-FAIL][3] ([fdo#108569])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-icl-y/igt@i915_selftest@live@execlists.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-icl-y/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-7500u:       [PASS][4] -> [FAIL][5] ([i915#217])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@active:
    - fi-icl-y:           [DMESG-FAIL][6] ([i915#765]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-icl-y/igt@i915_selftest@live@active.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-icl-y/igt@i915_selftest@live@active.html

  * igt@i915_selftest@live@execlists:
    - fi-bxt-dsi:         [INCOMPLETE][8] ([fdo#103927] / [i915#656]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-bxt-dsi/igt@i915_selftest@live@execlists.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bxt-dsi/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@requests:
    - fi-bwr-2160:        [INCOMPLETE][10] -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-bwr-2160/igt@i915_selftest@live@requests.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bwr-2160/igt@i915_selftest@live@requests.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-tgl-y:           [INCOMPLETE][12] ([CI#94] / [i915#460]) -> [FAIL][13] ([CI#94])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][14] ([fdo#111407]) -> [FAIL][15] ([i915#323])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
  [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217
  [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
  [i915#460]: https://gitlab.freedesktop.org/drm/intel/issues/460
  [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656
  [i915#765]: https://gitlab.freedesktop.org/drm/intel/issues/765


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

  Additional (8): fi-kbl-soraka fi-bdw-5557u fi-bsw-n3050 fi-hsw-peppy fi-skl-lmem fi-bsw-nick fi-skl-6600u fi-snb-2600 
  Missing    (8): fi-ilk-m540 fi-ehl-1 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5508 -> IGTPW_4302

  CI-20190529: 20190529
  CI_DRM_8134: 548cc21e9ca596cc12dfdb36575b0fedf28a3eb4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4302: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/index.html
  IGT_5508: 89d644600a1a9f08794cc7106b63758df40ce1d8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

-igt@kms_chamelium@dp-link-status

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
  2020-03-13 15:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest Arkadiusz Hiler
  2020-03-13 16:16 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Patchwork
@ 2020-03-16  9:05 ` Petri Latvala
  2020-03-16 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
  2020-03-16 13:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Petri Latvala @ 2020-03-16  9:05 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev, Martin Peres

On Fri, Mar 13, 2020 at 05:29:10PM +0200, Arkadiusz Hiler wrote:
> Tends to generate invalid configurations using CCS planes or
> configurations that exceed HW capabilities resulting in sporadic failure
> with -EINVAL.
> 
> Maintaining extra constraints for Intel's HW is too costly in comparison
> to the value provided.
> 
> Seems like the test is used by other vendors, so unless they are fine
> with removal we'll keep it. In the meantime let's blacklist it for our
> CI.
> 
> Fixes: https://gitlab.freedesktop.org/drm/intel/issues/1404
> Fixes: https://gitlab.freedesktop.org/drm/intel/issues/239
> Cc: Petri Latvala <petri.latvala@intel.com>
> Cc: Martin Peres <martin.peres@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

Acked-by: Petri Latvala <petri.latvala@intel.com>


> ---
>  tests/intel-ci/blacklist.txt | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
> index 8085719f..a7bd1e68 100644
> --- a/tests/intel-ci/blacklist.txt
> +++ b/tests/intel-ci/blacklist.txt
> @@ -69,6 +69,17 @@ igt@gen7_exec_parse@.*lri.*
>  ###############################################
>  igt@kms_frontbuffer_tracking@.*drrs.*
>  ###############################################
> +# Tends to generate invalid configurations
> +# using CCS planes or configurations that
> +# exceed HW capabilities resulting in sporadic
> +# failure with -EINVAL.
> +#
> +# Maintaining extra constraints for Intel's HW
> +# is too costly in comparison to the value
> +# provided.
> +###############################################
> +igt@kms_chamelium@hdmi-.*-planes-random
> +###############################################
>  # Broadcom
>  ###############################################
>  igt@vc4_.*
> -- 
> 2.24.1
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest
  2020-03-13 15:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest Arkadiusz Hiler
@ 2020-03-16  9:07   ` Petri Latvala
  2020-03-16 10:06     ` Arkadiusz Hiler
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Latvala @ 2020-03-16  9:07 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev, Martin Peres

On Fri, Mar 13, 2020 at 05:29:11PM +0200, Arkadiusz Hiler wrote:
> The test is making Chamelium's receiver signal a need for retraining to
> the upstream, which i915 handles correctly. Then it asserts a number of
> conditions that are neither a part of the DisplayPort spec, conformance
> test suite or the current driver's behavior.
> 
> The test needs a complete rethinking. Let's remove it instead of letting
> it bitrot further.
> 
> Fixes: https://gitlab.freedesktop.org/drm/intel/issues/1059
> Cc: Martin Peres <martin.peres@intel.com>
> Cc: Petri Latvala <petri.latvala@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

Reviewed-by: Petri Latvala <petri.latvala@intel.com>

Do we have a gitlab issue for rethinking the test?


> ---
>  lib/igt_chamelium.c   |  15 -----
>  lib/igt_chamelium.h   |   3 -
>  tests/kms_chamelium.c | 147 ------------------------------------------
>  3 files changed, 165 deletions(-)
> 
> diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
> index aaf17d51..2a4930ec 100644
> --- a/lib/igt_chamelium.c
> +++ b/lib/igt_chamelium.c
> @@ -1206,21 +1206,6 @@ void chamelium_infoframe_destroy(struct chamelium_infoframe *infoframe)
>  	free(infoframe);
>  }
>  
> -bool chamelium_supports_trigger_link_failure(struct chamelium *chamelium)
> -{
> -	return chamelium_supports_method(chamelium, "TriggerLinkFailure");
> -}
> -
> -/**
> - * chamelium_trigger_link_failure: trigger a link failure on the provided port.
> - */
> -void chamelium_trigger_link_failure(struct chamelium *chamelium,
> -				    struct chamelium_port *port)
> -{
> -	xmlrpc_DECREF(chamelium_rpc(chamelium, port, "TriggerLinkFailure",
> -				    "(i)", port->id));
> -}
> -
>  bool chamelium_has_audio_support(struct chamelium *chamelium,
>  				 struct chamelium_port *port)
>  {
> diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h
> index d03c924a..bdfdd546 100644
> --- a/lib/igt_chamelium.h
> +++ b/lib/igt_chamelium.h
> @@ -161,9 +161,6 @@ struct chamelium_infoframe *
>  chamelium_get_last_infoframe(struct chamelium *chamelium,
>  			     struct chamelium_port *port,
>  			     enum chamelium_infoframe_type type);
> -bool chamelium_supports_trigger_link_failure(struct chamelium *chamelium);
> -void chamelium_trigger_link_failure(struct chamelium *chamelium,
> -				    struct chamelium_port *port);
>  bool chamelium_has_audio_support(struct chamelium *chamelium,
>  				 struct chamelium_port *port);
>  void chamelium_get_audio_channel_mapping(struct chamelium *chamelium,
> diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
> index 2acac1e4..3d0b429a 100644
> --- a/tests/kms_chamelium.c
> +++ b/tests/kms_chamelium.c
> @@ -578,149 +578,6 @@ enable_output(data_t *data,
>  	drmModeFreeConnector(connector);
>  }
>  
> -static bool find_mode(const drmModeModeInfo *list, size_t list_len,
> -		      const drmModeModeInfo *mode)
> -{
> -	size_t i;
> -
> -	for (i = 0; i < list_len; i++) {
> -		if (memcmp(&list[i], mode, sizeof(*mode)) == 0) {
> -			return true;
> -		}
> -	}
> -
> -	return false;
> -}
> -
> -static void check_modes_subset(const drmModeModeInfo *prev, size_t prev_len,
> -			       const drmModeModeInfo *cur, size_t cur_len)
> -{
> -	size_t i;
> -
> -	for (i = 0; i < cur_len; i++) {
> -		igt_assert_f(find_mode(prev, prev_len, &cur[i]),
> -			     "Got new mode %s after link status failure\n",
> -			     cur[i].name);
> -	}
> -
> -	igt_assert(cur_len <= prev_len); /* safety net */
> -	igt_debug("New mode list contains %zu less modes\n",
> -		  prev_len - cur_len);
> -}
> -
> -static bool are_fallback_modes(const drmModeModeInfo *modes, size_t modes_len)
> -{
> -	igt_assert(modes_len > 0);
> -
> -	return modes[0].hdisplay <= 1024 && modes[0].vdisplay <= 768;
> -}
> -
> -static const char test_link_status_desc[] =
> -	"Simulate a series of link failures, check we get a uevent each time "
> -	"with the link-status property set to BAD and the list of modes "
> -	"shrinks (or stays the same), until we reach fallback modes";
> -static void
> -test_link_status(data_t *data, struct chamelium_port *port)
> -{
> -	drmModeConnector *connector;
> -	igt_output_t *output;
> -	igt_plane_t *primary;
> -	drmModeModeInfo *prev_modes;
> -	size_t prev_modes_len;
> -	drmModeModeInfo mode = {0};
> -	uint32_t link_status_id;
> -	uint64_t link_status;
> -	bool has_prop;
> -	unsigned int fb_id = 0;
> -	struct igt_fb fb;
> -	struct udev_monitor *mon;
> -
> -	igt_require(chamelium_supports_trigger_link_failure(data->chamelium));
> -
> -	reset_state(data, port);
> -
> -	output = prepare_output(data, port, TEST_EDID_BASE);
> -	connector = chamelium_port_get_connector(data->chamelium, port, false);
> -	primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> -	igt_assert(primary);
> -
> -	has_prop = kmstest_get_property(data->drm_fd, connector->connector_id,
> -					DRM_MODE_OBJECT_CONNECTOR,
> -					"link-status", &link_status_id,
> -					&link_status, NULL);
> -	igt_require(has_prop);
> -	igt_assert_f(link_status == DRM_MODE_LINK_STATUS_GOOD,
> -		     "Expected link status to be %d initially, got %"PRIu64"\n",
> -		     DRM_MODE_LINK_STATUS_GOOD, link_status);
> -
> -	igt_debug("Connector has %d modes\n", connector->count_modes);
> -	prev_modes_len = connector->count_modes;
> -	prev_modes = malloc(prev_modes_len * sizeof(drmModeModeInfo));
> -	memcpy(prev_modes, connector->modes,
> -	       prev_modes_len * sizeof(drmModeModeInfo));
> -
> -	mon = igt_watch_hotplug();
> -
> -	while (1) {
> -		if (link_status == DRM_MODE_LINK_STATUS_BAD) {
> -			igt_output_set_prop_value(output,
> -						  IGT_CONNECTOR_LINK_STATUS,
> -						  DRM_MODE_LINK_STATUS_GOOD);
> -		}
> -
> -		if (memcmp(&connector->modes[0], &mode, sizeof(mode)) != 0) {
> -			igt_assert(connector->count_modes > 0);
> -			mode = connector->modes[0];
> -			igt_debug("Modesetting with %s\n", mode.name);
> -			if (fb_id > 0)
> -				igt_remove_fb(data->drm_fd, &fb);
> -			fb_id = igt_create_color_pattern_fb(data->drm_fd,
> -							    mode.hdisplay,
> -							    mode.vdisplay,
> -							    DRM_FORMAT_XRGB8888,
> -							    LOCAL_DRM_FORMAT_MOD_NONE,
> -							    0, 0, 0, &fb);
> -			igt_assert(fb_id > 0);
> -			enable_output(data, port, output, &mode, &fb);
> -		} else {
> -			igt_display_commit2(&data->display, COMMIT_ATOMIC);
> -		}
> -
> -		igt_debug("Triggering link failure\n");
> -		chamelium_trigger_link_failure(data->chamelium, port);
> -
> -		igt_assert(igt_hotplug_detected(mon, HOTPLUG_TIMEOUT));
> -		igt_assert_eq(reprobe_connector(data, port),
> -			      DRM_MODE_CONNECTED);
> -
> -		igt_flush_hotplugs(mon);
> -
> -		drmModeFreeConnector(connector);
> -		connector = chamelium_port_get_connector(data->chamelium, port,
> -							 false);
> -		link_status = igt_output_get_prop(output, IGT_CONNECTOR_LINK_STATUS);
> -		igt_assert_f(link_status == DRM_MODE_LINK_STATUS_BAD,
> -			     "Expected link status to be %d after link failure, "
> -			     "got %"PRIu64"\n",
> -			     DRM_MODE_LINK_STATUS_BAD, link_status);
> -		check_modes_subset(prev_modes, prev_modes_len,
> -				   connector->modes, connector->count_modes);
> -		prev_modes_len = connector->count_modes;
> -		memcpy(prev_modes, connector->modes,
> -		       connector->count_modes * sizeof(drmModeModeInfo));
> -
> -		if (are_fallback_modes(connector->modes, connector->count_modes)) {
> -			igt_debug("Reached fallback modes\n");
> -			break;
> -		}
> -	}
> -
> -	igt_cleanup_hotplug(mon);
> -	igt_remove_fb(data->drm_fd, &fb);
> -	free(prev_modes);
> -	drmModeFreeConnector(connector);
> -}
> -
>  static void chamelium_paint_xr24_pattern(uint32_t *data,
>  					 size_t width, size_t height,
>  					 size_t stride, size_t block_size)
> @@ -2693,10 +2550,6 @@ igt_main
>  			test_hpd_storm_disable(&data, port,
>  					       HPD_STORM_PULSE_INTERVAL_DP);
>  
> -		igt_describe(test_link_status_desc);
> -		connector_subtest("dp-link-status", DisplayPort)
> -			test_link_status(&data, port);
> -
>  		igt_describe(test_suspend_resume_edid_change_desc);
>  		connector_subtest("dp-edid-change-during-suspend", DisplayPort)
>  			test_suspend_resume_edid_change(&data, port,
> -- 
> 2.24.1
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest
  2020-03-16  9:07   ` Petri Latvala
@ 2020-03-16 10:06     ` Arkadiusz Hiler
  0 siblings, 0 replies; 10+ messages in thread
From: Arkadiusz Hiler @ 2020-03-16 10:06 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, Martin Peres

On Mon, Mar 16, 2020 at 11:07:14AM +0200, Petri Latvala wrote:
> On Fri, Mar 13, 2020 at 05:29:11PM +0200, Arkadiusz Hiler wrote:
> > The test is making Chamelium's receiver signal a need for retraining to
> > the upstream, which i915 handles correctly. Then it asserts a number of
> > conditions that are neither a part of the DisplayPort spec, conformance
> > test suite or the current driver's behavior.
> > 
> > The test needs a complete rethinking. Let's remove it instead of letting
> > it bitrot further.
> > 
> > Fixes: https://gitlab.freedesktop.org/drm/intel/issues/1059
> > Cc: Martin Peres <martin.peres@intel.com>
> > Cc: Petri Latvala <petri.latvala@intel.com>
> > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> 
> Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> 
> Do we have a gitlab issue for rethinking the test?

Now we do: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/80
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-13 16:16 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Patchwork
@ 2020-03-16 10:10   ` Arkadiusz Hiler
  2020-03-16 10:57     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 10+ messages in thread
From: Arkadiusz Hiler @ 2020-03-16 10:10 UTC (permalink / raw)
  To: igt-dev; +Cc: Lakshmi

On Fri, Mar 13, 2020 at 04:16:16PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
> URL   : https://patchwork.freedesktop.org/series/74684/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8134 -> IGTPW_4302
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4302 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4302, 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_4302/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4302:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@ring_submission:
>     - fi-bwr-2160:        NOTRUN -> [INCOMPLETE][1]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bwr-2160/igt@i915_selftest@live@ring_submission.html

We are removing some chamelium tests with this series, so this failure
is not related.

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
                   ` (2 preceding siblings ...)
  2020-03-16  9:05 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
@ 2020-03-16 10:52 ` Patchwork
  2020-03-16 13:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2020-03-16 10:52 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
URL   : https://patchwork.freedesktop.org/series/74684/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8134 -> IGTPW_4302
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@execlists:
    - fi-icl-y:           [PASS][1] -> [DMESG-FAIL][2] ([fdo#108569])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-icl-y/igt@i915_selftest@live@execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-icl-y/igt@i915_selftest@live@execlists.html

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-kbl-7500u:       [PASS][3] -> [FAIL][4] ([i915#217])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@active:
    - fi-icl-y:           [DMESG-FAIL][5] ([i915#765]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-icl-y/igt@i915_selftest@live@active.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-icl-y/igt@i915_selftest@live@active.html

  * igt@i915_selftest@live@execlists:
    - fi-bxt-dsi:         [INCOMPLETE][7] ([fdo#103927] / [i915#656]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-bxt-dsi/igt@i915_selftest@live@execlists.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bxt-dsi/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@requests:
    - fi-bwr-2160:        [INCOMPLETE][9] ([i915#1457]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-bwr-2160/igt@i915_selftest@live@requests.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bwr-2160/igt@i915_selftest@live@requests.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-tgl-y:           [INCOMPLETE][11] ([CI#94] / [i915#460]) -> [FAIL][12] ([CI#94])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][13] ([fdo#111407]) -> [FAIL][14] ([i915#323])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
  [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [i915#1457]: https://gitlab.freedesktop.org/drm/intel/issues/1457
  [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217
  [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
  [i915#460]: https://gitlab.freedesktop.org/drm/intel/issues/460
  [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656
  [i915#765]: https://gitlab.freedesktop.org/drm/intel/issues/765


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

  Additional (8): fi-kbl-soraka fi-bdw-5557u fi-bsw-n3050 fi-hsw-peppy fi-skl-lmem fi-bsw-nick fi-skl-6600u fi-snb-2600 
  Missing    (8): fi-ilk-m540 fi-ehl-1 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5508 -> IGTPW_4302

  CI-20190529: 20190529
  CI_DRM_8134: 548cc21e9ca596cc12dfdb36575b0fedf28a3eb4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4302: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/index.html
  IGT_5508: 89d644600a1a9f08794cc7106b63758df40ce1d8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

-igt@kms_chamelium@dp-link-status

== Logs ==

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

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-16 10:10   ` Arkadiusz Hiler
@ 2020-03-16 10:57     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 10+ messages in thread
From: Vudum, Lakshminarayana @ 2020-03-16 10:57 UTC (permalink / raw)
  To: Hiler, Arkadiusz, igt-dev

Addressed the failure and re-reported the results.

Lakshmi.

-----Original Message-----
From: Hiler, Arkadiusz <arkadiusz.hiler@intel.com> 
Sent: Monday, March 16, 2020 12:11 PM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random

On Fri, Mar 13, 2020 at 04:16:16PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
> URL   : https://patchwork.freedesktop.org/series/74684/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_8134 -> IGTPW_4302 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_4302 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4302, 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_4302/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4302:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_selftest@live@ring_submission:
>     - fi-bwr-2160:        NOTRUN -> [INCOMPLETE][1]
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/fi-bwr-2160/igt@i9
> 15_selftest@live@ring_submission.html

We are removing some chamelium tests with this series, so this failure is not related.

--
Cheers,
Arek
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
  2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
                   ` (3 preceding siblings ...)
  2020-03-16 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
@ 2020-03-16 13:43 ` Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2020-03-16 13:43 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random
URL   : https://patchwork.freedesktop.org/series/74684/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8134_full -> IGTPW_4302_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@mock:
    - shard-glk:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-glk4/igt@i915_selftest@mock.html
    - shard-iclb:         NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb1/igt@i915_selftest@mock.html
    - shard-kbl:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl2/igt@i915_selftest@mock.html
    - shard-tglb:         NOTRUN -> [FAIL][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb7/igt@i915_selftest@mock.html
    - shard-apl:          NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl8/igt@i915_selftest@mock.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-kbl:          [PASS][6] -> [INCOMPLETE][7] ([i915#1402])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl6/igt@gem_ctx_persistence@close-replace-race.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl3/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [PASS][8] -> [SKIP][9] ([fdo#110854])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb2/igt@gem_exec_balancer@smoke.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb5/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@pi-common-bsd:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([i915#677]) +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb3/igt@gem_exec_schedule@pi-common-bsd.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb4/igt@gem_exec_schedule@pi-common-bsd.html

  * igt@gem_exec_schedule@preempt-queue-chain-bsd:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#112146]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb8/igt@gem_exec_schedule@preempt-queue-chain-bsd.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb1/igt@gem_exec_schedule@preempt-queue-chain-bsd.html

  * igt@gem_exec_whisper@basic-fds-all:
    - shard-tglb:         [PASS][14] -> [INCOMPLETE][15] ([i915#1401])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-tglb6/igt@gem_exec_whisper@basic-fds-all.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb7/igt@gem_exec_whisper@basic-fds-all.html

  * igt@gem_mmap_gtt@basic-write-read-distinct:
    - shard-snb:          [PASS][16] -> [DMESG-WARN][17] ([i915#478])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-snb6/igt@gem_mmap_gtt@basic-write-read-distinct.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-snb5/igt@gem_mmap_gtt@basic-write-read-distinct.html
    - shard-hsw:          [PASS][18] -> [DMESG-WARN][19] ([i915#478])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw7/igt@gem_mmap_gtt@basic-write-read-distinct.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw5/igt@gem_mmap_gtt@basic-write-read-distinct.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-apl:          [PASS][20] -> [FAIL][21] ([i915#644])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#454])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-kbl:          [PASS][24] -> [INCOMPLETE][25] ([i915#151])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl2/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][26] -> [DMESG-WARN][27] ([i915#180]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_color@pipe-b-ctm-blue-to-red:
    - shard-apl:          [PASS][28] -> [FAIL][29] ([i915#129])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl3/igt@kms_color@pipe-b-ctm-blue-to-red.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl6/igt@kms_color@pipe-b-ctm-blue-to-red.html
    - shard-kbl:          [PASS][30] -> [FAIL][31] ([i915#129])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl1/igt@kms_color@pipe-b-ctm-blue-to-red.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl3/igt@kms_color@pipe-b-ctm-blue-to-red.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#109349])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-kbl:          [PASS][34] -> [DMESG-WARN][35] ([i915#180]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_psr@no_drrs:
    - shard-iclb:         [PASS][36] -> [FAIL][37] ([i915#173])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb2/igt@kms_psr@no_drrs.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb1/igt@kms_psr@no_drrs.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][38] -> [SKIP][39] ([fdo#109441]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][40] -> [FAIL][41] ([i915#31])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl1/igt@kms_setmode@basic.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl4/igt@kms_setmode@basic.html

  * igt@perf@gen12-mi-rpc:
    - shard-tglb:         [PASS][42] -> [FAIL][43] ([i915#1085])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-tglb5/igt@perf@gen12-mi-rpc.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb8/igt@perf@gen12-mi-rpc.html

  * igt@perf_pmu@busy-no-semaphores-vcs1:
    - shard-iclb:         [PASS][44] -> [SKIP][45] ([fdo#112080]) +8 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb7/igt@perf_pmu@busy-no-semaphores-vcs1.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [PASS][46] -> [SKIP][47] ([fdo#109276]) +19 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_shared@q-promotion-bsd2:
    - shard-iclb:         [SKIP][48] ([fdo#109276]) -> [PASS][49] +7 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb8/igt@gem_ctx_shared@q-promotion-bsd2.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb4/igt@gem_ctx_shared@q-promotion-bsd2.html

  * igt@gem_exec_schedule@implicit-both-bsd1:
    - shard-iclb:         [SKIP][50] ([fdo#109276] / [i915#677]) -> [PASS][51] +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb3/igt@gem_exec_schedule@implicit-both-bsd1.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb2/igt@gem_exec_schedule@implicit-both-bsd1.html

  * igt@gem_exec_schedule@pi-userfault-bsd:
    - shard-iclb:         [SKIP][52] ([i915#677]) -> [PASS][53] +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb1/igt@gem_exec_schedule@pi-userfault-bsd.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb6/igt@gem_exec_schedule@pi-userfault-bsd.html

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][54] ([fdo#112146]) -> [PASS][55] +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-kbl:          [FAIL][56] ([i915#644]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl7/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][58] ([fdo#111870]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html
    - shard-snb:          [DMESG-WARN][60] ([fdo#111870] / [i915#478]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_selftest@live@execlists:
    - shard-apl:          [INCOMPLETE][62] ([fdo#103927] / [i915#656]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl7/igt@i915_selftest@live@execlists.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl4/igt@i915_selftest@live@execlists.html

  * igt@kms_color@pipe-b-degamma:
    - shard-kbl:          [FAIL][64] ([i915#71]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl2/igt@kms_color@pipe-b-degamma.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl6/igt@kms_color@pipe-b-degamma.html
    - shard-apl:          [FAIL][66] ([i915#71]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl3/igt@kms_color@pipe-b-degamma.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl7/igt@kms_color@pipe-b-degamma.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][68] ([i915#180]) -> [PASS][69] +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][70] ([i915#72]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-glk9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          [FAIL][72] ([i915#46]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-kbl:          [INCOMPLETE][74] ([i915#155]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [DMESG-WARN][76] ([i915#180]) -> [PASS][77] +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [SKIP][78] ([fdo#109441]) -> [PASS][79] +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html

  * igt@perf_pmu@busy-check-all-vcs1:
    - shard-iclb:         [SKIP][80] ([fdo#112080]) -> [PASS][81] +13 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb3/igt@perf_pmu@busy-check-all-vcs1.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb2/igt@perf_pmu@busy-check-all-vcs1.html

  
#### Warnings ####

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-snb:          [DMESG-WARN][82] ([fdo#110789] / [fdo#111870] / [i915#478]) -> [DMESG-WARN][83] ([fdo#111870] / [i915#478])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-snb2/igt@gem_userptr_blits@dmabuf-sync.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-snb2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-hsw:          [DMESG-WARN][84] ([fdo#110789] / [fdo#111870]) -> [DMESG-WARN][85] ([fdo#111870])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw2/igt@gem_userptr_blits@dmabuf-sync.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [DMESG-WARN][86] ([fdo#111870] / [i915#478]) -> [DMESG-WARN][87] ([fdo#110789] / [fdo#111870] / [i915#478])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-snb2/igt@gem_userptr_blits@sync-unmap.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-snb6/igt@gem_userptr_blits@sync-unmap.html
    - shard-hsw:          [DMESG-WARN][88] ([fdo#111870]) -> [DMESG-WARN][89] ([fdo#110789] / [fdo#111870])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         [FAIL][90] ([i915#454]) -> [SKIP][91] ([i915#468]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-tglb6/igt@i915_pm_dc@dc6-psr.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-snb:          [SKIP][92] ([fdo#109271]) -> [INCOMPLETE][93] ([i915#82])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-snb4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-snb5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-tglb:         [SKIP][94] ([i915#1316]) -> [SKIP][95] ([fdo#109506])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
    - shard-iclb:         [SKIP][96] ([i915#1316]) -> [SKIP][97] ([fdo#109293] / [fdo#109506])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-iclb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-iclb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@runner@aborted:
    - shard-hsw:          ([FAIL][98], [FAIL][99], [FAIL][100], [FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104]) ([fdo#111870]) -> ([FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112]) ([fdo#111870] / [i915#1454] / [i915#478])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw2/igt@runner@aborted.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw6/igt@runner@aborted.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw7/igt@runner@aborted.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw1/igt@runner@aborted.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw2/igt@runner@aborted.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw6/igt@runner@aborted.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-hsw6/igt@runner@aborted.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw4/igt@runner@aborted.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw1/igt@runner@aborted.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw4/igt@runner@aborted.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw6/igt@runner@aborted.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw7/igt@runner@aborted.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw7/igt@runner@aborted.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw5/igt@runner@aborted.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-hsw6/igt@runner@aborted.html
    - shard-kbl:          [FAIL][113] ([i915#92]) -> ([FAIL][114], [FAIL][115], [FAIL][116]) ([i915#1389] / [i915#1402] / [i915#1455] / [i915#92])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-kbl3/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl2/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl2/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-kbl3/igt@runner@aborted.html
    - shard-apl:          ([FAIL][117], [FAIL][118], [FAIL][119]) ([fdo#103927] / [i915#1402] / [i915#529]) -> ([FAIL][120], [FAIL][121], [FAIL][122]) ([fdo#103927] / [i915#1402] / [i915#1455])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl6/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl2/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-apl7/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl6/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-apl8/igt@runner@aborted.html
    - shard-glk:          [FAIL][123] ([i915#1402] / [k.org#202321]) -> ([FAIL][124], [FAIL][125]) ([i915#1402] / [i915#1455] / [k.org#202321])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-glk4/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-glk4/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-glk2/igt@runner@aborted.html
    - shard-tglb:         [FAIL][126] ([i915#1389]) -> ([FAIL][127], [FAIL][128], [FAIL][129]) ([i915#1389] / [i915#1401] / [i915#1455])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8134/shard-tglb5/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb7/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb7/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/shard-tglb3/igt@runner@aborted.html

  
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
  [i915#129]: https://gitlab.freedesktop.org/drm/intel/issues/129
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1389]: https://gitlab.freedesktop.org/drm/intel/issues/1389
  [i915#1401]: https://gitlab.freedesktop.org/drm/intel/issues/1401
  [i915#1402]: https://gitlab.freedesktop.org/drm/intel/issues/1402
  [i915#1454]: https://gitlab.freedesktop.org/drm/intel/issues/1454
  [i915#1455]: https://gitlab.freedesktop.org/drm/intel/issues/1455
  [i915#151]: https://gitlab.freedesktop.org/drm/intel/issues/151
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#46]: https://gitlab.freedesktop.org/drm/intel/issues/46
  [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#656]: https://gitlab.freedesktop.org/drm/intel/issues/656
  [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677
  [i915#71]: https://gitlab.freedesktop.org/drm/intel/issues/71
  [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321


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

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5508 -> IGTPW_4302
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_8134: 548cc21e9ca596cc12dfdb36575b0fedf28a3eb4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4302: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4302/index.html
  IGT_5508: 89d644600a1a9f08794cc7106b63758df40ce1d8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-13 15:29 [igt-dev] [PATCH i-g-t 1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Arkadiusz Hiler
2020-03-13 15:29 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_chamelium: Get rid of dp-link-status subtest Arkadiusz Hiler
2020-03-16  9:07   ` Petri Latvala
2020-03-16 10:06     ` Arkadiusz Hiler
2020-03-13 16:16 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] tests/intel-ci/blacklist: Blacklist kms_chamelium@hdmi-*-planes-random Patchwork
2020-03-16 10:10   ` Arkadiusz Hiler
2020-03-16 10:57     ` Vudum, Lakshminarayana
2020-03-16  9:05 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
2020-03-16 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2020-03-16 13:43 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.