All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory
@ 2021-09-15  6:39 Bhanuprakash Modem
  2021-09-15  7:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Bhanuprakash Modem @ 2021-09-15  6:39 UTC (permalink / raw)
  To: igt-dev
  Cc: Bhanuprakash Modem, Ville Syrjälä,
	Mark Yacoub, Petri Latvala, Vidya Srinivas, Karthik B S,
	Rodrigo Siqueira

As KMS tests on IGT are officially supported on multiple SoCs
and there is an active development on it. So, KMS tests are
meant to be generic and if we need to test few things specific
to Intel, we can use igt_require_intel(). But if the whole test
is Intel specific, then the best place for the test would be
tests/i915.

This patch will
* Move all Intel specific kms tests to tests/i915 directory.
* Update the tests those are generic but still open the driver
  as 'drm_open_driver_master(DRIVER_INTEL);'.

V2:
* Few more tests
V3:
* Remove cleanups (will submit separate patch later)
* Move few more tests to i915 dir (Karthik)
V4:
* Move kms_big_joiner.c to i915 dir (Karthik)

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Mark Yacoub <markyacoub@chromium.org>
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Vidya Srinivas <vidya.srinivas@intel.com>
Cc: Karthik B S <karthik.b.s@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Mark Yacoub <markyacoub@chromium.org>
Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
---
 tests/{ => i915}/kms_big_fb.c               |  0
 tests/{ => i915}/kms_big_joiner.c           |  0
 tests/{ => i915}/kms_busy.c                 |  0
 tests/{ => i915}/kms_ccs.c                  |  0
 tests/{ => i915}/kms_cdclk.c                |  0
 tests/{ => i915}/kms_draw_crc.c             |  0
 tests/{ => i915}/kms_dsc.c                  | 15 ++++----
 tests/{ => i915}/kms_fbcon_fbt.c            |  0
 tests/{ => i915}/kms_fence_pin_leak.c       |  0
 tests/{ => i915}/kms_flip_scaled_crc.c      |  0
 tests/{ => i915}/kms_flip_tiling.c          |  0
 tests/{ => i915}/kms_frontbuffer_tracking.c |  0
 tests/{ => i915}/kms_invalid_dotclock.c     |  0
 tests/{ => i915}/kms_legacy_colorkey.c      |  0
 tests/{ => i915}/kms_mmap_write_crc.c       |  0
 tests/{ => i915}/kms_pipe_b_c_ivb.c         |  0
 tests/{ => i915}/kms_psr.c                  |  0
 tests/{ => i915}/kms_psr2_sf.c              |  0
 tests/{ => i915}/kms_psr2_su.c              |  0
 tests/{ => i915}/kms_pwrite_crc.c           |  0
 tests/kms_3d.c                              |  2 +-
 tests/kms_cursor_edge_walk.c                |  5 +--
 tests/kms_flip.c                            |  1 +
 tests/kms_force_connector_basic.c           |  4 +--
 tests/kms_hdmi_inject.c                     | 11 +++---
 tests/kms_tv_load_detect.c                  |  2 +-
 tests/kms_universal_plane.c                 |  8 +++--
 tests/meson.build                           | 40 ++++++++++-----------
 28 files changed, 46 insertions(+), 42 deletions(-)
 rename tests/{ => i915}/kms_big_fb.c (100%)
 rename tests/{ => i915}/kms_big_joiner.c (100%)
 rename tests/{ => i915}/kms_busy.c (100%)
 rename tests/{ => i915}/kms_ccs.c (100%)
 rename tests/{ => i915}/kms_cdclk.c (100%)
 rename tests/{ => i915}/kms_draw_crc.c (100%)
 rename tests/{ => i915}/kms_dsc.c (95%)
 rename tests/{ => i915}/kms_fbcon_fbt.c (100%)
 rename tests/{ => i915}/kms_fence_pin_leak.c (100%)
 rename tests/{ => i915}/kms_flip_scaled_crc.c (100%)
 rename tests/{ => i915}/kms_flip_tiling.c (100%)
 rename tests/{ => i915}/kms_frontbuffer_tracking.c (100%)
 rename tests/{ => i915}/kms_invalid_dotclock.c (100%)
 rename tests/{ => i915}/kms_legacy_colorkey.c (100%)
 rename tests/{ => i915}/kms_mmap_write_crc.c (100%)
 rename tests/{ => i915}/kms_pipe_b_c_ivb.c (100%)
 rename tests/{ => i915}/kms_psr.c (100%)
 rename tests/{ => i915}/kms_psr2_sf.c (100%)
 rename tests/{ => i915}/kms_psr2_su.c (100%)
 rename tests/{ => i915}/kms_pwrite_crc.c (100%)

diff --git a/tests/kms_big_fb.c b/tests/i915/kms_big_fb.c
similarity index 100%
rename from tests/kms_big_fb.c
rename to tests/i915/kms_big_fb.c
diff --git a/tests/kms_big_joiner.c b/tests/i915/kms_big_joiner.c
similarity index 100%
rename from tests/kms_big_joiner.c
rename to tests/i915/kms_big_joiner.c
diff --git a/tests/kms_busy.c b/tests/i915/kms_busy.c
similarity index 100%
rename from tests/kms_busy.c
rename to tests/i915/kms_busy.c
diff --git a/tests/kms_ccs.c b/tests/i915/kms_ccs.c
similarity index 100%
rename from tests/kms_ccs.c
rename to tests/i915/kms_ccs.c
diff --git a/tests/kms_cdclk.c b/tests/i915/kms_cdclk.c
similarity index 100%
rename from tests/kms_cdclk.c
rename to tests/i915/kms_cdclk.c
diff --git a/tests/kms_draw_crc.c b/tests/i915/kms_draw_crc.c
similarity index 100%
rename from tests/kms_draw_crc.c
rename to tests/i915/kms_draw_crc.c
diff --git a/tests/kms_dsc.c b/tests/i915/kms_dsc.c
similarity index 95%
rename from tests/kms_dsc.c
rename to tests/i915/kms_dsc.c
index b56e01837..3e450207f 100644
--- a/tests/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -244,14 +244,12 @@ static void run_test(data_t *data, enum dsc_test_type test_type)
 			      &data->fb_test_pattern);
 
 	for_each_pipe(&data->display, pipe) {
-		if (is_i915_device(data->drm_fd)) {
-			uint32_t devid = intel_get_drm_devid(data->drm_fd);
+		uint32_t devid = intel_get_drm_devid(data->drm_fd);
 
-			if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort &&
-			    pipe == PIPE_A && IS_GEN11(devid)) {
-				igt_debug("DSC not supported on Pipe A on external DP in Gen11 platforms\n");
-				continue;
-			}
+		if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort &&
+		    pipe == PIPE_A && IS_GEN11(devid)) {
+			igt_debug("DSC not supported on Pipe A on external DP in Gen11 platforms\n");
+			continue;
 		}
 
 		snprintf(test_name, sizeof(test_name), "-%dbpp", data->compression_bpp);
@@ -279,8 +277,7 @@ igt_main
 	drmModeConnector *connector = NULL;
 	int i, j;
 	igt_fixture {
-		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
-		igt_require_intel(data.drm_fd);
+		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
 		data.devid = intel_get_drm_devid(data.drm_fd);
 		kmstest_set_vt_graphics_mode();
 		igt_install_exit_handler(kms_dsc_exit_handler);
diff --git a/tests/kms_fbcon_fbt.c b/tests/i915/kms_fbcon_fbt.c
similarity index 100%
rename from tests/kms_fbcon_fbt.c
rename to tests/i915/kms_fbcon_fbt.c
diff --git a/tests/kms_fence_pin_leak.c b/tests/i915/kms_fence_pin_leak.c
similarity index 100%
rename from tests/kms_fence_pin_leak.c
rename to tests/i915/kms_fence_pin_leak.c
diff --git a/tests/kms_flip_scaled_crc.c b/tests/i915/kms_flip_scaled_crc.c
similarity index 100%
rename from tests/kms_flip_scaled_crc.c
rename to tests/i915/kms_flip_scaled_crc.c
diff --git a/tests/kms_flip_tiling.c b/tests/i915/kms_flip_tiling.c
similarity index 100%
rename from tests/kms_flip_tiling.c
rename to tests/i915/kms_flip_tiling.c
diff --git a/tests/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c
similarity index 100%
rename from tests/kms_frontbuffer_tracking.c
rename to tests/i915/kms_frontbuffer_tracking.c
diff --git a/tests/kms_invalid_dotclock.c b/tests/i915/kms_invalid_dotclock.c
similarity index 100%
rename from tests/kms_invalid_dotclock.c
rename to tests/i915/kms_invalid_dotclock.c
diff --git a/tests/kms_legacy_colorkey.c b/tests/i915/kms_legacy_colorkey.c
similarity index 100%
rename from tests/kms_legacy_colorkey.c
rename to tests/i915/kms_legacy_colorkey.c
diff --git a/tests/kms_mmap_write_crc.c b/tests/i915/kms_mmap_write_crc.c
similarity index 100%
rename from tests/kms_mmap_write_crc.c
rename to tests/i915/kms_mmap_write_crc.c
diff --git a/tests/kms_pipe_b_c_ivb.c b/tests/i915/kms_pipe_b_c_ivb.c
similarity index 100%
rename from tests/kms_pipe_b_c_ivb.c
rename to tests/i915/kms_pipe_b_c_ivb.c
diff --git a/tests/kms_psr.c b/tests/i915/kms_psr.c
similarity index 100%
rename from tests/kms_psr.c
rename to tests/i915/kms_psr.c
diff --git a/tests/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c
similarity index 100%
rename from tests/kms_psr2_sf.c
rename to tests/i915/kms_psr2_sf.c
diff --git a/tests/kms_psr2_su.c b/tests/i915/kms_psr2_su.c
similarity index 100%
rename from tests/kms_psr2_su.c
rename to tests/i915/kms_psr2_su.c
diff --git a/tests/kms_pwrite_crc.c b/tests/i915/kms_pwrite_crc.c
similarity index 100%
rename from tests/kms_pwrite_crc.c
rename to tests/i915/kms_pwrite_crc.c
diff --git a/tests/kms_3d.c b/tests/kms_3d.c
index 2e438b430..8284100ee 100644
--- a/tests/kms_3d.c
+++ b/tests/kms_3d.c
@@ -34,7 +34,7 @@ igt_simple_main
 	const struct edid *edid;
 	int mode_count, connector_id;
 
-	drm_fd = drm_open_driver_master(DRIVER_INTEL);
+	drm_fd = drm_open_driver_master(DRIVER_ANY);
 
 	res = drmModeGetResources(drm_fd);
 	igt_require(res);
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index e9902f5e7..fbfc275c4 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -312,9 +312,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
 	igt_fixture {
 		int ret;
 
-		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
 
-		data.devid = intel_get_drm_devid(data.drm_fd);
+		if (is_i915_device(data.drm_fd))
+			data.devid = intel_get_drm_devid(data.drm_fd);
 
 		ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, &max_curw);
 		igt_assert(ret == 0 || errno == EINVAL);
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index b4836a44d..541378712 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -778,6 +778,7 @@ static bool run_test_step(struct test_output *o, unsigned int *events)
 
 	memset(&hang, 0, sizeof(hang));
 	if (do_flip && (o->flags & TEST_HANG)) {
+		igt_require_intel(drm_fd);
 		ahnd = get_reloc_ahnd(drm_fd, 0);
 		hang = hang_gpu(drm_fd, ahnd);
 	}
diff --git a/tests/kms_force_connector_basic.c b/tests/kms_force_connector_basic.c
index 3b0146fe9..683d36720 100644
--- a/tests/kms_force_connector_basic.c
+++ b/tests/kms_force_connector_basic.c
@@ -37,7 +37,7 @@ static void reset_connectors(void)
 	drmModeRes *res;
 	drmModeConnector *connector = NULL;
 
-	drm_fd = drm_open_driver_master(DRIVER_INTEL);
+	drm_fd = drm_open_driver_master(DRIVER_ANY);
 	res = drmModeGetResources(drm_fd);
 
 	for (int i = 0; i < res->count_connectors; i++) {
@@ -86,7 +86,7 @@ igt_main_args("", long_opts, help_str, opt_handler, NULL)
 	igt_fixture {
 		unsigned connector_id = 0;
 
-		drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		drm_fd = drm_open_driver_master(DRIVER_ANY);
 
 		res = drmModeGetResources(drm_fd);
 		igt_require(res);
diff --git a/tests/kms_hdmi_inject.c b/tests/kms_hdmi_inject.c
index ad2dde569..a324950bb 100644
--- a/tests/kms_hdmi_inject.c
+++ b/tests/kms_hdmi_inject.c
@@ -82,12 +82,13 @@ hdmi_inject_4k(int drm_fd, drmModeConnector *connector)
 	int fb_id;
 	struct igt_fb fb;
 	uint8_t found_4k_mode = 0;
-	uint32_t devid;
 
-	devid = intel_get_drm_devid(drm_fd);
+	if (is_i915_device(drm_fd)) {
+		uint32_t devid = intel_get_drm_devid(drm_fd);
 
-	/* 4K requires at least HSW */
-	igt_require(IS_HASWELL(devid) || intel_display_ver(devid) >= 8);
+		/* 4K requires at least HSW */
+		igt_require(IS_HASWELL(devid) || intel_display_ver(devid) >= 8);
+	}
 
 	edid = igt_kms_get_4k_edid();
 	kmstest_force_edid(drm_fd, connector, edid);
@@ -195,7 +196,7 @@ igt_main
 	drmModeConnector *connector;
 
 	igt_fixture {
-		drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		drm_fd = drm_open_driver_master(DRIVER_ANY);
 
 		res = drmModeGetResources(drm_fd);
 		igt_require(res);
diff --git a/tests/kms_tv_load_detect.c b/tests/kms_tv_load_detect.c
index caac3aecb..80ced9918 100644
--- a/tests/kms_tv_load_detect.c
+++ b/tests/kms_tv_load_detect.c
@@ -34,7 +34,7 @@ igt_main
 	drmModeConnector *tv_connector = NULL, *temp;
 
 	igt_fixture {
-		drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		drm_fd = drm_open_driver_master(DRIVER_ANY);
 
 		res = drmModeGetResources(drm_fd);
 		igt_require(res);
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index c9a9cd47a..c7b859dac 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -382,6 +382,7 @@ sanity_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 	 * doesn't cover CRTC (should fail on pre-gen9 and succeed on
 	 * gen9+).
 	 */
+	igt_require_intel(data->drm_fd);
 	igt_plane_set_fb(primary, &test.undersized_fb);
 	expect = (data->display_ver < 9) ? -EINVAL : 0;
 	igt_assert(igt_display_try_commit2(&data->display, COMMIT_UNIVERSAL) == expect);
@@ -579,6 +580,7 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 
 	igt_require_pipe(display, pipe);
 	igt_require(display->has_cursor_plane);
+	igt_require_intel(data->drm_fd);
 
 	igt_output_set_pipe(output, pipe);
 	mode = igt_output_get_mode(output);
@@ -704,6 +706,7 @@ gen9_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
 
 	int ret = 0;
 
+	igt_require_intel(data->drm_fd);
 	igt_skip_on(data->display_ver < 9);
 	igt_require_pipe(&data->display, pipe);
 
@@ -797,8 +800,9 @@ igt_main
 	enum pipe pipe;
 
 	igt_fixture {
-		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
-		data.display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd));
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+		if (is_i915_device(data.drm_fd))
+			data.display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd));
 
 		kmstest_set_vt_graphics_mode();
 
diff --git a/tests/meson.build b/tests/meson.build
index cbc02534f..8ad52596a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -19,11 +19,6 @@ test_progs = [
 	'kms_atomic',
 	'kms_atomic_interruptible',
 	'kms_atomic_transition',
-	'kms_big_fb',
-	'kms_big_joiner' ,
-	'kms_busy',
-	'kms_ccs',
-	'kms_cdclk',
 	'kms_concurrent',
 	'kms_content_protection',
 	'kms_cursor_crc',
@@ -32,26 +27,15 @@ test_progs = [
 	'kms_dither',
 	'kms_dp_aux_dev',
 	'kms_dp_tiled_display',
-	'kms_draw_crc',
-	'kms_dsc',
-	'kms_fbcon_fbt',
-	'kms_fence_pin_leak',
 	'kms_flip',
 	'kms_flip_event_leak',
-	'kms_flip_scaled_crc',
-	'kms_flip_tiling',
 	'kms_force_connector_basic',
-	'kms_frontbuffer_tracking',
 	'kms_getfb',
 	'kms_hdmi_inject',
 	'kms_hdr',
-	'kms_invalid_dotclock',
 	'kms_lease',
-	'kms_legacy_colorkey',
-	'kms_mmap_write_crc',
 	'kms_multipipe_modeset',
 	'kms_panel_fitting',
-	'kms_pipe_b_c_ivb',
 	'kms_pipe_crc_basic',
 	'kms_plane',
 	'kms_plane_alpha_blend',
@@ -62,10 +46,6 @@ test_progs = [
 	'kms_prime',
 	'kms_prop_blob',
 	'kms_properties',
-	'kms_psr',
-	'kms_psr2_su',
-	'kms_psr2_sf',
-	'kms_pwrite_crc',
 	'kms_rmfb',
 	'kms_rotation_crc',
 	'kms_selftest',
@@ -236,6 +216,26 @@ i915_progs = [
 	'i915_query',
 	'i915_selftest',
 	'i915_suspend',
+	'kms_big_fb',
+	'kms_big_joiner' ,
+	'kms_busy',
+	'kms_ccs',
+	'kms_cdclk',
+	'kms_draw_crc',
+	'kms_dsc',
+	'kms_fbcon_fbt',
+	'kms_fence_pin_leak',
+	'kms_flip_scaled_crc',
+	'kms_flip_tiling',
+	'kms_frontbuffer_tracking',
+	'kms_invalid_dotclock',
+	'kms_legacy_colorkey',
+	'kms_mmap_write_crc',
+	'kms_pipe_b_c_ivb',
+	'kms_psr',
+	'kms_psr2_su',
+	'kms_psr2_sf',
+	'kms_pwrite_crc',
 	'sysfs_clients',
 	'sysfs_defaults',
 	'sysfs_heartbeat_interval',
-- 
2.32.0

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

* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
@ 2021-09-15  7:31 ` Patchwork
  2021-09-15 12:20   ` Modem, Bhanuprakash
  2021-09-16  4:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-09-15  7:31 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 9968 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev4)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10587 -> IGTPW_6221
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload:
    - fi-rkl-11600:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-rkl-11600/igt@i915_module_load@reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-rkl-11600/igt@i915_module_load@reload.html

  
#### Warnings ####

  * igt@i915_module_load@reload:
    - fi-kbl-8809g:       [INCOMPLETE][3] ([i915#4136]) -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-kbl-8809g/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-8809g/igt@i915_module_load@reload.html

  
#### Suppressed ####

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

  * igt@i915_module_load@reload:
    - {fi-jsl-1}:         [TIMEOUT][5] ([i915#4136]) -> [INCOMPLETE][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-jsl-1/igt@i915_module_load@reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-jsl-1/igt@i915_module_load@reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-tgl-1115g4:      NOTRUN -> [INCOMPLETE][7] ([i915#4130])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
    - fi-icl-u2:          [PASS][8] -> [INCOMPLETE][9] ([i915#4130])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7500u:       [PASS][10] -> [INCOMPLETE][11] ([i915#4130])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][12] ([fdo#109271]) +8 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#2190])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][14] ([i915#2190])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html

  * igt@i915_module_load@reload:
    - fi-kbl-soraka:      NOTRUN -> [INCOMPLETE][15] ([i915#4136])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@i915_module_load@reload.html
    - fi-cfl-8109u:       [PASS][16] -> [DMESG-WARN][17] ([i915#4136])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-cfl-8109u/igt@i915_module_load@reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-cfl-8109u/igt@i915_module_load@reload.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][18] ([i915#1155])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@mman:
    - fi-skl-6700k2:      NOTRUN -> [INCOMPLETE][19] ([i915#3796] / [i915#4129])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@i915_selftest@live@mman.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][20] ([fdo#111827]) +8 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html
    - fi-kbl-soraka:      NOTRUN -> [SKIP][21] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][22] ([i915#4103]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][23] ([fdo#109285])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#533])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][25] ([i915#1072]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_psr@primary_mmap_gtt.html

  * igt@prime_vgem@basic-userptr:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][26] ([i915#3301])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-kbl-soraka:      NOTRUN -> [FAIL][27] ([i915#2426] / [i915#3363])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@runner@aborted.html
    - fi-tgl-1115g4:      NOTRUN -> [FAIL][28] ([i915#1602] / [i915#2722])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@runner@aborted.html
    - fi-skl-6700k2:      NOTRUN -> [FAIL][29] ([i915#1436] / [i915#2426] / [i915#3363])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-skl-6700k2:      [INCOMPLETE][30] ([i915#4130]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_module_load@reload:
    - fi-skl-guc:         [DMESG-WARN][32] ([i915#4136]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-skl-guc/igt@i915_module_load@reload.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-guc/igt@i915_module_load@reload.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          [DMESG-WARN][34] ([i915#2203] / [i915#2868]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3796]: https://gitlab.freedesktop.org/drm/intel/issues/3796
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4129]: https://gitlab.freedesktop.org/drm/intel/issues/4129
  [i915#4130]: https://gitlab.freedesktop.org/drm/intel/issues/4130
  [i915#4136]: https://gitlab.freedesktop.org/drm/intel/issues/4136
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (37 -> 35)
------------------------------

  Additional (2): fi-kbl-soraka fi-tgl-1115g4 
  Missing    (4): fi-bdw-samus fi-glk-dsi fi-bsw-cyan bat-dg1-6 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6209 -> IGTPW_6221

  CI-20190529: 20190529
  CI_DRM_10587: d21ca44c0ed9d8fcf70877a87c4b9941c4d07f85 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6221: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
  IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 12114 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4)
  2021-09-15  7:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
@ 2021-09-15 12:20   ` Modem, Bhanuprakash
  2021-09-16  4:15     ` Kattamanchi, JaswanthX
  0 siblings, 1 reply; 16+ messages in thread
From: Modem, Bhanuprakash @ 2021-09-15 12:20 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana, Kattamanchi, JaswanthX

Hi Lakshmi/Jaswanth

Can you please re-report below false-positive?

Thanks,
Bhanu

> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Wednesday, September 15, 2021 1:02 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to
> i915 directory (rev4)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev4)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
> 
> CI Bug Log - changes from CI_DRM_10587 -> IGTPW_6221
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6221 absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6221, 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_6221/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6221:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-rkl-11600: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-rkl-11600/igt@i915_module_load@reload.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-rkl-
> 11600/igt@i915_module_load@reload.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-8809g: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-kbl-8809g/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> 8809g/igt@i915_module_load@reload.html>
> 
> 
> Suppressed
> 
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
> *	igt@i915_module_load@reload:
> 
> 	*	{fi-jsl-1}: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-jsl-1/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-jsl-
> 1/igt@i915_module_load@reload.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6221 that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@core_hotunplug@unbind-
> rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-icl-u2: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-
> u2/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-kbl-7500u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> 7500u/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> *	igt@gem_exec_fence@basic-busy@bcs0:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_exec_fence@basic-
> busy@bcs0.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +8 similar issues
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_huc_copy@huc-
> copy.html>  (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>
> / i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190> )
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@gem_huc_copy@huc-
> copy.html>  (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>
> )
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-soraka: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> soraka/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> 	*	fi-cfl-8109u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-cfl-8109u/igt@i915_module_load@reload.html>  -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-cfl-
> 8109u/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_pm_backlight@basic-brightness:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@i915_pm_backlight@basic-
> brightness.html>  (i915#1155
> <https://gitlab.freedesktop.org/drm/intel/issues/1155> )
> 
> *	igt@i915_selftest@live@mman:
> 
> 	*	fi-skl-6700k2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> 6700k2/igt@i915_selftest@live@mman.html>  (i915#3796
> <https://gitlab.freedesktop.org/drm/intel/issues/3796>  / i915#4129
> <https://gitlab.freedesktop.org/drm/intel/issues/4129> )
> 
> *	igt@kms_chamelium@common-hpd-after-suspend:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-
> after-suspend.html>  (fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +8 similar issues
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_chamelium@common-hpd-
> after-suspend.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +8 similar issues
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-
> busy-flip-before-cursor-atomic.html>  (i915#4103
> <https://gitlab.freedesktop.org/drm/intel/issues/4103> ) +1 similar issue
> 
> *	igt@kms_force_connector_basic@force-load-detect:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-
> 1115g4/igt@kms_force_connector_basic@force-load-detect.html>  (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> *	igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#533
> <https://gitlab.freedesktop.org/drm/intel/issues/533> )
> 
> *	igt@kms_psr@primary_mmap_gtt:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-
> 1115g4/igt@kms_psr@primary_mmap_gtt.html>  (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072> ) +3 similar issues
> 
> *	igt@prime_vgem@basic-userptr:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@prime_vgem@basic-
> userptr.html>  (i915#3301
> <https://gitlab.freedesktop.org/drm/intel/issues/3301> )
> 
> *	igt@runner@aborted:
> 
> 	*	fi-kbl-soraka: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@runner@aborted.html>
> (i915#2426 <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 	*	fi-tgl-1115g4: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@runner@aborted.html>
> (i915#1602 <https://gitlab.freedesktop.org/drm/intel/issues/1602>  / i915#2722
> <https://gitlab.freedesktop.org/drm/intel/issues/2722> )
> 
> 	*	fi-skl-6700k2: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@runner@aborted.html>
> (i915#1436 <https://gitlab.freedesktop.org/drm/intel/issues/1436>  / i915#2426
> <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-skl-6700k2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html>
> (i915#4130 <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> 6700k2/igt@core_hotunplug@unbind-rebind.html>
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-skl-guc: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-skl-guc/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> guc/igt@i915_module_load@reload.html>
> 
> *	igt@kms_chamelium@hdmi-hpd-fast:
> 
> 	*	fi-icl-u2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html>  (i915#2203
> <https://gitlab.freedesktop.org/drm/intel/issues/2203>  / i915#2868
> <https://gitlab.freedesktop.org/drm/intel/issues/2868> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-
> u2/igt@kms_chamelium@hdmi-hpd-fast.html>
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Participating hosts (37 -> 35)
> 
> 
> Additional (2): fi-kbl-soraka fi-tgl-1115g4
> Missing (4): fi-bdw-samus fi-glk-dsi fi-bsw-cyan bat-dg1-6
> 
> 
> Build changes
> 
> 
> *	CI: CI-20190529 -> None
> *	IGT: IGT_6209 -> IGTPW_6221
> 
> CI-20190529: 20190529
> CI_DRM_10587: d21ca44c0ed9d8fcf70877a87c4b9941c4d07f85 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_6221: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
> IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev4)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
  2021-09-15  7:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
@ 2021-09-16  4:10 ` Patchwork
  2021-09-16  5:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  4:10 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 9890 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev4)
URL   : https://patchwork.freedesktop.org/series/93224/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10587 -> IGTPW_6221
====================================================

Summary
-------

  **WARNING**

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

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

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

### IGT changes ###

#### Warnings ####

  * igt@i915_module_load@reload:
    - fi-kbl-8809g:       [INCOMPLETE][1] ([i915#4136]) -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-kbl-8809g/igt@i915_module_load@reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-8809g/igt@i915_module_load@reload.html

  
#### Suppressed ####

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

  * igt@i915_module_load@reload:
    - {fi-jsl-1}:         [TIMEOUT][3] ([i915#4136]) -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-jsl-1/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-jsl-1/igt@i915_module_load@reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-tgl-1115g4:      NOTRUN -> [INCOMPLETE][5] ([i915#4130])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html
    - fi-icl-u2:          [PASS][6] -> [INCOMPLETE][7] ([i915#4130])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7500u:       [PASS][8] -> [INCOMPLETE][9] ([i915#4130])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][10] ([fdo#109271]) +8 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#2190])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][12] ([i915#2190])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html

  * igt@i915_module_load@reload:
    - fi-kbl-soraka:      NOTRUN -> [INCOMPLETE][13] ([i915#4136])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@i915_module_load@reload.html
    - fi-rkl-11600:       [PASS][14] -> [INCOMPLETE][15] ([i915#4136])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-rkl-11600/igt@i915_module_load@reload.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-rkl-11600/igt@i915_module_load@reload.html
    - fi-cfl-8109u:       [PASS][16] -> [DMESG-WARN][17] ([i915#4136])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-cfl-8109u/igt@i915_module_load@reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-cfl-8109u/igt@i915_module_load@reload.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][18] ([i915#1155])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@mman:
    - fi-skl-6700k2:      NOTRUN -> [INCOMPLETE][19] ([i915#3796] / [i915#4129])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@i915_selftest@live@mman.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][20] ([fdo#111827]) +8 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html
    - fi-kbl-soraka:      NOTRUN -> [SKIP][21] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][22] ([i915#4103]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][23] ([fdo#109285])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#533])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][25] ([i915#1072]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_psr@primary_mmap_gtt.html

  * igt@prime_vgem@basic-userptr:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][26] ([i915#3301])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-kbl-soraka:      NOTRUN -> [FAIL][27] ([i915#2426] / [i915#3363])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@runner@aborted.html
    - fi-tgl-1115g4:      NOTRUN -> [FAIL][28] ([i915#1602] / [i915#2722])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@runner@aborted.html
    - fi-skl-6700k2:      NOTRUN -> [FAIL][29] ([i915#1436] / [i915#2426] / [i915#3363])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-skl-6700k2:      [INCOMPLETE][30] ([i915#4130]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_module_load@reload:
    - fi-skl-guc:         [DMESG-WARN][32] ([i915#4136]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-skl-guc/igt@i915_module_load@reload.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-guc/igt@i915_module_load@reload.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          [DMESG-WARN][34] ([i915#2203] / [i915#2868]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3796]: https://gitlab.freedesktop.org/drm/intel/issues/3796
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4129]: https://gitlab.freedesktop.org/drm/intel/issues/4129
  [i915#4130]: https://gitlab.freedesktop.org/drm/intel/issues/4130
  [i915#4136]: https://gitlab.freedesktop.org/drm/intel/issues/4136
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


Participating hosts (37 -> 36)
------------------------------

  Additional (2): fi-kbl-soraka fi-tgl-1115g4 
  Missing    (3): fi-glk-dsi fi-bsw-cyan fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6209 -> IGTPW_6221

  CI-20190529: 20190529
  CI_DRM_10587: d21ca44c0ed9d8fcf70877a87c4b9941c4d07f85 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6221: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
  IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 12089 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4)
  2021-09-15 12:20   ` Modem, Bhanuprakash
@ 2021-09-16  4:15     ` Kattamanchi, JaswanthX
  0 siblings, 0 replies; 16+ messages in thread
From: Kattamanchi, JaswanthX @ 2021-09-16  4:15 UTC (permalink / raw)
  To: Modem, Bhanuprakash
  Cc: igt-dev, Vudum, Lakshminarayana, Naramasetti, LaxminarayanaX,
	Sai Nandan, YedireswarapuX

Hi Bhanu,

Re-reported

Patch : https://patchwork.freedesktop.org/series/93224/

Regards,
Jaswanth Kattamanchi

-----Original Message-----
From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> 
Sent: Wednesday, September 15, 2021 5:51 PM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>; Kattamanchi, JaswanthX <jaswanthx.kattamanchi@intel.com>
Subject: RE: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4)

Hi Lakshmi/Jaswanth

Can you please re-report below false-positive?

Thanks,
Bhanu

> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Wednesday, September 15, 2021 1:02 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms 
> tests to
> i915 directory (rev4)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev4)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
> 
> CI Bug Log - changes from CI_DRM_10587 -> IGTPW_6221
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6221 absolutely need to be 
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in IGTPW_6221, 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_6221/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6221:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-rkl-11600: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-rkl-11600/igt@i915_module_load@reload.html>  -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-rkl-
> 11600/igt@i915_module_load@reload.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-8809g: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-kbl-8809g/igt@i915_module_load@reload.html>  
> (i915#4136 <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> 8809g/igt@i915_module_load@reload.html>
> 
> 
> Suppressed
> 
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
> *	igt@i915_module_load@reload:
> 
> 	*	{fi-jsl-1}: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-jsl-1/igt@i915_module_load@reload.html>  
> (i915#4136 <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-jsl-
> 1/igt@i915_module_load@reload.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6221 that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@core_hotunplug@unb
> ind-
> rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-icl-u2: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html>  -> 
> INCOMPLETE 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-
> u2/igt@core_hotunplug@unbind-rebind.html>  (i915#4130 
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-kbl-7500u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html>  
> -> INCOMPLETE 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> 7500u/igt@core_hotunplug@unbind-rebind.html>  (i915#4130 
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> *	igt@gem_exec_fence@basic-busy@bcs0:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_exec_fence@bas
> ic-
> busy@bcs0.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +8 similar 
> issues
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@gem_huc_copy@huc-
> copy.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>
> / i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190> )
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@gem_huc_copy@huc-
> copy.html>  (i915#2190 
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>
> )
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-soraka: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> soraka/igt@i915_module_load@reload.html>  (i915#4136 
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> 	*	fi-cfl-8109u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-cfl-8109u/igt@i915_module_load@reload.html>  -> 
> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-cfl-
> 8109u/igt@i915_module_load@reload.html>  (i915#4136 
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_pm_backlight@basic-brightness:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@i915_pm_backlight@
> basic-
> brightness.html>  (i915#1155
> <https://gitlab.freedesktop.org/drm/intel/issues/1155> )
> 
> *	igt@i915_selftest@live@mman:
> 
> 	*	fi-skl-6700k2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> 6700k2/igt@i915_selftest@live@mman.html>  (i915#3796 
> <https://gitlab.freedesktop.org/drm/intel/issues/3796>  / i915#4129 
> <https://gitlab.freedesktop.org/drm/intel/issues/4129> )
> 
> *	igt@kms_chamelium@common-hpd-after-suspend:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_chamelium@comm
> on-hpd-
> after-suspend.html>  (fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +8 similar 
> issues
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@kms_chamelium@comm
> on-hpd-
> after-suspend.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / fdo#111827 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +8 similar 
> issues
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@kms_cursor_legacy@
> basic- busy-flip-before-cursor-atomic.html>  (i915#4103 
> <https://gitlab.freedesktop.org/drm/intel/issues/4103> ) +1 similar 
> issue
> 
> *	igt@kms_force_connector_basic@force-load-detect:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-
> 1115g4/igt@kms_force_connector_basic@force-load-detect.html>  
> (fdo#109285 <https://bugs.freedesktop.org/show_bug.cgi?id=109285> )
> 
> *	igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
> 
> 	*	fi-kbl-soraka: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-
> soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / 
> i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533> )
> 
> *	igt@kms_psr@primary_mmap_gtt:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-
> 1115g4/igt@kms_psr@primary_mmap_gtt.html>  (i915#1072 
> <https://gitlab.freedesktop.org/drm/intel/issues/1072> ) +3 similar 
> issues
> 
> *	igt@prime_vgem@basic-userptr:
> 
> 	*	fi-tgl-1115g4: NOTRUN -> SKIP <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@prime_vgem@basic-
> userptr.html>  (i915#3301
> <https://gitlab.freedesktop.org/drm/intel/issues/3301> )
> 
> *	igt@runner@aborted:
> 
> 	*	fi-kbl-soraka: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-kbl-soraka/igt@runner@aborted.htm
> l>
> (i915#2426 <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / 
> i915#3363 <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 	*	fi-tgl-1115g4: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-tgl-1115g4/igt@runner@aborted.htm
> l>
> (i915#1602 <https://gitlab.freedesktop.org/drm/intel/issues/1602>  / 
> i915#2722 <https://gitlab.freedesktop.org/drm/intel/issues/2722> )
> 
> 	*	fi-skl-6700k2: NOTRUN -> FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-6700k2/igt@runner@aborted.htm
> l>
> (i915#1436 <https://gitlab.freedesktop.org/drm/intel/issues/1436>  / 
> i915#2426 <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / 
> i915#3363 <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-skl-6700k2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html>
> (i915#4130 <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> 6700k2/igt@core_hotunplug@unbind-rebind.html>
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-skl-guc: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-skl-guc/igt@i915_module_load@reload.html>  
> (i915#4136 <https://gitlab.freedesktop.org/drm/intel/issues/4136> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-skl-
> guc/igt@i915_module_load@reload.html>
> 
> *	igt@kms_chamelium@hdmi-hpd-fast:
> 
> 	*	fi-icl-u2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10587/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html>  
> (i915#2203 <https://gitlab.freedesktop.org/drm/intel/issues/2203>  / 
> i915#2868 <https://gitlab.freedesktop.org/drm/intel/issues/2868> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/fi-icl-
> u2/igt@kms_chamelium@hdmi-hpd-fast.html>
> 
> {name}: This element is suppressed. This means it is ignored when 
> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Participating hosts (37 -> 35)
> 
> 
> Additional (2): fi-kbl-soraka fi-tgl-1115g4 Missing (4): fi-bdw-samus 
> fi-glk-dsi fi-bsw-cyan bat-dg1-6
> 
> 
> Build changes
> 
> 
> *	CI: CI-20190529 -> None
> *	IGT: IGT_6209 -> IGTPW_6221
> 
> CI-20190529: 20190529
> CI_DRM_10587: d21ca44c0ed9d8fcf70877a87c4b9941c4d07f85 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_6221: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/index.html
> IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
  2021-09-15  7:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
  2021-09-16  4:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-09-16  5:21 ` Patchwork
  2021-09-16  5:28   ` Modem, Bhanuprakash
  2021-09-16  5:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-09-16  5:21 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 7274 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10594 -> IGTPW_6223
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload:
    - fi-kbl-guc:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-guc/igt@i915_module_load@reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-guc/igt@i915_module_load@reload.html

  * igt@i915_selftest@live@requests:
    - fi-pnv-d510:        [PASS][3] -> [DMESG-FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-pnv-d510/igt@i915_selftest@live@requests.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-d510/igt@i915_selftest@live@requests.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-icl-y:           NOTRUN -> [SKIP][5] ([fdo#109315]) +17 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-rkl-11600:       [PASS][6] -> [INCOMPLETE][7] ([i915#4130])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7567u:       [PASS][8] -> [INCOMPLETE][9] ([i915#4130])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-cfl-8109u:       [PASS][10] -> [DMESG-WARN][11] ([i915#262] / [i915#295]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html

  * igt@i915_module_load@reload:
    - fi-icl-u2:          NOTRUN -> [INCOMPLETE][12] ([i915#4136])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@i915_module_load@reload.html

  * igt@i915_selftest@live@reset:
    - fi-cfl-guc:         NOTRUN -> [DMESG-FAIL][13] ([i915#2927])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@i915_selftest@live@reset.html

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][14] ([fdo#109271] / [i915#2403])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-d510/igt@runner@aborted.html
    - fi-icl-u2:          NOTRUN -> [FAIL][15] ([i915#2426] / [i915#3363] / [i915#3690])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@runner@aborted.html
    - fi-kbl-8809g:       NOTRUN -> [FAIL][16] ([i915#2722] / [i915#3363])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-8809g/igt@runner@aborted.html
    - fi-cfl-guc:         NOTRUN -> [FAIL][17] ([i915#2426] / [i915#3363])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-cfl-guc:         [INCOMPLETE][18] ([i915#4130]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
    - fi-icl-u2:          [INCOMPLETE][20] ([i915#4130]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_module_load@reload:
    - fi-icl-y:           [INCOMPLETE][22] -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-icl-y/igt@i915_module_load@reload.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-y/igt@i915_module_load@reload.html

  
#### Warnings ####

  * igt@i915_module_load@reload:
    - fi-kbl-8809g:       [INCOMPLETE][24] -> [INCOMPLETE][25] ([i915#4136])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-8809g/igt@i915_module_load@reload.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-8809g/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [SKIP][26] ([fdo#109271]) -> [FAIL][27] ([i915#579])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#4130]: https://gitlab.freedesktop.org/drm/intel/issues/4130
  [i915#4136]: https://gitlab.freedesktop.org/drm/intel/issues/4136
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (39 -> 35)
------------------------------

  Missing    (4): fi-kbl-soraka fi-skl-guc fi-bdw-samus bat-dg1-6 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6209 -> IGTPW_6223

  CI-20190529: 20190529
  CI_DRM_10594: b615e30a53680656e5b1f7670b34b1cac2a6be27 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6223: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
  IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 8812 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-16  5:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
@ 2021-09-16  5:28   ` Modem, Bhanuprakash
  2021-09-16  6:47     ` Kattamanchi, JaswanthX
  0 siblings, 1 reply; 16+ messages in thread
From: Modem, Bhanuprakash @ 2021-09-16  5:28 UTC (permalink / raw)
  To: igt-dev, Kattamanchi, JaswanthX

@Kattamanchi, JaswanthX Can you please re-report below false positive?


Thanks,
Bhanu

> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, September 16, 2021 10:52 AM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to
> i915 directory (rev5)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev5)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> 
> CI Bug Log - changes from CI_DRM_10594 -> IGTPW_6223
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6223 absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6223, 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_6223/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6223:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-guc: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-guc/igt@i915_module_load@reload.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> guc/igt@i915_module_load@reload.html>
> 
> *	igt@i915_selftest@live@requests:
> 
> 	*	fi-pnv-d510: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-pnv-d510/igt@i915_selftest@live@requests.html>  -> DMESG-
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-
> d510/igt@i915_selftest@live@requests.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6223 that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@amdgpu/amd_basic@semaphore:
> 
> 	*	fi-icl-y: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html>  (fdo#109315
> <https://bugs.freedesktop.org/show_bug.cgi?id=109315> ) +17 similar issues
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-rkl-11600: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-rkl-
> 11600/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-kbl-7567u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> 7567u/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> *	igt@gem_exec_suspend@basic-s0:
> 
> 	*	fi-cfl-8109u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html>  -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> 8109u/igt@gem_exec_suspend@basic-s0.html>  (i915#262
> <https://gitlab.freedesktop.org/drm/intel/issues/262>  / i915#295
> <https://gitlab.freedesktop.org/drm/intel/issues/295> ) +1 similar issue
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-icl-u2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@i915_module_load@reload.html>
> (i915#4136 <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_selftest@live@reset:
> 
> 	*	fi-cfl-guc: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> guc/igt@i915_selftest@live@reset.html>  (i915#2927
> <https://gitlab.freedesktop.org/drm/intel/issues/2927> )
> 
> *	igt@runner@aborted:
> 
> 	*	fi-pnv-d510: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-pnv-d510/igt@runner@aborted.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#2403
> <https://gitlab.freedesktop.org/drm/intel/issues/2403> )
> 
> 	*	fi-icl-u2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-icl-u2/igt@runner@aborted.html>  (i915#2426
> <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363
> <https://gitlab.freedesktop.org/drm/intel/issues/3363>  / i915#3690
> <https://gitlab.freedesktop.org/drm/intel/issues/3690> )
> 
> 	*	fi-kbl-8809g: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-kbl-8809g/igt@runner@aborted.html>  (i915#2722
> <https://gitlab.freedesktop.org/drm/intel/issues/2722>  / i915#3363
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 	*	fi-cfl-guc: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-cfl-guc/igt@runner@aborted.html>  (i915#2426
> <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-cfl-guc: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-icl-u2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html>  (i915#4130
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-
> u2/igt@core_hotunplug@unbind-rebind.html>
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-icl-y: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-icl-y/igt@i915_module_load@reload.html>  -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-
> y/igt@i915_module_load@reload.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-8809g: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-8809g/igt@i915_module_load@reload.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> 8809g/igt@i915_module_load@reload.html>  (i915#4136
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_pm_rpm@basic-rte:
> 
> 	*	fi-kbl-guc: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> guc/igt@i915_pm_rpm@basic-rte.html>  (i915#579
> <https://gitlab.freedesktop.org/drm/intel/issues/579> )
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Participating hosts (39 -> 35)
> 
> 
> Missing (4): fi-kbl-soraka fi-skl-guc fi-bdw-samus bat-dg1-6
> 
> 
> Build changes
> 
> 
> *	CI: CI-20190529 -> None
> *	IGT: IGT_6209 -> IGTPW_6223
> 
> CI-20190529: 20190529
> CI_DRM_10594: b615e30a53680656e5b1f7670b34b1cac2a6be27 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_6223: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2021-09-16  5:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
@ 2021-09-16  5:57 ` Patchwork
  2021-09-16  6:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  5:57 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30283 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev4)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10587_full -> IGTPW_6221_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@device_reset@unbind-reset-rebind.html

  * igt@i915_selftest@live@mman:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@i915_selftest@live@mman.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
    - shard-tglb:         [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][5] -> [FAIL][6] ([i915#2846])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([i915#2851])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-tglb:         [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][11] -> [FAIL][12] ([i915#2849])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][13] ([fdo#109313])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][14] ([fdo#109283])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb3/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][15] ([fdo#109283])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-tglb:         [PASS][16] -> [INCOMPLETE][17] ([i915#456])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb2/igt@gem_exec_suspend@basic-s0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#768])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@unsync-unmap-after-close:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([i915#3297])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb3/igt@gem_userptr_blits@unsync-unmap-after-close.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([fdo#109289])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([fdo#109289])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#2856]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#2856]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][24] ([i915#1804] / [i915#2684])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#110892])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#111644] / [i915#1397] / [i915#2411])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@system-suspend-modeset:
    - shard-kbl:          [PASS][27] -> [INCOMPLETE][28] ([i915#151])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl3/igt@i915_pm_rpm@system-suspend-modeset.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@i915_pm_rpm@system-suspend-modeset.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][29] ([i915#2373])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][30] ([i915#1759] / [i915#2291])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@mman:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][31] ([i915#4129])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@i915_selftest@live@mman.html
    - shard-iclb:         NOTRUN -> [INCOMPLETE][32] ([i915#4129])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb1/igt@i915_selftest@live@mman.html

  * igt@i915_suspend@forcewake:
    - shard-tglb:         [PASS][33] -> [INCOMPLETE][34] ([i915#2411] / [i915#456])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb1/igt@i915_suspend@forcewake.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@i915_suspend@forcewake.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3777]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#111614]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#111615])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#110723])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) +5 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3689] / [i915#3886]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3689]) +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs.html

  * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +7 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-kbl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +11 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#3116])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@lic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][48] ([i915#1319])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3319]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) +7 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][52] ([i915#180])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3359]) +5 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109278]) +15 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109274] / [fdo#109278]) +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_flip@2x-busy-flip:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +114 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_flip@2x-busy-flip.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109274]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
    - shard-iclb:         [PASS][58] -> [SKIP][59] ([i915#3701])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([fdo#111825]) +27 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109280]) +9 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][62] -> [DMESG-WARN][63] ([i915#180]) +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([i915#1187])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_invalid_dotclock:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109310])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb3/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][68] ([i915#265])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3536])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#112054]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#2920]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html
    - shard-iclb:         NOTRUN -> [SKIP][72] ([i915#658])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-kbl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109441]) +2 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb1/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-tglb:         NOTRUN -> [FAIL][76] ([i915#132] / [i915#3467]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#109309])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb7/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109309])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109502])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([i915#2437])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb8/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][81] ([i915#2437])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb2/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][82] ([i915#2530]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([i915#2530])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb8/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@prime_nv_api@i915_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109291]) +2 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb3/igt@prime_nv_api@i915_self_import.html

  * igt@sysfs_clients@create:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#2994]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@sysfs_clients@create.html

  * igt@sysfs_clients@split-10:
    - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2994])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl6/igt@sysfs_clients@split-10.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-iclb:         [TIMEOUT][87] ([i915#3070]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb4/igt@gem_eio@in-flight-contexts-10ms.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb8/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][89] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb7/igt@gem_eio@unwedge-stress.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb3/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [FAIL][91] ([i915#2842]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [FAIL][93] ([i915#2842]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl6/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [SKIP][95] ([i915#2190]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb6/igt@gem_huc_copy@huc-copy.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@gem_huc_copy@huc-copy.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][97] ([i915#456]) -> [PASS][98] +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb5/igt@gem_workarounds@suspend-resume-context.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb3/igt@gem_workarounds@suspend-resume-context.html
    - shard-iclb:         [INCOMPLETE][99] -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb6/igt@gem_workarounds@suspend-resume-context.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb2/igt@gem_workarounds@suspend-resume-context.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-kbl:          [INCOMPLETE][101] -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl6/igt@gen9_exec_parse@basic-rejected.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@gen9_exec_parse@basic-rejected.html

  * igt@kms_color@pipe-b-ctm-blue-to-red:
    - shard-iclb:         [INCOMPLETE][103] ([i915#1149]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb1/igt@kms_color@pipe-b-ctm-blue-to-red.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb4/igt@kms_color@pipe-b-ctm-blue-to-red.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [INCOMPLETE][105] ([i915#155] / [i915#180] / [i915#636]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][107] ([i915#180]) -> [PASS][108] +6 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglb:         [INCOMPLETE][109] -> [PASS][110] +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         [SKIP][111] ([fdo#109441]) -> [PASS][112] +2 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_cpu.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [DMESG-WARN][113] ([i915#180] / [i915#295]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [FAIL][115] ([i915#2842]) -> [FAIL][116] ([i915#2851])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb5/igt@gem_exec_fair@basic-pace@rcs0.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-tglb5/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [SKIP][117] ([i915#3288]) -> [FAIL][118] ([i915#3343])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-iclb:         [SKIP][119] ([i915#658]) -> [SKIP][120] ([i915#2920])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][121] ([i915#2920]) -> [SKIP][122] ([i915#658]) +2 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([fdo#109271] / [i915#1436] / [i915#180] / [i915#1814] / [i915#2722] / [i915#3002] / [i915#3363] / [i915#602] / [i915#92]) -> ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2426] / [i915#3002] / [i915#3363])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl3/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl1/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl7/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl1/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl1/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl6/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl1/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl3/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-kbl6/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl2/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl6/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl1/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl3/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-kbl7/igt@runner@aborted.html
    - shard-iclb:         ([FAIL][145], [FAIL][146]) ([i915#3002]) -> ([FAIL][147], [FAIL][148], [FAIL][149]) ([i915#2426] / [i915#3002] / [i915#3690])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb3/igt@runner@aborted.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-iclb8/igt@runner@aborted.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb1/igt@runner@aborted.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb1/igt@runner@aborted.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6221/shard-iclb6/igt@runner@aborted.html
    - shard-tglb:         ([FAIL][150], [FAIL][151]) ([i915#3002]) -> ([FAIL][152], [FAIL][153], [FAIL][154]) ([i915#1436] / [i915#1887] / [i915#2426] / [i915#2966] / [i915#3002] / [i915#3690])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10587/shard-tglb3/igt@runner@aborted.html

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 34066 bytes --]

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (3 preceding siblings ...)
  2021-09-16  5:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
@ 2021-09-16  6:32 ` Patchwork
  2021-09-16  7:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  6:32 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 6939 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10594 -> IGTPW_6223
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-icl-y:           NOTRUN -> [SKIP][1] ([fdo#109315]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html

  * igt@core_hotunplug@unbind-rebind:
    - fi-rkl-11600:       [PASS][2] -> [INCOMPLETE][3] ([i915#4130])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-7567u:       [PASS][4] -> [INCOMPLETE][5] ([i915#4130])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-cfl-8109u:       [PASS][6] -> [DMESG-WARN][7] ([i915#262] / [i915#295]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html

  * igt@i915_module_load@reload:
    - fi-icl-u2:          NOTRUN -> [INCOMPLETE][8] ([i915#4136])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@i915_module_load@reload.html
    - fi-kbl-guc:         [PASS][9] -> [INCOMPLETE][10] ([i915#4139])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-guc/igt@i915_module_load@reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-guc/igt@i915_module_load@reload.html

  * igt@i915_selftest@live@requests:
    - fi-pnv-d510:        [PASS][11] -> [DMESG-FAIL][12] ([i915#4140])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-pnv-d510/igt@i915_selftest@live@requests.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-d510/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@reset:
    - fi-cfl-guc:         NOTRUN -> [DMESG-FAIL][13] ([i915#2927])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@i915_selftest@live@reset.html

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][14] ([fdo#109271] / [i915#2403])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-d510/igt@runner@aborted.html
    - fi-icl-u2:          NOTRUN -> [FAIL][15] ([i915#2426] / [i915#3363] / [i915#3690])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@runner@aborted.html
    - fi-kbl-8809g:       NOTRUN -> [FAIL][16] ([i915#2722] / [i915#3363])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-8809g/igt@runner@aborted.html
    - fi-cfl-guc:         NOTRUN -> [FAIL][17] ([i915#2426] / [i915#3363])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-cfl-guc:         [INCOMPLETE][18] ([i915#4130]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html
    - fi-icl-u2:          [INCOMPLETE][20] ([i915#4130]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html

  * igt@i915_module_load@reload:
    - fi-icl-y:           [INCOMPLETE][22] -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-icl-y/igt@i915_module_load@reload.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-y/igt@i915_module_load@reload.html

  
#### Warnings ####

  * igt@i915_module_load@reload:
    - fi-kbl-8809g:       [INCOMPLETE][24] -> [INCOMPLETE][25] ([i915#4136])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-8809g/igt@i915_module_load@reload.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-8809g/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [SKIP][26] ([fdo#109271]) -> [FAIL][27] ([i915#579])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#4130]: https://gitlab.freedesktop.org/drm/intel/issues/4130
  [i915#4136]: https://gitlab.freedesktop.org/drm/intel/issues/4136
  [i915#4139]: https://gitlab.freedesktop.org/drm/intel/issues/4139
  [i915#4140]: https://gitlab.freedesktop.org/drm/intel/issues/4140
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (39 -> 35)
------------------------------

  Missing    (4): fi-kbl-soraka fi-skl-guc fi-bdw-samus bat-dg1-6 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6209 -> IGTPW_6223

  CI-20190529: 20190529
  CI_DRM_10594: b615e30a53680656e5b1f7670b34b1cac2a6be27 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6223: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
  IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 8447 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-16  5:28   ` Modem, Bhanuprakash
@ 2021-09-16  6:47     ` Kattamanchi, JaswanthX
  0 siblings, 0 replies; 16+ messages in thread
From: Kattamanchi, JaswanthX @ 2021-09-16  6:47 UTC (permalink / raw)
  To: Modem, Bhanuprakash, igt-dev; +Cc: Naramasetti, LaxminarayanaX

Hi Bhanu,

Re-reported

Patch : https://patchwork.freedesktop.org/series/93224/

Regards,
Jaswanth kattamanchi

-----Original Message-----
From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> 
Sent: Thursday, September 16, 2021 10:58 AM
To: igt-dev@lists.freedesktop.org; Kattamanchi, JaswanthX <jaswanthx.kattamanchi@intel.com>
Subject: RE: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)

@Kattamanchi, JaswanthX Can you please re-report below false positive?


Thanks,
Bhanu

> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, September 16, 2021 10:52 AM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms 
> tests to
> i915 directory (rev5)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev5)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> 
> CI Bug Log - changes from CI_DRM_10594 -> IGTPW_6223
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6223 absolutely need to be 
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in IGTPW_6223, 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_6223/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6223:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-guc: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-guc/igt@i915_module_load@reload.html>  -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> guc/igt@i915_module_load@reload.html>
> 
> *	igt@i915_selftest@live@requests:
> 
> 	*	fi-pnv-d510: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-pnv-d510/igt@i915_selftest@live@requests.html>  -> 
> DMESG- FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-pnv-
> d510/igt@i915_selftest@live@requests.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6223 that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@amdgpu/amd_basic@semaphore:
> 
> 	*	fi-icl-y: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html>  
> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315> ) 
> +17 similar issues
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-rkl-11600: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-rkl-11600/igt@core_hotunplug@unbind-rebind.html>  
> -> INCOMPLETE 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-rkl-
> 11600/igt@core_hotunplug@unbind-rebind.html>  (i915#4130 
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> 	*	fi-kbl-7567u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html>  
> -> INCOMPLETE 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> 7567u/igt@core_hotunplug@unbind-rebind.html>  (i915#4130 
> <https://gitlab.freedesktop.org/drm/intel/issues/4130> )
> 
> *	igt@gem_exec_suspend@basic-s0:
> 
> 	*	fi-cfl-8109u: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html>  -> 
> DMESG- WARN 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> 8109u/igt@gem_exec_suspend@basic-s0.html>  (i915#262 
> <https://gitlab.freedesktop.org/drm/intel/issues/262>  / i915#295 
> <https://gitlab.freedesktop.org/drm/intel/issues/295> ) +1 similar 
> issue
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-icl-u2: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-u2/igt@i915_module_load@reloa
> d.html>
> (i915#4136 <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_selftest@live@reset:
> 
> 	*	fi-cfl-guc: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> guc/igt@i915_selftest@live@reset.html>  (i915#2927 
> <https://gitlab.freedesktop.org/drm/intel/issues/2927> )
> 
> *	igt@runner@aborted:
> 
> 	*	fi-pnv-d510: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-pnv-d510/igt@runner@aborted.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / i915#2403 
> <https://gitlab.freedesktop.org/drm/intel/issues/2403> )
> 
> 	*	fi-icl-u2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-icl-u2/igt@runner@aborted.html>  (i915#2426 
> <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363 
> <https://gitlab.freedesktop.org/drm/intel/issues/3363>  / i915#3690 
> <https://gitlab.freedesktop.org/drm/intel/issues/3690> )
> 
> 	*	fi-kbl-8809g: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-kbl-8809g/igt@runner@aborted.html>  (i915#2722 
> <https://gitlab.freedesktop.org/drm/intel/issues/2722>  / i915#3363 
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 	*	fi-cfl-guc: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/fi-cfl-guc/igt@runner@aborted.html>  (i915#2426 
> <https://gitlab.freedesktop.org/drm/intel/issues/2426>  / i915#3363 
> <https://gitlab.freedesktop.org/drm/intel/issues/3363> )
> 
> 
> Possible fixes
> 
> 
> *	igt@core_hotunplug@unbind-rebind:
> 
> 	*	fi-cfl-guc: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-cfl-guc/igt@core_hotunplug@unbind-rebind.html>  
> (i915#4130 <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-cfl-
> guc/igt@core_hotunplug@unbind-rebind.html>
> 
> 	*	fi-icl-u2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html>  
> (i915#4130 <https://gitlab.freedesktop.org/drm/intel/issues/4130> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-
> u2/igt@core_hotunplug@unbind-rebind.html>
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-icl-y: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-icl-y/igt@i915_module_load@reload.html>  -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-icl-
> y/igt@i915_module_load@reload.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_module_load@reload:
> 
> 	*	fi-kbl-8809g: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-8809g/igt@i915_module_load@reload.html>  -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> 8809g/igt@i915_module_load@reload.html>  (i915#4136 
> <https://gitlab.freedesktop.org/drm/intel/issues/4136> )
> 
> *	igt@i915_pm_rpm@basic-rte:
> 
> 	*	fi-kbl-guc: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html>  
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) -> 
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/fi-kbl-
> guc/igt@i915_pm_rpm@basic-rte.html>  (i915#579 
> <https://gitlab.freedesktop.org/drm/intel/issues/579> )
> 
> {name}: This element is suppressed. This means it is ignored when 
> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
> Participating hosts (39 -> 35)
> 
> 
> Missing (4): fi-kbl-soraka fi-skl-guc fi-bdw-samus bat-dg1-6
> 
> 
> Build changes
> 
> 
> *	CI: CI-20190529 -> None
> *	IGT: IGT_6209 -> IGTPW_6223
> 
> CI-20190529: 20190529
> CI_DRM_10594: b615e30a53680656e5b1f7670b34b1cac2a6be27 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_6223: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> IGT_6209: 07d6594ed02f55b68d64fa6dd7f80cfbc1ce4ef8 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (4 preceding siblings ...)
  2021-09-16  6:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
@ 2021-09-16  7:31 ` Patchwork
  2021-09-16  7:59   ` Modem, Bhanuprakash
  2021-09-16  8:25 ` Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2021-09-16  7:31 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30283 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@drm_read@short-buffer-wakeup.html

  
#### Warnings ####

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][3] ([fdo#110892]) -> [SKIP][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][5] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_su@page_flip.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +6 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][11] -> [FAIL][12] ([i915#2842]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][16] ([fdo#109283])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][17] ([fdo#109283])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][18] -> [INCOMPLETE][19] ([i915#1895])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][20] -> [SKIP][21] ([i915#2190])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#768])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#3297]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109289])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([fdo#109289]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#2856]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#2856])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#3288])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1937])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][30] ([i915#1804] / [i915#2684])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#110892])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][32] ([i915#2373])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][33] ([i915#1759] / [i915#2291])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][34] ([i915#180]) +2 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#111614]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3777]) +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#110723])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#111615])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) +4 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +7 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3689]) +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#3689] / [i915#3886]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][44] ([fdo#109271]) +162 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-75:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#109279] / [i915#3359]) +7 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109278] / [fdo#109279])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3319])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3359]) +5 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278]) +16 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#4103])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][56] ([i915#2411] / [i915#456])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          [PASS][57] -> [INCOMPLETE][58] ([i915#155] / [i915#180] / [i915#636])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109274]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#2672])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#111825]) +26 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109280]) +11 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][63] -> [SKIP][64] ([i915#433])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglb:         [PASS][65] -> [INCOMPLETE][66] ([i915#1373] / [i915#2828])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_invalid_dotclock:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109310])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-kbl:          NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#3536]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([fdo#112054])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([i915#658])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#2920]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#658]) +3 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109441])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][76] ([i915#132] / [i915#3467]) +3 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-iclb:         [PASS][77] -> [SKIP][78] ([fdo#109441])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@kms_psr@suspend:
    - shard-tglb:         [PASS][79] -> [INCOMPLETE][80] ([i915#456])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_psr@suspend.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109309])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109309])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
    - shard-tglb:         [PASS][83] -> [SKIP][84] ([i915#2411])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([fdo#109502]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109502])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#2437])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#2437])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#2530]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#2530]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@prime_nv_api@nv_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([fdo#109291]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html

  * igt@sysfs_clients@recycle-many:
    - shard-kbl:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2994]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][93] ([i915#658]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [FAIL][95] ([i915#2842]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][97] ([i915#456]) -> [PASS][98] +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.html
    - shard-iclb:         [INCOMPLETE][99] -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-context.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-tglb:         [INCOMPLETE][101] ([i915#2411] / [i915#2828] / [i915#456]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [DMESG-WARN][103] ([i915#180]) -> [PASS][104] +6 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][105] ([fdo#109441]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [FAIL][107] ([i915#3343]) -> [SKIP][108] ([i915#3288])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][109] ([i915#2920]) -> [SKIP][110] ([i915#658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][111] ([i915#658]) -> [SKIP][112] ([i915#2920]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
    - shard-iclb:         ([FAIL][138], [FAIL][139]) ([i915#3002]) -> ([FAIL][140], [FAIL][141]) ([i915#1814] / [i915#2722] / [i915#3002])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109310]: https://bugs.freedesktop.org/show_bug.cgi?id=109310
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 35600 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-16  7:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-16  7:59   ` Modem, Bhanuprakash
  2021-09-16  9:03     ` Kattamanchi, JaswanthX
  0 siblings, 1 reply; 16+ messages in thread
From: Modem, Bhanuprakash @ 2021-09-16  7:59 UTC (permalink / raw)
  To: igt-dev, Kattamanchi, JaswanthX

@Kattamanchi, JaswanthX can you please re-report below false positive?

Thanks,
Bhanu

> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, September 16, 2021 1:02 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to
> i915 directory (rev5)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev5)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> 
> CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6223_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6223_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_6223/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6223_full:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@drm_read@short-buffer-wakeup:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb6/igt@drm_read@short-buffer-wakeup.html>  +1 similar issue
> 
> 
> Warnings
> 
> 
> *	igt@i915_pm_rpm@modeset-non-lpsp:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html>
> (fdo#110892 <https://bugs.freedesktop.org/show_bug.cgi?id=110892> ) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html>
> 
> *	igt@kms_psr2_su@page_flip:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html>  (fdo#109642
> <https://bugs.freedesktop.org/show_bug.cgi?id=109642>  / fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068>  / [i915#658]) -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@kms_psr2_su@page_flip.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6223_full that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@gem_ctx_isolation@preservation-s3@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html>
> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html>  ([i915#180]) +6 similar
> issues
> 
> *	igt@gem_exec_fair@basic-none-share@rcs0:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-none@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl1/igt@gem_exec_fair@basic-none@vcs0.html>  ([i915#2842]) +2 similar issues
> 
> *	igt@gem_exec_fair@basic-pace-share@rcs0:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> )
> 
> *	igt@gem_exec_params@no-vebox:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html>  (fdo#109283
> <https://bugs.freedesktop.org/show_bug.cgi?id=109283> )
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html>  (fdo#109283
> <https://bugs.freedesktop.org/show_bug.cgi?id=109283> )
> 
> *	igt@gem_exec_whisper@basic-contexts-priority:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-
> priority.html>  -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priority.html>
> ([i915#1895])
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb7/igt@gem_huc_copy@huc-copy.html>  ([i915#2190])
> 
> *	igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-
> tiled.html>  ([i915#768])
> 
> *	igt@gem_userptr_blits@unsync-unmap-cycles:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> ([i915#3297]) +1 similar issue
> 
> *	igt@gen3_render_linear_blits:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html>  (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289> )
> 
> *	igt@gen7_exec_parse@basic-rejected:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html>
> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289> ) +1 similar
> issue
> 
> *	igt@gen9_exec_parse@basic-rejected:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html>
> ([i915#2856]) +1 similar issue
> 
> *	igt@gen9_exec_parse@bb-secure:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html>  ([i915#2856])
> 
> *	igt@i915_pm_dc@dc9-dpms:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html>  ([i915#3288])
> 
> *	igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#1937])
> 
> *	igt@i915_pm_rc6_residency@rc6-idle:
> 
> 	*	shard-iclb: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html>
> ([i915#1804] / [i915#2684])
> 
> *	igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html>
> (fdo#110892 <https://bugs.freedesktop.org/show_bug.cgi?id=110892> )
> 
> *	igt@i915_selftest@live@gt_lrc:
> 
> 	*	shard-tglb: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb5/igt@i915_selftest@live@gt_lrc.html>  ([i915#2373])
> 
> *	igt@i915_selftest@live@gt_pm:
> 
> 	*	shard-tglb: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb5/igt@i915_selftest@live@gt_pm.html>  (i915#1759
> <https://gitlab.freedesktop.org/drm/intel/issues>  / [i915#2291])
> 
> *	igt@i915_suspend@sysfs-reader:
> 
> 	*	shard-kbl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-
> reader.html>  ([i915#180]) +2 similar issues
> 
> *	igt@kms_big_fb@linear-32bpp-rotate-90:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html>
> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> ) +2 similar
> issues
> 
> *	igt@kms_big_fb@x-tiled-32bpp-rotate-270:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html>
> (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725>  /
> fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> ) +1 similar
> issue
> 
> *	igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-
> 180-hflip.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#3777]) +2
> similar issues
> 
> *	igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html>
> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723> )
> 
> *	igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-
> 180-hflip-async-flip.html>  (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615> )
> 
> *	igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  / [i915#3886]) +4
> similar issues
> 
> *	igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#3886]) +7
> similar issues
> 
> *	igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-
> yf_tiled_ccs.html>  ([i915#3689]) +3 similar issues
> 
> *	igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-
> y_tiled_gen12_mc_ccs.html>  ([i915#3689] / [i915#3886]) +1 similar issue
> 
> *	igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +162 similar issues
> 
> *	igt@kms_chamelium@hdmi-audio-edid:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +12 similar issues
> 
> *	igt@kms_chamelium@hdmi-cmp-planar-formats:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html>
> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>  /
> fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +5 similar
> issues
> 
> *	igt@kms_color_chamelium@pipe-d-ctm-0-75:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.html>
> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  /
> fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>  / fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827> )
> 
> *	igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamma-lut-
> sizes.html>  (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>
> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +10
> similar issues
> 
> *	igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-
> random.html>  (fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>  / [i915#3359]) +7
> similar issues
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-
> random.html>  (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  / fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279> )
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-
> onscreen.html>  ([i915#3319])
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-
> movement.html>  ([i915#3359]) +5 similar issues
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-
> sliding.html>  (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> ) +16 similar issues
> 
> *	igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-
> vs-cursor-atomic.html>  (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>  / fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> ) +3 similar issues
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-
> cursor-atomic.html>  ([i915#4103])
> 
> *	igt@kms_fbcon_fbt@fbc-suspend:
> 
> 	*	shard-tglb: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-
> suspend.html>  ([i915#2411] / [i915#456])
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl1/igt@kms_fbcon_fbt@fbc-suspend.html>  (i915#155
> <https://gitlab.freedesktop.org/drm/intel/issues/155>  / [i915#180] /
> [i915#636])
> 
> *	igt@kms_flip@2x-plain-flip-ts-check:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html>
> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> ) +1 similar
> issue
> 
> *	igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-
> ytilegen12rcccs.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#2672])
> 
> *	igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-
> indfb-plflip-blt.html>  (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> ) +26 similar issues
> 
> *	igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-
> shrfb-draw-blt.html>  (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280> ) +11 similar issues
> 
> *	igt@kms_hdmi_inject@inject-audio:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb6/igt@kms_hdmi_inject@inject-audio.html>  ([i915#433])
> 
> *	igt@kms_hdr@bpc-switch-suspend:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb7/igt@kms_hdr@bpc-switch-suspend.html>  (i915#1373
> <https://gitlab.freedesktop.org/drm/intel/issues/1373>  / [i915#2828])
> 
> *	igt@kms_invalid_dotclock:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html>  (fdo#109310
> <https://bugs.freedesktop.org/show_bug.cgi?id=109310> )
> 
> *	igt@kms_pipe_crc_basic@read-crc-pipe-d:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#533])
> 
> *	igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-
> max.html>  (fdo#108145 <https://bugs.freedesktop.org/show_bug.cgi?id=108145>
> / [i915#265])
> 
> *	igt@kms_plane_lowres@pipe-d-tiling-x:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html>
> ([i915#3536]) +1 similar issue
> 
> *	igt@kms_plane_lowres@pipe-d-tiling-yf:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html>
> (fdo#112054 <https://bugs.freedesktop.org/show_bug.cgi?id=112054> )
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-
> 5.html>  ([i915#658])
> 
> *	igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-
> 2.html>  ([i915#2920]) +1 similar issue
> 
> *	igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#658]) +3 similar issues
> 
> *	igt@kms_psr@psr2_cursor_render:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html>  (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441> )
> 
> *	igt@kms_psr@psr2_primary_mmap_gtt:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html>  (i915#132
> <https://gitlab.freedesktop.org/drm/intel/issues/132>  / [i915#3467]) +3
> similar issues
> 
> *	igt@kms_psr@psr2_sprite_mmap_cpu:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html>  (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441> )
> 
> *	igt@kms_psr@suspend:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb3/igt@kms_psr@suspend.html>  ([i915#456])
> 
> *	igt@kms_tv_load_detect@load-detect:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html>
> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309> )
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html>
> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309> )
> 
> *	igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-
> rpm.html>  -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html>  ([i915#2411])
> 
> *	igt@kms_vrr@flip-basic:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html>  (fdo#109502
> <https://bugs.freedesktop.org/show_bug.cgi?id=109502> ) +1 similar issue
> 
> *	igt@kms_vrr@flip-suspend:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html>  (fdo#109502
> <https://bugs.freedesktop.org/show_bug.cgi?id=109502> )
> 
> *	igt@kms_writeback@writeback-check-output:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.html>
> ([i915#2437])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.html>
> ([i915#2437])
> 
> *	igt@nouveau_crc@pipe-a-source-rg:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html>
> ([i915#2530]) +1 similar issue
> 
> *	igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-
> frame.html>  ([i915#2530]) +1 similar issue
> 
> *	igt@prime_nv_api@nv_self_import:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html>  (fdo#109291
> <https://bugs.freedesktop.org/show_bug.cgi?id=109291> ) +1 similar issue
> 
> *	igt@sysfs_clients@recycle-many:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#2994]) +1
> similar issue
> 
> 
> Possible fixes
> 
> 
> *	igt@feature_discovery@psr2:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html>  ([i915#658]) ->
> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@feature_discovery@psr2.html>
> 
> *	igt@gem_exec_fair@basic-pace@rcs0:
> 
> 	*	shard-tglb: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html>
> ([i915#2842]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html>
> 
> *	igt@gem_workarounds@suspend-resume-context:
> 
> 	*	shard-tglb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html>
> ([i915#456]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.html>
> +1 similar issue
> 
> 	*	shard-iclb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-context.html>
> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb4/igt@gem_workarounds@suspend-resume-context.html>
> 
> *	igt@kms_cursor_crc@pipe-a-cursor-suspend:
> 
> 	*	shard-tglb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html>
> ([i915#2411] / [i915#2828] / [i915#456]) -> PASS <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-a-
> cursor-suspend.html>
> 
> *	igt@kms_hdr@bpc-switch-suspend:
> 
> 	*	shard-kbl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html>  ([i915#180])
> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl6/igt@kms_hdr@bpc-switch-suspend.html>  +6 similar issues
> 
> *	igt@kms_psr@psr2_cursor_plane_onoff:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441> ) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_pm_dc@dc9-dpms:
> 
> 	*	shard-iclb: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html>  ([i915#3343]) ->
> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb3/igt@i915_pm_dc@dc9-dpms.html>  ([i915#3288])
> 
> *	igt@kms_psr2_sf@cursor-plane-update-sf:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html>
> ([i915#2920]) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html>
> ([i915#658])
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-
> 2.html>  ([i915#658]) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-
> 2.html>  ([i915#2920]) +1 similar issue
> 
> *	igt@runner@aborted:
> 
> 	*	shard-kbl: (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html> , FAIL <https://intel-
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html> ,
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl1/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html> , FAIL <https://intel-
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html> ,
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl1/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html> , FAIL <https://intel-
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html> ,
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl6/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html> , FAIL <https://intel-
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html> ,
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl6/igt@runner@aborted.html> ) (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#180] /
> [i915#1814] / [i915#3002] / [i915#3363]) -> (FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> , FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl7/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> , FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> )
> (i915#1436 <https://gitlab.freedesktop.org/drm/intel/issues/1436>  /
> [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
> 
> 	*	shard-iclb: (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html> , FAIL <https://intel-
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted.html> )
> ([i915#3002]) -> (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html> , FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html> )
> ([i915#1814] / [i915#2722] / [i915#3002])


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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (5 preceding siblings ...)
  2021-09-16  7:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-16  8:25 ` Patchwork
  2021-09-16  8:46 ` Patchwork
  2021-09-16  9:01 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  8:25 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30283 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@pipe-d-ts-continuation-suspend:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][3] ([fdo#110892]) -> [SKIP][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][5] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_su@page_flip.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-tglb:         [PASS][7] -> [INCOMPLETE][8] ([i915#4147])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          [PASS][9] -> [DMESG-WARN][10] ([i915#180]) +6 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +2 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][16] -> [SKIP][17] ([fdo#109271])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([fdo#109283])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#109283])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][20] -> [INCOMPLETE][21] ([i915#1895])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][22] -> [SKIP][23] ([i915#2190])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#768])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#3297]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([fdo#109289])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109289]) +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#2856]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#2856])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#3288])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1937])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][32] ([i915#1804] / [i915#2684])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#110892])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][34] ([i915#2373])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][35] ([i915#1759] / [i915#2291])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][36] ([i915#180]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#111614]) +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3777]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111615])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#3886]) +4 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +7 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#3689]) +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#3689] / [i915#3886]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][46] ([fdo#109271]) +162 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-75:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) +7 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109278] / [fdo#109279])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3319])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#3359]) +5 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109278]) +16 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([i915#4103])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][58] ([i915#2411] / [i915#456])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          [PASS][59] -> [INCOMPLETE][60] ([i915#155] / [i915#180] / [i915#636])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109274]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#2672])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#111825]) +26 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +11 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][65] -> [SKIP][66] ([i915#433])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglb:         [PASS][67] -> [INCOMPLETE][68] ([i915#1373] / [i915#2828])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_invalid_dotclock:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109310])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#533])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-kbl:          NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#3536]) +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([fdo#112054])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([i915#658])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#2920]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) +3 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([fdo#109441])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][78] ([i915#132] / [i915#3467]) +3 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html

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

  * igt@kms_psr@suspend:
    - shard-tglb:         [PASS][81] -> [INCOMPLETE][82] ([i915#456])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_psr@suspend.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([fdo#109309])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109309])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
    - shard-tglb:         [PASS][85] -> [SKIP][86] ([i915#2411])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([fdo#109502]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109502])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#2437])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#2437])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([i915#2530]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#2530]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@prime_nv_api@nv_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([fdo#109291]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html

  * igt@sysfs_clients@recycle-many:
    - shard-kbl:          NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#2994]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][95] ([i915#658]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [FAIL][97] ([i915#2842]) -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][99] ([i915#456]) -> [PASS][100] +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.html
    - shard-iclb:         [INCOMPLETE][101] -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-context.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-tglb:         [INCOMPLETE][103] ([i915#2411] / [i915#2828] / [i915#456]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [DMESG-WARN][105] ([i915#180]) -> [PASS][106] +6 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][107] ([fdo#109441]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [FAIL][109] ([i915#3343]) -> [SKIP][110] ([i915#3288])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][111] ([i915#2920]) -> [SKIP][112] ([i915#658])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][113] ([i915#658]) -> [SKIP][114] ([i915#2920]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
    - shard-iclb:         ([FAIL][140], [FAIL][141]) ([i915#3002]) -> ([FAIL][142], [FAIL][143]) ([i915#1814] / [i915#2722] / [i915#3002])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109310]: https://bugs.freedesktop.org/show_bug.cgi?id=109310
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedeskt

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 35643 bytes --]

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (6 preceding siblings ...)
  2021-09-16  8:25 ` Patchwork
@ 2021-09-16  8:46 ` Patchwork
  2021-09-16  9:01 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  8:46 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30283 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@pipe-d-ts-continuation-suspend:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-tglb:         [PASS][3] -> [INCOMPLETE][4] ([i915#4147])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          [PASS][5] -> [DMESG-WARN][6] ([i915#180]) +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][7] -> [FAIL][8] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][9] -> [FAIL][10] ([i915#2842]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][12] -> [SKIP][13] ([fdo#109271])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][14] ([fdo#109283])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][15] ([fdo#109283])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][16] -> [INCOMPLETE][17] ([i915#1895])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][18] -> [SKIP][19] ([i915#2190])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([i915#768])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([i915#3297]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#109289])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([fdo#109289]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2856]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#2856])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#3288])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#1937])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][28] ([i915#1804] / [i915#2684])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110892])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][30] ([i915#2373])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][31] ([i915#1759] / [i915#2291])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][32] ([i915#180]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#111614]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3777]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#110723])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#111615])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#109278] / [i915#3886]) +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +7 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([i915#3689]) +3 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3689] / [i915#3886]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][42] ([fdo#109271]) +162 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-75:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109279] / [i915#3359]) +7 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109278] / [fdo#109279])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3319])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3359]) +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278]) +16 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#4103])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][54] ([i915#2411] / [i915#456])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          [PASS][55] -> [INCOMPLETE][56] ([i915#155] / [i915#180] / [i915#636])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109274]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#2672])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#111825]) +26 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#109280]) +11 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][61] -> [SKIP][62] ([i915#433])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglb:         [PASS][63] -> [INCOMPLETE][64] ([i915#1373] / [i915#2828])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_invalid_dotclock:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109310])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-kbl:          NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#3536]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([fdo#112054])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#658])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#2920]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +3 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109441])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][74] ([i915#132] / [i915#3467]) +3 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-iclb:         [PASS][75] -> [SKIP][76] ([fdo#109441])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@kms_psr@suspend:
    - shard-tglb:         [PASS][77] -> [INCOMPLETE][78] ([i915#456])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_psr@suspend.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109309])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109309])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
    - shard-tglb:         [PASS][81] -> [SKIP][82] ([i915#2411])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([fdo#109502]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109502])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#2437])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#2437])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#2530]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#2530]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@prime_nv_api@nv_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([fdo#109291]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html

  * igt@sysfs_clients@recycle-many:
    - shard-kbl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][91] ([i915#658]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [FAIL][93] ([i915#2842]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][95] ([i915#456]) -> [PASS][96] +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.html
    - shard-iclb:         [INCOMPLETE][97] -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-context.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-tglb:         [INCOMPLETE][99] ([i915#2411] / [i915#2828] / [i915#456]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [DMESG-WARN][101] ([i915#180]) -> [PASS][102] +6 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][103] ([fdo#109441]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [FAIL][105] ([i915#3343]) -> [SKIP][106] ([i915#3288])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][107] ([fdo#110892]) -> [SKIP][108] ([i915#579])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][109] ([i915#2920]) -> [SKIP][110] ([i915#658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][111] ([i915#658]) -> [SKIP][112] ([i915#2920]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][113] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][114] ([i915#4148])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
    - shard-iclb:         ([FAIL][140], [FAIL][141]) ([i915#3002]) -> ([FAIL][142], [FAIL][143]) ([i915#1814] / [i915#2722] / [i915#3002])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109310]: https://bugs.freedesktop.org/show_bug.cgi?id=109310
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freed

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 35634 bytes --]

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
                   ` (7 preceding siblings ...)
  2021-09-16  8:46 ` Patchwork
@ 2021-09-16  9:01 ` Patchwork
  8 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2021-09-16  9:01 UTC (permalink / raw)
  To: Modem, Bhanuprakash; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30283 bytes --]

== Series Details ==

Series: tests/kms: Move Intel specific kms tests to i915 directory (rev5)
URL   : https://patchwork.freedesktop.org/series/93224/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_read@short-buffer-wakeup:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] ([i915#4147])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@drm_read@short-buffer-wakeup.html

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          [PASS][3] -> [DMESG-WARN][4] ([i915#180]) +6 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][5] -> [FAIL][6] ([i915#2842])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([i915#2842]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][9] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][12] ([fdo#109283])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][13] ([fdo#109283])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_whisper@basic-contexts-priority:
    - shard-iclb:         [PASS][14] -> [INCOMPLETE][15] ([i915#1895])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-priority.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priority.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][16] -> [SKIP][17] ([i915#2190])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#768])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([i915#3297]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([fdo#109289])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@basic-rejected:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([fdo#109289]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([i915#2856]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#2856])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#3288])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-kbl:          NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1937])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][26] ([i915#1804] / [i915#2684])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#110892])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_selftest@live@gt_lrc:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][28] ([i915#2373])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][29] ([i915#1759] / [i915#2291])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][30] ([i915#180]) +2 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111614]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3777]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#110723])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#111615])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109278] / [i915#3886]) +4 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +7 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#3689]) +3 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3689] / [i915#3886]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][40] ([fdo#109271]) +162 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_chamelium@hdmi-audio-edid:
    - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-75:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +10 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109279] / [i915#3359]) +7 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#109278] / [fdo#109279])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#3319])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#3359]) +5 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109278]) +16 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109274] / [fdo#109278]) +3 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#4103])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][52] ([i915#2411] / [i915#456])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          [PASS][53] -> [INCOMPLETE][54] ([i915#155] / [i915#180] / [i915#636])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109274]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#2672])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111825]) +26 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109280]) +11 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [PASS][59] -> [SKIP][60] ([i915#433])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglb:         [PASS][61] -> [INCOMPLETE][62] ([i915#1373] / [i915#2828])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_invalid_dotclock:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109310])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-kbl:          NOTRUN -> [FAIL][65] ([fdo#108145] / [i915#265])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3536]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#112054])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([i915#658])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#2920]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-kbl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) +3 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109441])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][72] ([i915#132] / [i915#3467]) +3 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-iclb:         [PASS][73] -> [SKIP][74] ([fdo#109441])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@kms_psr@suspend:
    - shard-tglb:         [PASS][75] -> [INCOMPLETE][76] ([i915#456])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb3/igt@kms_psr@suspend.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([fdo#109309])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109309])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
    - shard-tglb:         [PASS][79] -> [SKIP][80] ([i915#2411])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html

  * igt@kms_vblank@pipe-d-ts-continuation-suspend:
    - shard-tglb:         [PASS][81] -> [INCOMPLETE][82] ([i915#3896])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([fdo#109502]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109502])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#2437])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.html
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#2437])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#2530]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#2530]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@prime_nv_api@nv_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([fdo#109291]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html

  * igt@sysfs_clients@recycle-many:
    - shard-kbl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][91] ([i915#658]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-tglb:         [FAIL][93] ([i915#2842]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][95] ([i915#456]) -> [PASS][96] +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.html
    - shard-iclb:         [INCOMPLETE][97] -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-context.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-tglb:         [INCOMPLETE][99] ([i915#2411] / [i915#2828] / [i915#456]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [DMESG-WARN][101] ([i915#180]) -> [PASS][102] +6 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][103] ([fdo#109441]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [FAIL][105] ([i915#3343]) -> [SKIP][106] ([i915#3288])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][107] ([fdo#110892]) -> [SKIP][108] ([i915#579])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][109] ([i915#2920]) -> [SKIP][110] ([i915#658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][111] ([i915#658]) -> [SKIP][112] ([i915#2920]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][113] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][114] ([i915#4148])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl3/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html
    - shard-iclb:         ([FAIL][140], [FAIL][141]) ([i915#3002]) -> ([FAIL][142], [FAIL][143]) ([i915#1814] / [i915#2722] / [i915#3002])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109310]: https://bugs.freedesktop.org/show_bug.cgi?id=109310
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1804]: https://gitlab.

== Logs ==

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

[-- Attachment #2: Type: text/html, Size: 35919 bytes --]

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)
  2021-09-16  7:59   ` Modem, Bhanuprakash
@ 2021-09-16  9:03     ` Kattamanchi, JaswanthX
  0 siblings, 0 replies; 16+ messages in thread
From: Kattamanchi, JaswanthX @ 2021-09-16  9:03 UTC (permalink / raw)
  To: Modem, Bhanuprakash, igt-dev; +Cc: Naramasetti, LaxminarayanaX

Hi Bhanu,

Re-reported

Patch : https://patchwork.freedesktop.org/series/93224/

Regards,
Jaswanth kattamanchi

-----Original Message-----
From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> 
Sent: Thursday, September 16, 2021 1:29 PM
To: igt-dev@lists.freedesktop.org; Kattamanchi, JaswanthX <jaswanthx.kattamanchi@intel.com>
Subject: RE: ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5)

@Kattamanchi, JaswanthX can you please re-report below false positive?

Thanks,
Bhanu

> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Thursday, September 16, 2021 1:02 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Cc: igt-dev@lists.freedesktop.org
> Subject: ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms 
> tests to
> i915 directory (rev5)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev5)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/index.html
> 
> CI Bug Log - changes from CI_DRM_10594_full -> IGTPW_6223_full
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6223_full absolutely need to 
> be verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in IGTPW_6223_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_6223/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6223_full:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@drm_read@short-buffer-wakeup:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb1/igt@drm_read@short-buffer-wakeup.html>  
> -> INCOMPLETE 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb6/igt@drm_read@short-buffer-wakeup.html>  +1 similar issue
> 
> 
> Warnings
> 
> 
> *	igt@i915_pm_rpm@modeset-non-lpsp:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@i915_pm_rpm@modeset-non-lpsp.html>
> (fdo#110892 <https://bugs.freedesktop.org/show_bug.cgi?id=110892> ) -> 
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb4/igt@i915_pm_rpm@modeset-non-lpsp.html>
> 
> *	igt@kms_psr2_su@page_flip:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb4/igt@kms_psr2_su@page_flip.html>  
> (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642>  / 
> fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>  / 
> [i915#658]) -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@kms_psr2_su@page_flip.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6223_full that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@gem_ctx_isolation@preservation-s3@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@vcs0
> .html>
> -> DMESG-WARN 
> -> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html>  ([i915#180]) +6 
> similar issues
> 
> *	igt@gem_exec_fair@basic-none-share@rcs0:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.h
> tml>  -> FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-none@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html>  
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl1/igt@gem_exec_fair@basic-none@vcs0.html>  ([i915#2842]) +2 similar 
> issues
> 
> *	igt@gem_exec_fair@basic-pace-share@rcs0:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.htm
> l>
> ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace@vcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>  
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> )
> 
> *	igt@gem_exec_params@no-vebox:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@gem_exec_params@no-vebox.html>  
> (fdo#109283 <https://bugs.freedesktop.org/show_bug.cgi?id=109283> )
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@gem_exec_params@no-vebox.html>  
> (fdo#109283 <https://bugs.freedesktop.org/show_bug.cgi?id=109283> )
> 
> *	igt@gem_exec_whisper@basic-contexts-priority:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb7/igt@gem_exec_whisper@basic-contexts-
> priority.html>  -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gem_exec_whisper@basic-contexts-priorit
> y.html>
> ([i915#1895])
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb3/igt@gem_huc_copy@huc-copy.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb7/igt@gem_huc_copy@huc-copy.html>  ([i915#2190])
> 
> *	igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebo
> x-y-
> tiled.html>  ([i915#768])
> 
> *	igt@gem_userptr_blits@unsync-unmap-cycles:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@gem_userptr_blits@unsync-unmap-cycles.h
> tml>
> ([i915#3297]) +1 similar issue
> 
> *	igt@gen3_render_linear_blits:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@gen3_render_linear_blits.html>  
> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289> )
> 
> *	igt@gen7_exec_parse@basic-rejected:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@gen7_exec_parse@basic-rejected.html>
> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289> ) +1 
> similar issue
> 
> *	igt@gen9_exec_parse@basic-rejected:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@gen9_exec_parse@basic-rejected.html>
> ([i915#2856]) +1 similar issue
> 
> *	igt@gen9_exec_parse@bb-secure:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@gen9_exec_parse@bb-secure.html>  
> ([i915#2856])
> 
> *	igt@i915_pm_dc@dc9-dpms:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html>  
> ([i915#3288])
> 
> *	igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#1937])
> 
> *	igt@i915_pm_rc6_residency@rc6-idle:
> 
> 	*	shard-iclb: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@i915_pm_rc6_residency@rc6-idle.html>
> ([i915#1804] / [i915#2684])
> 
> *	igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.ht
> ml>
> (fdo#110892 <https://bugs.freedesktop.org/show_bug.cgi?id=110892> )
> 
> *	igt@i915_selftest@live@gt_lrc:
> 
> 	*	shard-tglb: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb5/igt@i915_selftest@live@gt_lrc.html>  ([i915#2373])
> 
> *	igt@i915_selftest@live@gt_pm:
> 
> 	*	shard-tglb: NOTRUN -> DMESG-FAIL <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb5/igt@i915_selftest@live@gt_pm.html>  (i915#1759 
> <https://gitlab.freedesktop.org/drm/intel/issues>  / [i915#2291])
> 
> *	igt@i915_suspend@sysfs-reader:
> 
> 	*	shard-kbl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@i915_suspend@sysfs-
> reader.html>  ([i915#180]) +2 similar issues
> 
> *	igt@kms_big_fb@linear-32bpp-rotate-90:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@kms_big_fb@linear-32bpp-rotate-90.html>
> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> ) +2 
> similar issues
> 
> *	igt@kms_big_fb@x-tiled-32bpp-rotate-270:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.htm
> l>
> (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725>  /
> fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> ) +1 
> similar issue
> 
> *	igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-r
> otate-
> 180-hflip.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#3777]) 
> +2 similar issues
> 
> *	igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.htm
> l>
> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723> )
> 
> *	igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp
> -rotate- 180-hflip-async-flip.html>  (fdo#111615 
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615> )
> 
> *	igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_ccs@pipe-a-bad-aux-stride-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109278 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  / [i915#3886]) 
> +4 similar issues
> 
> *	igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl4/igt@kms_ccs@pipe-a-random-ccs-data-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#3886]) 
> +7 similar issues
> 
> *	igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-a-random-ccs-data-
> yf_tiled_ccs.html>  ([i915#3689]) +3 similar issues
> 
> *	igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@kms_ccs@pipe-c-missing-ccs-buffer-
> y_tiled_gen12_mc_ccs.html>  ([i915#3689] / [i915#3886]) +1 similar 
> issue
> 
> *	igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl6/igt@kms_ccs@pipe-d-missing-ccs-buffer-
> y_tiled_gen12_rc_ccs_cc.html>  (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> ) +162 similar 
> issues
> 
> *	igt@kms_chamelium@hdmi-audio-edid:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_chamelium@hdmi-audio-edid.html>  
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / 
> fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +12 
> similar issues
> 
> *	igt@kms_chamelium@hdmi-cmp-planar-formats:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_chamelium@hdmi-cmp-planar-formats.h
> tml>
> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>  /
> fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) +5 
> similar issues
> 
> *	igt@kms_color_chamelium@pipe-d-ctm-0-75:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-75.htm
> l>
> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  /
> fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>  / 
> fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> )
> 
> *	igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_color_chamelium@pipe-invalid-degamm
> a-lut- sizes.html>  (fdo#109284 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284>
> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827> ) 
> +10 similar issues
> 
> *	igt@kms_cursor_crc@pipe-c-cursor-512x512-random:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-
> random.html>  (fdo#109279
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279>  / [i915#3359]) 
> +7 similar issues
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@kms_cursor_crc@pipe-c-cursor-512x512-
> random.html>  (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>  / fdo#109279 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109279> )
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_crc@pipe-d-cursor-32x32-
> onscreen.html>  ([i915#3319])
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-ra
> pid- movement.html>  ([i915#3359]) +5 similar issues
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-
> sliding.html>  (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> ) +16 similar 
> issues
> 
> *	igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_cursor_legacy@2x-long-nonblocking-m
> odeset-
> vs-cursor-atomic.html>  (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>  / fdo#109278 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> ) +3 similar 
> issues
> 
> *	igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-befor
> e-
> cursor-atomic.html>  ([i915#4103])
> 
> *	igt@kms_fbcon_fbt@fbc-suspend:
> 
> 	*	shard-tglb: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb7/igt@kms_fbcon_fbt@fbc-
> suspend.html>  ([i915#2411] / [i915#456])
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html>  -> 
> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl1/igt@kms_fbcon_fbt@fbc-suspend.html>  (i915#155 
> <https://gitlab.freedesktop.org/drm/intel/issues/155>  / [i915#180] /
> [i915#636])
> 
> *	igt@kms_flip@2x-plain-flip-ts-check:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_flip@2x-plain-flip-ts-check.html>
> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> ) +1 
> similar issue
> 
> *	igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-
> 32bpp-
> ytilegen12rcccs.html>  (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#2672])
> 
> *	igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scnd
> scrn-
> indfb-plflip-blt.html>  (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> ) +26 similar 
> issues
> 
> *	igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscr
> n-pri-
> shrfb-draw-blt.html>  (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280> ) +11 similar 
> issues
> 
> *	igt@kms_hdmi_inject@inject-audio:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html>  
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb6/igt@kms_hdmi_inject@inject-audio.html>  ([i915#433])
> 
> *	igt@kms_hdr@bpc-switch-suspend:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb5/igt@kms_hdr@bpc-switch-suspend.html>  -> 
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb7/igt@kms_hdr@bpc-switch-suspend.html>  (i915#1373 
> <https://gitlab.freedesktop.org/drm/intel/issues/1373>  / [i915#2828])
> 
> *	igt@kms_invalid_dotclock:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb1/igt@kms_invalid_dotclock.html>  (fdo#109310 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109310> )
> 
> *	igt@kms_pipe_crc_basic@read-crc-pipe-d:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#533])
> 
> *	igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-constant-al
> pha- max.html>  (fdo#108145 
> <https://bugs.freedesktop.org/show_bug.cgi?id=108145>
> / [i915#265])
> 
> *	igt@kms_plane_lowres@pipe-d-tiling-x:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-x.html>
> ([i915#3536]) +1 similar issue
> 
> *	igt@kms_plane_lowres@pipe-d-tiling-yf:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html>
> (fdo#112054 <https://bugs.freedesktop.org/show_bug.cgi?id=112054> )
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg
> -area-
> 5.html>  ([i915#658])
> 
> *	igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_psr2_sf@overlay-primary-update-sf-d
> mg-area- 2.html>  ([i915#2920]) +1 similar issue
> 
> *	igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.htm
> l>
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  /
> [i915#658]) +3 similar issues
> 
> *	igt@kms_psr@psr2_cursor_render:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_psr@psr2_cursor_render.html>  
> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441> )
> 
> *	igt@kms_psr@psr2_primary_mmap_gtt:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb5/igt@kms_psr@psr2_primary_mmap_gtt.html>  
> (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132>  / 
> [i915#3467]) +3 similar issues
> 
> *	igt@kms_psr@psr2_sprite_mmap_cpu:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html>  
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb8/igt@kms_psr@psr2_sprite_mmap_cpu.html>  (fdo#109441 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441> )
> 
> *	igt@kms_psr@suspend:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb2/igt@kms_psr@suspend.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb3/igt@kms_psr@suspend.html>  ([i915#456])
> 
> *	igt@kms_tv_load_detect@load-detect:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@kms_tv_load_detect@load-detect.html>
> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309> )
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb6/igt@kms_tv_load_detect@load-detect.html>
> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309> )
> 
> *	igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb1/igt@kms_vblank@pipe-d-ts-continuation-mod
> eset- rpm.html>  -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> tglb2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html>  
> ([i915#2411])
> 
> *	igt@kms_vrr@flip-basic:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb7/igt@kms_vrr@flip-basic.html>  (fdo#109502 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109502> ) +1 similar 
> issue
> 
> *	igt@kms_vrr@flip-suspend:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@kms_vrr@flip-suspend.html>  (fdo#109502 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109502> )
> 
> *	igt@kms_writeback@writeback-check-output:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb3/igt@kms_writeback@writeback-check-output.ht
> ml>
> ([i915#2437])
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@kms_writeback@writeback-check-output.ht
> ml>
> ([i915#2437])
> 
> *	igt@nouveau_crc@pipe-a-source-rg:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb5/igt@nouveau_crc@pipe-a-source-rg.html>
> ([i915#2530]) +1 similar issue
> 
> *	igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-skip-curren
> t- frame.html>  ([i915#2530]) +1 similar issue
> 
> *	igt@prime_nv_api@nv_self_import:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb6/igt@prime_nv_api@nv_self_import.html>  
> (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291> ) +1 
> similar issue
> 
> *	igt@sysfs_clients@recycle-many:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl2/igt@sysfs_clients@recycle-many.html>  
> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / 
> [i915#2994]) +1 similar issue
> 
> 
> Possible fixes
> 
> 
> *	igt@feature_discovery@psr2:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@feature_discovery@psr2.html>  
> ([i915#658]) -> PASS 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@feature_discovery@psr2.html>
> 
> *	igt@gem_exec_fair@basic-pace@rcs0:
> 
> 	*	shard-tglb: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb2/igt@gem_exec_fair@basic-pace@rcs0.html>
> ([i915#2842]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb8/igt@gem_exec_fair@basic-pace@rcs0.html>
> 
> *	igt@gem_workarounds@suspend-resume-context:
> 
> 	*	shard-tglb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb6/igt@gem_workarounds@suspend-resume-contex
> t.html>
> ([i915#456]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-tglb1/igt@gem_workarounds@suspend-resume-context.
> html>
> +1 similar issue
> 
> 	*	shard-iclb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb8/igt@gem_workarounds@suspend-resume-contex
> t.html>
> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb4/igt@gem_workarounds@suspend-resume-context.html>
> 
> *	igt@kms_cursor_crc@pipe-a-cursor-suspend:
> 
> 	*	shard-tglb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-suspend.
> html> ([i915#2411] / [i915#2828] / [i915#456]) -> PASS 
> <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-tglb1/igt@kms_cursor_crc@pipe-
> a-
> cursor-suspend.html>
> 
> *	igt@kms_hdr@bpc-switch-suspend:
> 
> 	*	shard-kbl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html>  
> ([i915#180])
> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl6/igt@kms_hdr@bpc-switch-suspend.html>  +6 similar issues
> 
> *	igt@kms_psr@psr2_cursor_plane_onoff:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441> ) -> 
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_pm_dc@dc9-dpms:
> 
> 	*	shard-iclb: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html>  
> ([i915#3343]) -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> iclb3/igt@i915_pm_dc@dc9-dpms.html>  ([i915#3288])
> 
> *	igt@kms_psr2_sf@cursor-plane-update-sf:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.ht
> ml>
> ([i915#2920]) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb8/igt@kms_psr2_sf@cursor-plane-update-sf.html
> >
> ([i915#658])
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-d
> mg-area- 2.html>  ([i915#658]) -> SKIP 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg
> -area- 2.html>  ([i915#2920]) +1 similar issue
> 
> *	igt@runner@aborted:
> 
> 	*	shard-kbl: (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl3/igt@runner@aborted.html> , FAIL 
> <https://intel- 
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.
> html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel- 
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.
> html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl7/igt@runner@aborted.html> , FAIL 
> <https://intel- 
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.
> html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl6/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel- 
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-kbl6/igt@runner@aborted.
> html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-
> kbl6/igt@runner@aborted.html> ) (fdo#109271 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>  / [i915#180] / 
> [i915#1814] / [i915#3002] / [i915#3363]) -> (FAIL <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl6/igt@runner@aborted.html> 
> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> 
> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> 
> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl7/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl1/igt@runner@aborted.html> 
> , FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6223/shard-
> kbl3/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-kbl7/igt@runner@aborted.html> 
> )
> (i915#1436 <https://gitlab.freedesktop.org/drm/intel/issues/1436>  / 
> [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#92])
> 
> 	*	shard-iclb: (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10594/shard-iclb4/igt@runner@aborted.html> , FAIL 
> <https://intel- 
> gfx-ci.01.org/tree/drm-tip/CI_DRM_10594/shard-iclb3/igt@runner@aborted
> .html> )
> ([i915#3002]) -> (FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6223/shard-iclb4/igt@runner@aborted.html> , FAIL 
> <https://intel-gfx- 
> ci.01.org/tree/drm-tip/IGTPW_6223/shard-iclb8/igt@runner@aborted.html> 
> ) ([i915#1814] / [i915#2722] / [i915#3002])


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

end of thread, other threads:[~2021-09-16  9:03 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15  6:39 [igt-dev] [i-g-t v4] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
2021-09-15  7:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
2021-09-15 12:20   ` Modem, Bhanuprakash
2021-09-16  4:15     ` Kattamanchi, JaswanthX
2021-09-16  4:10 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2021-09-16  5:21 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
2021-09-16  5:28   ` Modem, Bhanuprakash
2021-09-16  6:47     ` Kattamanchi, JaswanthX
2021-09-16  5:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev4) Patchwork
2021-09-16  6:32 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev5) Patchwork
2021-09-16  7:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-09-16  7:59   ` Modem, Bhanuprakash
2021-09-16  9:03     ` Kattamanchi, JaswanthX
2021-09-16  8:25 ` Patchwork
2021-09-16  8:46 ` Patchwork
2021-09-16  9:01 ` [igt-dev] ✓ Fi.CI.IGT: success " 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.