All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory
@ 2021-09-12 16:01 Bhanuprakash Modem
  2021-09-12 16:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev3) Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Bhanuprakash Modem @ 2021-09-12 16:01 UTC (permalink / raw)
  To: igt-dev
  Cc: Bhanuprakash Modem, Ville Syrjälä,
	Mark Yacoub, Petri Latvala, Vidya Srinivas, Karthik B S

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)

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>
---
 tests/{ => i915}/kms_big_fb.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_big_joiner.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                 | 10 ++++--
 tests/meson.build                           | 38 ++++++++++-----------
 28 files changed, 47 insertions(+), 43 deletions(-)
 rename tests/{ => i915}/kms_big_fb.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_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_big_joiner.c b/tests/kms_big_joiner.c
index 4f1f3152e..45c5b2a2a 100644
--- a/tests/kms_big_joiner.c
+++ b/tests/kms_big_joiner.c
@@ -258,7 +258,7 @@ igt_main
 	uint16_t width = 0, height = 0;
 
 	igt_fixture {
-		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
 		kmstest_set_vt_graphics_mode();
 
 		igt_display_require(&data.display, data.drm_fd);
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..ea9bd9a56 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -107,7 +107,7 @@ functional_test_fini(functional_test_t *test, igt_output_t *output)
 	igt_remove_fb(test->data->drm_fd, &test->red_fb);
 	igt_remove_fb(test->data->drm_fd, &test->yellow_fb);
 
-	igt_output_set_pipe(output, PIPE_ANY);
+	igt_output_set_pipe(output, PIPE_NONE);
 	igt_display_commit2(&test->data->display, COMMIT_LEGACY);
 }
 
@@ -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..3c1b70259 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -19,11 +19,7 @@ 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 +28,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 +47,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 +217,25 @@ i915_progs = [
 	'i915_query',
 	'i915_selftest',
 	'i915_suspend',
+	'kms_big_fb',
+	'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] 5+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev3)
  2021-09-12 16:01 [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
@ 2021-09-12 16:36 ` Patchwork
  2021-09-12 17:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2021-09-15  5:54 ` [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Karthik B S
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-09-12 16:36 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10572 -> IGTPW_6212
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s0:
    - fi-bsw-kefka:       [PASS][1] -> [INCOMPLETE][2] ([i915#2539])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/fi-bsw-kefka/igt@gem_exec_suspend@basic-s0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/fi-bsw-kefka/igt@gem_exec_suspend@basic-s0.html

  * igt@i915_selftest@live@hangcheck:
    - fi-snb-2600:        [PASS][3] -> [INCOMPLETE][4] ([i915#3921])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/fi-snb-2600/igt@i915_selftest@live@hangcheck.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-1115g4:      [FAIL][5] ([i915#1888]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html

  * igt@kms_flip@basic-plain-flip@c-dp1:
    - fi-cfl-8109u:       [FAIL][7] -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/fi-cfl-8109u/igt@kms_flip@basic-plain-flip@c-dp1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/fi-cfl-8109u/igt@kms_flip@basic-plain-flip@c-dp1.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b:
    - fi-cfl-8109u:       [DMESG-WARN][9] ([i915#295]) -> [PASS][10] +14 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html

  
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2539]: https://gitlab.freedesktop.org/drm/intel/issues/2539
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921


Participating hosts (45 -> 38)
------------------------------

  Missing    (7): bat-adls-5 bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-4 bat-jsl-2 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6203 -> IGTPW_6212

  CI-20190529: 20190529
  CI_DRM_10572: 553c65b37c702d3b472afb9aa9dcc203afb6a903 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6212: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/index.html
  IGT_6203: 64452a46b57ca4ef35eb65a547df8ed1b131e8f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev3)
  2021-09-12 16:01 [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
  2021-09-12 16:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev3) Patchwork
@ 2021-09-12 17:33 ` Patchwork
  2021-09-13  3:57   ` Modem, Bhanuprakash
  2021-09-15  5:54 ` [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Karthik B S
  2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2021-09-12 17:33 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10572_full -> IGTPW_6212_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_suspend@basic-s3:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb6/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@gem_exec_suspend@basic-s3.html

  * igt@kms_vblank@pipe-d-ts-continuation-suspend:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][4] ([i915#3002])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb8/igt@gem_create@create-massive.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([fdo#109314])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +2 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl4/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
    - shard-glk:          [PASS][13] -> [FAIL][14] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#2842]) +5 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][16] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#2849])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_mmap_offset@clear:
    - shard-iclb:         [PASS][19] -> [FAIL][20] ([i915#3160])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-iclb5/igt@gem_mmap_offset@clear.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb7/igt@gem_mmap_offset@clear.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> [WARN][21] ([i915#2658])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk1/igt@gem_pwrite@basic-exhaustion.html

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

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][23] ([fdo#109271]) +179 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3323])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@input-checking:
    - shard-glk:          NOTRUN -> [DMESG-WARN][25] ([i915#3002]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk4/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-kbl:          NOTRUN -> [FAIL][26] ([i915#3318])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl3/igt@gem_userptr_blits@vma-merge.html

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109289])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb8/igt@gen3_render_tiledy_blits.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#2856]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb5/igt@gen9_exec_parse@bb-large.html

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

  * igt@i915_query@query-topology-unsupported:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109302])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@i915_query@query-topology-unsupported.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-glk:          NOTRUN -> [DMESG-WARN][32] ([i915#118] / [i915#95]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#111614])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3777]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3777])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) +8 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk1/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +10 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +8 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3689] / [i915#3886])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb8/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3689]) +9 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271]) +224 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl8/igt@kms_cdclk@mode-transition.html
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#3742])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb1/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium@hdmi-hpd-storm:
    - shard-kbl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl7/igt@kms_chamelium@hdmi-hpd-storm.html

  * igt@kms_chamelium@hdmi-mode-timings:
    - shard-snb:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +22 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-snb2/igt@kms_chamelium@hdmi-mode-timings.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl2/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb7/igt@kms_color_chamelium@pipe-b-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-75:
    - shard-glk:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk2/igt@kms_color_chamelium@pipe-d-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb5/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-kbl:          NOTRUN -> [TIMEOUT][50] ([i915#1319]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@srm:
    - shard-apl:          NOTRUN -> [TIMEOUT][51] ([i915#1319])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl7/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> [FAIL][52] ([i915#2105])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl4/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3319]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-32x32-rapid-movement.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([fdo#109279] / [i915#3359]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-512x170-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#3359]) +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-suspend:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +188 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@kms_cursor_crc@pipe-d-cursor-suspend.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111825]) +19 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled:
    - shard-glk:          [PASS][58] -> [FAIL][59] ([i915#3451])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk4/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk7/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][60] -> [INCOMPLETE][61] ([i915#180])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109274])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][63] -> [DMESG-WARN][64] ([i915#180]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][65] ([i915#180]) +2 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl6/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([i915#3701])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109280])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
    - shard-snb:          NOTRUN -> [SKIP][70] ([fdo#109271]) +352 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
    - shard-glk:          [PASS][71] -> [FAIL][72] ([i915#1888] / [i915#2546])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][73] -> [DMESG-WARN][74] ([i915#180]) +5 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html

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

  * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
    - shard-apl:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) +2 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl1/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html

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

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][79] ([i915#265])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][80] ([i915#265])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html

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

  * igt@kms_plane_lowres@pipe-c-tiling-none:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#3536])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-none.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2733])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-glk:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +3 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#2920])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109441])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html

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

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][92] -> [SKIP][93] ([fdo#109441]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb1/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#111615]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][95] ([i915#180] / [i915#295])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][96] ([i915#155] / [i915#2828])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
    - shard-iclb:         NOTRUN -> [SKIP][97] ([i915#2530])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb1/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html

  * igt@nouveau_crc@pipe-d-source-outp-complete:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([i915#2530])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb2/igt@nouveau_crc@pipe-d-source-outp-complete.html

  * igt@prime_nv_api@i915_self_import:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([fdo#109291])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb8/igt@prime_nv_api@i915_self_import.html

  * igt@sysfs_clients@recycle:
    - shard-apl:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#2994])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl3/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@sema-50:
    - shard-kbl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2994]) +3 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@sysfs_clients@sema-50.html
    - shard-glk:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk6/igt@sysfs_clients@sema-50.html

  
#### Possible fixes ####

  * igt@drm_import_export@flink:
    - shard-glk:          [INCOMPLETE][103] ([i915#2369]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk9/igt@drm_import_export@flink.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk2/igt@drm_import_export@flink.html

  * igt@drm_import_export@prime:
    - shard-glk:          [INCOMPLETE][105] ([i915#2055] / [i915#2944]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk1/igt@drm_import_export@prime.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk3/igt@drm_import_export@prime.html

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-tglb:         [TIMEOUT][107] ([i915#3063]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb8/igt@gem_eio@in-flight-contexts-10ms.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][109] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb2/igt@gem_eio@unwedge-stress.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][111] ([i915#2842]) -> [PASS][112] +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-apl:          [FAIL][113] ([i915#2842]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-apl:          [FAIL][115] ([i915#2842] / [i915#3468]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [FAIL][117] ([i915#2842]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-glk:          [INCOMPLETE][119] ([i915#2944]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk5/igt@gem_exec_flush@basic-wb-ro-before-default.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk8/igt@gem_exec_flush@basic-wb-ro-before-default.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [SKIP][121] ([i915#2190]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb6/igt@gem_huc_copy@huc-copy.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb2/igt@gem_huc_copy@huc-copy.html

  * igt@gem_workarounds@suspend-resume:
    - shard-kbl:          [INCOMPLETE][123] ([i915#155]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl4/igt@gem_workarounds@suspend-resume.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl1/igt@gem_workarounds@suspend-resume.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][125] ([i915#180]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-180:
    - shard-glk:          [DMESG-WARN][127] ([i915#118] / [i915#95]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk6/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-tglb:         [INCOMPLETE][129] ([i915#2411] / [i915#456]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
    - shard-kbl:          [DMESG-WARN][131] ([i915#180]) -> [PASS][132] +2 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [SKIP][133] ([fdo#109441]) -> [PASS][134] +1 similar issue
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_rotation_crc@cursor-rotation-180:
    - shard-glk:          [FAIL][135] ([i915#65]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/shard-glk6/igt@kms_rotation_crc@cursor-rotation-180.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk2/igt@kms_rotation_crc@cursor-rotation-180.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][137] ([i915#1804] / [i915#2684]) -> [WARN][138] ([i915#2684])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10572/s

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Move Intel specific kms tests to i915 directory (rev3)
  2021-09-12 17:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-13  3:57   ` Modem, Bhanuprakash
  0 siblings, 0 replies; 5+ messages in thread
From: Modem, Bhanuprakash @ 2021-09-13  3:57 UTC (permalink / raw)
  To: igt-dev, Vudum, Lakshminarayana

Hi Lakshmi,

Can you please re-report below false positive?


Thanks,
Bhanu

> -----Original Message-----
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Sunday, September 12, 2021 11:03 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 (rev3)
> 
> Patch Details
> Series:	tests/kms: Move Intel specific kms tests to i915 directory (rev3)
> URL:	https://patchwork.freedesktop.org/series/93224/
> State:	failure
> Details:	https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/index.html
> 
> CI Bug Log - changes from CI_DRM_10572_full -> IGTPW_6212_full
> 
> 
> Summary
> 
> 
> FAILURE
> 
> Serious unknown changes coming with IGTPW_6212_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6212_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_6212/index.html
> 
> 
> Possible new issues
> 
> 
> Here are the unknown changes that may have been introduced in IGTPW_6212_full:
> 
> 
> IGT changes
> 
> 
> Possible regressions
> 
> 
> *	igt@gem_exec_suspend@basic-s3:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb6/igt@gem_exec_suspend@basic-s3.html>  ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> tglb7/igt@gem_exec_suspend@basic-s3.html>  +1 similar issue
> 
> *	igt@kms_vblank@pipe-d-ts-continuation-suspend:
> 
> 	*	shard-tglb: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb7/igt@kms_vblank@pipe-d-ts-
> continuation-suspend.html>
> 
> 
> Known issues
> 
> 
> Here are the changes found in IGTPW_6212_full that come from known issues:
> 
> 
> IGT changes
> 
> 
> Issues hit
> 
> 
> *	igt@gem_create@create-massive:
> 
> 	*	shard-tglb: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-tglb8/igt@gem_create@create-
> massive.html>  ([i915#3002])
> 
> *	igt@gem_ctx_param@set-priority-not-supported:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb7/igt@gem_ctx_param@set-priority-not-supported.html>
> ([fdo#109314])
> 
> *	igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-
> preempt.html>  ([fdo#109271] / [i915#1099]) +2 similar issues
> 
> *	igt@gem_exec_fair@basic-deadline:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl7/igt@gem_exec_fair@basic-deadline.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> kbl3/igt@gem_exec_fair@basic-deadline.html>  ([i915#2846])
> 
> *	igt@gem_exec_fair@basic-none-vip@rcs0:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl4/igt@gem_exec_fair@basic-none-vip@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> kbl6/igt@gem_exec_fair@basic-none-vip@rcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace-share@rcs0:
> 
> 	*	shard-tglb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ([i915#2842])
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html>  ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-pace@bcs0:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html>
> ([i915#2842]) +5 similar issues
> 
> *	igt@gem_exec_fair@basic-pace@rcs0:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html>
> ([i915#2842])
> 
> *	igt@gem_exec_fair@basic-throttle@rcs0:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html>  ->
> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html>  ([i915#2849])
> 
> *	igt@gem_mmap_offset@clear:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb5/igt@gem_mmap_offset@clear.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> iclb7/igt@gem_mmap_offset@clear.html>  ([i915#3160])
> 
> *	igt@gem_pwrite@basic-exhaustion:
> 
> 	*	shard-glk: NOTRUN -> WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk1/igt@gem_pwrite@basic-exhaustion.html>  ([i915#2658])
> 
> *	igt@gem_render_copy@y-tiled-to-vebox-linear:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb6/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> ([i915#768])
> 
> *	igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-
> tiled.html>  ([fdo#109271]) +179 similar issues
> 
> *	igt@gem_userptr_blits@dmabuf-sync:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html>
> ([fdo#109271] / [i915#3323])
> 
> *	igt@gem_userptr_blits@input-checking:
> 
> 	*	shard-glk: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk4/igt@gem_userptr_blits@input-
> checking.html>  ([i915#3002]) +1 similar issue
> 
> *	igt@gem_userptr_blits@vma-merge:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl3/igt@gem_userptr_blits@vma-merge.html>  ([i915#3318])
> 
> *	igt@gen3_render_tiledy_blits:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb8/igt@gen3_render_tiledy_blits.html>  ([fdo#109289])
> 
> *	igt@gen9_exec_parse@bb-large:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@gen9_exec_parse@bb-large.html>  ([i915#2856])
> +3 similar issues
> 
> *	igt@i915_pm_dc@dc6-dpms:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html>  -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> iclb3/igt@i915_pm_dc@dc6-dpms.html>  ([i915#454])
> 
> *	igt@i915_query@query-topology-unsupported:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb7/igt@i915_query@query-topology-unsupported.html>
> ([fdo#109302])
> 
> *	igt@kms_big_fb@linear-32bpp-rotate-180:
> 
> 	*	shard-glk: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-glk9/igt@kms_big_fb@linear-32bpp-
> rotate-180.html>  ([i915#118] / [i915#95]) +1 similar issue
> 
> *	igt@kms_big_fb@linear-8bpp-rotate-90:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-90.html>
> ([fdo#111614])
> 
> *	igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-
> 180-hflip.html>  ([fdo#109271] / [i915#3777]) +1 similar issue
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-
> 180-hflip.html>  ([fdo#109271] / [i915#3777])
> 
> *	igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk1/igt@kms_ccs@pipe-a-bad-rotation-90-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109271] / [i915#3886]) +8 similar issues
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl3/igt@kms_ccs@pipe-a-bad-rotation-90-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109271] / [i915#3886]) +10 similar issues
> 
> *	igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109271] / [i915#3886]) +8 similar issues
> 
> *	igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb6/igt@kms_ccs@pipe-c-random-ccs-data-
> y_tiled_gen12_mc_ccs.html>  ([i915#3689] / [i915#3886])
> 
> *	igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb8/igt@kms_ccs@pipe-d-bad-pixel-format-
> y_tiled_gen12_mc_ccs.html>  ([fdo#109278]) +2 similar issues
> 
> *	igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-
> y_tiled_ccs.html>  ([i915#3689]) +9 similar issues
> 
> *	igt@kms_cdclk@mode-transition:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl8/igt@kms_cdclk@mode-transition.html>  ([fdo#109271])
> +224 similar issues
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb1/igt@kms_cdclk@mode-transition.html>  ([i915#3742])
> 
> *	igt@kms_chamelium@hdmi-hpd-storm:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl7/igt@kms_chamelium@hdmi-hpd-storm.html>
> ([fdo#109271] / [fdo#111827]) +15 similar issues
> 
> *	igt@kms_chamelium@hdmi-mode-timings:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-snb2/igt@kms_chamelium@hdmi-mode-timings.html>
> ([fdo#109271] / [fdo#111827]) +22 similar issues
> 
> *	igt@kms_chamelium@vga-edid-read:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl2/igt@kms_chamelium@vga-edid-read.html>  ([fdo#109271]
> / [fdo#111827]) +14 similar issues
> 
> *	igt@kms_color_chamelium@pipe-b-ctm-0-25:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb7/igt@kms_color_chamelium@pipe-b-ctm-0-25.html>
> ([fdo#109284] / [fdo#111827])
> 
> *	igt@kms_color_chamelium@pipe-d-ctm-0-75:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk2/igt@kms_color_chamelium@pipe-d-ctm-0-75.html>
> ([fdo#109271] / [fdo#111827]) +15 similar issues
> 
> *	igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@kms_color_chamelium@pipe-d-ctm-red-to-
> blue.html>  ([fdo#109284] / [fdo#111827]) +6 similar issues
> 
> *	igt@kms_content_protection@atomic-dpms:
> 
> 	*	shard-kbl: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl2/igt@kms_content_protection@atomic-dpms.html>
> ([i915#1319]) +1 similar issue
> 
> *	igt@kms_content_protection@srm:
> 
> 	*	shard-apl: NOTRUN -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl7/igt@kms_content_protection@srm.html>  ([i915#1319])
> 
> *	igt@kms_content_protection@uevent:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl4/igt@kms_content_protection@uevent.html>
> ([i915#2105])
> 
> *	igt@kms_cursor_crc@pipe-a-cursor-32x32-rapid-movement:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-32x32-rapid-
> movement.html>  ([i915#3319]) +1 similar issue
> 
> *	igt@kms_cursor_crc@pipe-c-cursor-512x170-random:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-512x170-
> random.html>  ([fdo#109279] / [i915#3359]) +1 similar issue
> 
> *	igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-max-size-
> offscreen.html>  ([i915#3359]) +2 similar issues
> 
> *	igt@kms_cursor_crc@pipe-d-cursor-suspend:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl6/igt@kms_cursor_crc@pipe-d-cursor-suspend.html>
> ([fdo#109271]) +188 similar issues
> 
> *	igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html>
> ([fdo#111825]) +19 similar issues
> 
> *	igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled:
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk4/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-
> ytiled.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk7/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-
> ytiled.html>  ([i915#3451])
> 
> *	igt@kms_fbcon_fbt@fbc-suspend:
> 
> 	*	shard-apl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html>  -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> apl7/igt@kms_fbcon_fbt@fbc-suspend.html>  ([i915#180])
> 
> *	igt@kms_flip@2x-modeset-vs-vblank-race:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html>
> ([fdo#109274])
> 
> *	igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> 
> 	*	shard-apl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-
> dp1.html>  -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-
> dp1.html>  ([i915#180]) +1 similar issue
> 
> *	igt@kms_flip@flip-vs-suspend@a-dp1:
> 
> 	*	shard-apl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-apl6/igt@kms_flip@flip-vs-suspend@a-
> dp1.html>  ([i915#180]) +2 similar issues
> 
> *	igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-
> ytile.html>  ([i915#3701])
> 
> *	igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-
> 32bpp-ytile.html>  -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-
> ytile.html>  ([i915#3701])
> 
> *	igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-
> indfb-draw-blt.html>  ([fdo#109280])
> 
> *	igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
> 
> 	*	shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-
> msflip-blt.html>  ([fdo#109271]) +352 similar issues
> 
> *	igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
> 
> 	*	shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-
> wc.html>  -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> glk9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html>  ([i915#1888]
> / [i915#2546])
> 
> *	igt@kms_hdr@bpc-switch-suspend:
> 
> 	*	shard-kbl: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html>  -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> kbl6/igt@kms_hdr@bpc-switch-suspend.html>  ([i915#180]) +5 similar issues
> 
> *	igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk4/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-
> d.html>  ([fdo#109271] / [i915#533]) +2 similar issues
> 
> *	igt@kms_pipe_crc_basic@read-crc-pipe-d:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl2/igt@kms_pipe_crc_basic@read-crc-pipe-d.html>
> ([fdo#109271] / [i915#533])
> 
> *	igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl1/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-
> sequence.html>  ([fdo#109271] / [i915#533]) +2 similar issues
> 
> *	igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
> 
> 	*	shard-kbl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-
> fb.html>  ([fdo#108145] / [i915#265])
> 
> *	igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
> 
> 	*	shard-apl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-
> fb.html>  ([i915#265])
> 
> *	igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
> 	*	shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-
> fb.html>  ([i915#265])
> 
> *	igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
> 
> 	*	shard-apl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-
> fb.html>  ([fdo#108145] / [i915#265])
> 
> *	igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
> 
> 	*	shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk6/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-
> max.html>  ([fdo#108145] / [i915#265]) +1 similar issue
> 
> *	igt@kms_plane_lowres@pipe-a-tiling-yf:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
> ([fdo#112054])
> 
> *	igt@kms_plane_lowres@pipe-c-tiling-none:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb6/igt@kms_plane_lowres@pipe-c-tiling-none.html>
> ([i915#3536])
> 
> *	igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
> clipping-clamping:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk8/igt@kms_plane_scaling@scaler-with-clipping-
> clamping@pipe-c-scaler-with-clipping-clamping.html>  ([fdo#109271] /
> [i915#2733])
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-
> 2.html>  ([fdo#109271] / [i915#658])
> 
> *	igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-
> 5.html>  ([fdo#109271] / [i915#658]) +3 similar issues
> 
> *	igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-
> 1.html>  ([fdo#109271] / [i915#658]) +1 similar issue
> 
> *	igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-
> 3.html>  ([i915#2920])
> 
> *	igt@kms_psr@psr2_cursor_blt:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html>  ([fdo#109441])
> 
> *	igt@kms_psr@psr2_cursor_plane_onoff:
> 
> 	*	shard-tglb: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> ([i915#132] / [i915#3467]) +1 similar issue
> 
> *	igt@kms_psr@psr2_cursor_render:
> 
> 	*	shard-iclb: PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb2/igt@kms_psr@psr2_cursor_render.html>  -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> iclb1/igt@kms_psr@psr2_cursor_render.html>  ([fdo#109441]) +1 similar issue
> 
> *	igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-
> 90.html>  ([fdo#111615]) +1 similar issue
> 
> *	igt@kms_vblank@pipe-a-ts-continuation-suspend:
> 
> 	*	shard-kbl: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl6/igt@kms_vblank@pipe-a-ts-
> continuation-suspend.html>  ([i915#180] / [i915#295])
> 
> *	igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
> 
> 	*	shard-kbl: NOTRUN -> INCOMPLETE <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl2/igt@kms_vblank@pipe-b-ts-
> continuation-dpms-suspend.html>  ([i915#155] / [i915#2828])
> 
> *	igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
> 
> 	*	shard-iclb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-iclb1/igt@nouveau_crc@ctx-flip-threshold-reset-after-
> capture.html>  ([i915#2530])
> 
> *	igt@nouveau_crc@pipe-d-source-outp-complete:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb2/igt@nouveau_crc@pipe-d-source-outp-complete.html>
> ([i915#2530])
> 
> *	igt@prime_nv_api@i915_self_import:
> 
> 	*	shard-tglb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb8/igt@prime_nv_api@i915_self_import.html>
> ([fdo#109291])
> 
> *	igt@sysfs_clients@recycle:
> 
> 	*	shard-apl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl3/igt@sysfs_clients@recycle.html>  ([fdo#109271] /
> [i915#2994])
> 
> *	igt@sysfs_clients@sema-50:
> 
> 	*	shard-kbl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl6/igt@sysfs_clients@sema-50.html>  ([fdo#109271] /
> [i915#2994]) +3 similar issues
> 
> 	*	shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk6/igt@sysfs_clients@sema-50.html>  ([fdo#109271] /
> [i915#2994])
> 
> 
> Possible fixes
> 
> 
> *	igt@drm_import_export@flink:
> 
> 	*	shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk9/igt@drm_import_export@flink.html>  ([i915#2369]) -
> > PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> glk2/igt@drm_import_export@flink.html>
> 
> *	igt@drm_import_export@prime:
> 
> 	*	shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk1/igt@drm_import_export@prime.html>  ([i915#2055] /
> [i915#2944]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk3/igt@drm_import_export@prime.html>
> 
> *	igt@gem_eio@in-flight-contexts-10ms:
> 
> 	*	shard-tglb: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb8/igt@gem_eio@in-flight-contexts-10ms.html>
> ([i915#3063]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb7/igt@gem_eio@in-flight-contexts-10ms.html>
> 
> *	igt@gem_eio@unwedge-stress:
> 
> 	*	shard-tglb: TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb2/igt@gem_eio@unwedge-stress.html>  ([i915#2369] /
> [i915#3063] / [i915#3648]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb7/igt@gem_eio@unwedge-stress.html>
> 
> *	igt@gem_exec_fair@basic-none@vcs0:
> 
> 	*	shard-kbl: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html>
> ([i915#2842]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html>  +1 similar
> issue
> 
> 	*	shard-apl: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
> ([i915#2842]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html>
> 
> *	igt@gem_exec_fair@basic-none@vecs0:
> 
> 	*	shard-apl: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html>
> ([i915#2842] / [i915#3468]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html>
> 
> *	igt@gem_exec_fair@basic-throttle@rcs0:
> 
> 	*	shard-glk: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html>
> ([i915#2842]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>
> 
> *	igt@gem_exec_flush@basic-wb-ro-before-default:
> 
> 	*	shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk5/igt@gem_exec_flush@basic-wb-ro-before-
> default.html>  ([i915#2944]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk8/igt@gem_exec_flush@basic-wb-ro-before-default.html>
> 
> *	igt@gem_huc_copy@huc-copy:
> 
> 	*	shard-tglb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb6/igt@gem_huc_copy@huc-copy.html>  ([i915#2190]) ->
> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> tglb2/igt@gem_huc_copy@huc-copy.html>
> 
> *	igt@gem_workarounds@suspend-resume:
> 
> 	*	shard-kbl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl4/igt@gem_workarounds@suspend-resume.html>
> ([i915#155]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-kbl1/igt@gem_workarounds@suspend-resume.html>
> 
> *	igt@i915_suspend@fence-restore-tiled2untiled:
> 
> 	*	shard-apl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html>
> ([i915#180]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html>
> 
> *	igt@kms_big_fb@x-tiled-32bpp-rotate-180:
> 
> 	*	shard-glk: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html>
> ([i915#118] / [i915#95]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk6/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html>
> 
> *	igt@kms_frontbuffer_tracking@psr-suspend:
> 
> 	*	shard-tglb: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html>
> ([i915#2411] / [i915#456]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-tglb2/igt@kms_frontbuffer_tracking@psr-suspend.html>
> 
> *	igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
> 
> 	*	shard-kbl: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-
> suspend@pipe-b-planes.html>  ([i915#180]) -> PASS <https://intel-gfx-
> ci.01.org/tree/drm-tip/IGTPW_6212/shard-kbl4/igt@kms_plane@plane-panning-
> bottom-right-suspend@pipe-b-planes.html>  +2 similar issues
> 
> *	igt@kms_psr@psr2_sprite_blt:
> 
> 	*	shard-iclb: SKIP <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html>  ([fdo#109441])
> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6212/shard-
> iclb2/igt@kms_psr@psr2_sprite_blt.html>  +1 similar issue
> 
> *	igt@kms_rotation_crc@cursor-rotation-180:
> 
> 	*	shard-glk: FAIL <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/shard-glk6/igt@kms_rotation_crc@cursor-rotation-180.html>
> ([i915#65]) -> PASS <https://intel-gfx-ci.01.org/tree/drm-
> tip/IGTPW_6212/shard-glk2/igt@kms_rotation_crc@cursor-rotation-180.html>
> 
> 
> Warnings
> 
> 
> *	igt@i915_pm_rc6_residency@rc6-idle:
> 
> 	*	shard-iclb: WARN <https://intel-gfx-ci.01.org/tree/drm-
> tip/CI_DRM_10572/s>  ([i915#1804] / [i915#2684]) -> [WARN][138] ([i915#2684])


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

* Re: [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory
  2021-09-12 16:01 [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
  2021-09-12 16:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev3) Patchwork
  2021-09-12 17:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-09-15  5:54 ` Karthik B S
  2 siblings, 0 replies; 5+ messages in thread
From: Karthik B S @ 2021-09-15  5:54 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev
  Cc: Ville Syrjälä,
	Mark Yacoub, Petri Latvala, Vidya Srinivas, Navare, Manasi

On 9/12/2021 9:31 PM, Bhanuprakash Modem wrote:
> 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)
>
> 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>
> ---
>   tests/{ => i915}/kms_big_fb.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_big_joiner.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                 | 10 ++++--
>   tests/meson.build                           | 38 ++++++++++-----------
>   28 files changed, 47 insertions(+), 43 deletions(-)
>   rename tests/{ => i915}/kms_big_fb.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_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_big_joiner.c b/tests/kms_big_joiner.c
> index 4f1f3152e..45c5b2a2a 100644
> --- a/tests/kms_big_joiner.c
> +++ b/tests/kms_big_joiner.c
> @@ -258,7 +258,7 @@ igt_main
>   	uint16_t width = 0, height = 0;
>   
>   	igt_fixture {
> -		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> +		data.drm_fd = drm_open_driver_master(DRIVER_ANY);

Hi,

Big joiner is an i915 specific feature. So please keep the DRIVER_INTEL 
check and move this test inside i915 directory.

With this change, the patch looks good to me.

Reviewed-by: Karthik B S <karthik.b.s@intel.com>

Thanks,

Karthik.B.S

>   		kmstest_set_vt_graphics_mode();
>   
>   		igt_display_require(&data.display, data.drm_fd);
> 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..ea9bd9a56 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -107,7 +107,7 @@ functional_test_fini(functional_test_t *test, igt_output_t *output)
>   	igt_remove_fb(test->data->drm_fd, &test->red_fb);
>   	igt_remove_fb(test->data->drm_fd, &test->yellow_fb);
>   
> -	igt_output_set_pipe(output, PIPE_ANY);
> +	igt_output_set_pipe(output, PIPE_NONE);
>   	igt_display_commit2(&test->data->display, COMMIT_LEGACY);
>   }
>   
> @@ -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..3c1b70259 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -19,11 +19,7 @@ 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 +28,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 +47,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 +217,25 @@ i915_progs = [
>   	'i915_query',
>   	'i915_selftest',
>   	'i915_suspend',
> +	'kms_big_fb',
> +	'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',


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

end of thread, other threads:[~2021-09-15  5:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-12 16:01 [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Bhanuprakash Modem
2021-09-12 16:36 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Move Intel specific kms tests to i915 directory (rev3) Patchwork
2021-09-12 17:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-09-13  3:57   ` Modem, Bhanuprakash
2021-09-15  5:54 ` [igt-dev] [i-g-t v3] tests/kms: Move Intel specific kms tests to i915 directory Karthik B S

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.