* [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test
@ 2022-11-07 17:18 Mark Yacoub
2022-11-07 18:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (13 more replies)
0 siblings, 14 replies; 23+ messages in thread
From: Mark Yacoub @ 2022-11-07 17:18 UTC (permalink / raw)
To: igt-dev
Cc: robdclark, vsuley, petri.latvala, ihf, amstan, kalin, seanpaul,
matthewtlam, khaled.almahallawy, markyacoub
[Why]
1. Users can change resolutions of monitors on the fly.
2. Monitors can come with different shapes and form aka different modes.
Test a change between different modes on the fly.
[How]
1. Created an EDID based on a random combination of screen size, Refresh
Rate and Aspect Ratio.
2. Set that EDID to Chamelium.
3. Iterate over every mode on the connector, assign it to the connector
and check that the screen resolution changes to this one.
Test Based on: [ChromeOS AutoTest
display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py)
Tested on: TGL with Cv3
Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
---
lib/igt_edid.c | 4 +-
lib/igt_edid.h | 2 +
lib/igt_kms.c | 31 +++++++++++++++
lib/igt_kms.h | 5 ++-
tests/chamelium/kms_chamelium.c | 68 +++++++++++++++++++++++++++++++++
5 files changed, 107 insertions(+), 3 deletions(-)
diff --git a/lib/igt_edid.c b/lib/igt_edid.c
index bff13a0d..9c67e51b 100644
--- a/lib/igt_edid.c
+++ b/lib/igt_edid.c
@@ -61,8 +61,8 @@ static const char monitor_range_padding[] = {
const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00};
/* vfreq is in Hz */
-static void std_timing_set(struct std_timing *st, int hsize, int vfreq,
- enum std_timing_aspect aspect)
+void std_timing_set(struct std_timing *st, int hsize, int vfreq,
+ enum std_timing_aspect aspect)
{
assert(hsize >= 256 && hsize <= 2288);
st->hsize = hsize / 8 - 31;
diff --git a/lib/igt_edid.h b/lib/igt_edid.h
index a9251d68..609f3cd4 100644
--- a/lib/igt_edid.h
+++ b/lib/igt_edid.h
@@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid);
void edid_get_mfg(const struct edid *edid, char out[static 3]);
uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid);
uint8_t edid_get_bit_depth_from_vid(const struct edid *edid);
+void std_timing_set(struct std_timing *st, int hsize, int vfreq,
+ enum std_timing_aspect aspect); // rename
void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode,
int width_mm, int height_mm);
void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt,
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 921a623d..437977a7 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -133,6 +133,35 @@ const struct edid *igt_kms_get_base_edid(void)
return &edid;
}
+const struct edid *igt_kms_get_full_edid(void)
+{
+ static struct edid edid;
+ drmModeModeInfo mode = {};
+ mode.clock = 148500;
+ mode.hdisplay = 2288;
+ mode.hsync_start = 2008;
+ mode.hsync_end = 2052;
+ mode.htotal = 2200;
+ mode.vdisplay = 1287;
+ mode.vsync_start = 1084;
+ mode.vsync_end = 1089;
+ mode.vtotal = 1125;
+ mode.vrefresh = 144;
+ edid_init_with_mode(&edid, &mode);
+
+ std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10);
+ std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3);
+ std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4);
+ std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9);
+ std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10);
+ std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3);
+ std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4);
+ std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9);
+
+ edid_update_checksum(&edid);
+ return &edid;
+}
+
const struct edid *igt_kms_get_base_tile_edid(void)
{
static struct edid edid;
@@ -548,6 +577,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid)
switch (edid) {
case IGT_CUSTOM_EDID_BASE:
return igt_kms_get_base_edid();
+ case IGT_CUSTOM_EDID_FULL:
+ return igt_kms_get_full_edid();
case IGT_CUSTOM_EDID_ALT:
return igt_kms_get_alt_edid();
case IGT_CUSTOM_EDID_HDMI_AUDIO:
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index b09441d0..7a00d204 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -82,6 +82,7 @@ enum port {
*
* Enum used for the helper function igt_custom_edid_type
* @IGT_CUSTOM_EDID_BASE: Returns base edid
+ * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings.
* @IGT_CUSTOM_EDID_ALT: Returns alternate edid
* @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block
* @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block
@@ -89,12 +90,13 @@ enum port {
*/
enum igt_custom_edid_type {
IGT_CUSTOM_EDID_BASE,
+ IGT_CUSTOM_EDID_FULL,
IGT_CUSTOM_EDID_ALT,
IGT_CUSTOM_EDID_HDMI_AUDIO,
IGT_CUSTOM_EDID_DP_AUDIO,
IGT_CUSTOM_EDID_ASPECT_RATIO,
};
-#define IGT_CUSTOM_EDID_COUNT 5
+#define IGT_CUSTOM_EDID_COUNT 6
/**
* kmstest_port_name:
@@ -865,6 +867,7 @@ void igt_reset_connectors(void);
uint32_t kmstest_get_vbl_flag(int crtc_offset);
const struct edid *igt_kms_get_base_edid(void);
+const struct edid *igt_kms_get_full_edid(void);
const struct edid *igt_kms_get_base_tile_edid(void);
const struct edid *igt_kms_get_alt_edid(void);
const struct edid *igt_kms_get_hdmi_audio_edid(void);
diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c
index 2bc97d5a..c8fbc45c 100644
--- a/tests/chamelium/kms_chamelium.c
+++ b/tests/chamelium/kms_chamelium.c
@@ -2612,6 +2612,70 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port,
data->ports, data->port_count);
}
+static const char igt_edid_resolution_list_desc[] =
+ "Get an EDID with many modes of different configurations, set them on the screen and check the"
+ "screen resolution matches the mode resolution.";
+static void edid_resolution_list(data_t *data, struct chamelium_port *port)
+{
+ struct chamelium *chamelium = data->chamelium;
+ struct udev_monitor *mon = igt_watch_uevents();
+ drmModeConnector *init_connector;
+ drmModeModeInfoPtr modes;
+ int count_modes;
+ int i;
+ igt_output_t *output;
+ enum pipe pipe;
+
+ chamelium_unplug(chamelium, port);
+ set_edid(data, port, IGT_CUSTOM_EDID_FULL);
+
+ igt_flush_uevents(mon);
+ chamelium_plug(chamelium, port);
+ wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED);
+ igt_flush_uevents(mon);
+
+ init_connector = chamelium_port_get_connector(chamelium, port, true);
+ modes = init_connector->modes;
+ count_modes = init_connector->count_modes;
+
+ output = get_output_for_port(data, port);
+ pipe = get_pipe_for_output(&data->display, output);
+ igt_output_set_pipe(output, pipe);
+
+ for (i = 0; i < count_modes; ++i)
+ igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh);
+
+ for (i = 0; i < count_modes; ++i) {
+ struct chamelium_edid *chamelium_edid;
+ struct igt_fb fb = { 0 };
+ bool is_video_stable;
+ int screen_res_w, screen_res_h;
+ drmModeConnector *connector;
+ drmModeModeInfoPtr expected_mode;
+ bool is_same_mode;
+
+ igt_info("Testing #%d %s %uHz\n", i, modes[i].name,
+ modes[i].vrefresh);
+
+ /* Set the screen mode with the one we chose. */
+ create_fb_for_mode(data, &fb, &modes[i]);
+ enable_output(data, port, output, &modes[i], &fb);
+ is_video_stable = chamelium_port_wait_video_input_stable(
+ chamelium, port, 10);
+ igt_assert(is_video_stable);
+
+ chamelium_port_get_resolution(chamelium, port, &screen_res_w,
+ &screen_res_h);
+ igt_assert(screen_res_w == modes[i].hdisplay);
+ igt_assert(screen_res_h == modes[i].vdisplay);
+
+ igt_remove_fb(data->drm_fd, &fb);
+ }
+
+ igt_modeset_disable_all_outputs(&data->display);
+ drmModeFreeConnector(init_connector);
+}
+
#define for_each_port(p, port) \
for (p = 0, port = data.ports[p]; \
p < data.port_count; \
@@ -2714,6 +2778,10 @@ igt_main
edid_stress_resolution(&data, port, DP_EDIDS_NON_4K,
ARRAY_SIZE(DP_EDIDS_NON_4K));
+ igt_describe(igt_edid_resolution_list_desc);
+ connector_subtest("dp-edid-resolution-list", DisplayPort)
+ edid_resolution_list(&data, port);
+
igt_describe(test_suspend_resume_hpd_desc);
connector_subtest("dp-hpd-after-suspend", DisplayPort)
test_suspend_resume_hpd(&data, port,
--
2.38.1.431.g37b22c650d-goog
^ permalink raw reply related [flat|nested] 23+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub @ 2022-11-07 18:25 ` Patchwork 2022-11-07 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (12 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-07 18:25 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6669 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from CI_DRM_12351 -> IGTPW_8059 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html Participating hosts (42 -> 37) ------------------------------ Additional (1): bat-dg2-8 Missing (6): fi-ilk-m540 fi-tgl-dsi fi-hsw-4200u fi-ctg-p8600 fi-pnv-d510 fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_8059 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-ivb-3770: NOTRUN -> [SKIP][1] ([fdo#109271] / [fdo#111827]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/fi-ivb-3770/igt@kms_chamelium@common-hpd-after-suspend.html - fi-hsw-4770: NOTRUN -> [SKIP][2] ([fdo#109271] / [fdo#111827]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - {bat-rpls-1}: [DMESG-WARN][3] ([i915#6687]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_pm_rpm@module-reload: - {bat-rpls-2}: [WARN][5] ([i915#7346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/bat-rpls-2/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/bat-rpls-2/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][7] ([i915#4785]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - fi-ivb-3770: [INCOMPLETE][9] ([i915#3303] / [i915#7122]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - {bat-rpls-1}: [DMESG-WARN][11] ([i915#5278]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/bat-rpls-1/igt@i915_selftest@live@hugepages.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/bat-rpls-1/igt@i915_selftest@live@hugepages.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [FAIL][13] ([i915#6298]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029 [i915#7122]: https://gitlab.freedesktop.org/drm/intel/issues/7122 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7046 -> IGTPW_8059 CI-20190529: 20190529 CI_DRM_12351: 74d8166a994863d1f83e842c1822506a8f6aa806 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8059: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_chamelium@dp-edid-resolution-list +igt@kms_chamelium@dp-edid-stress-resolution -igt@kms_chamelium@dp-edid-stress-resolution-4k -igt@kms_chamelium@dp-edid-stress-resolution-non-4k -igt@kms_chamelium@hdmi-edid-stress-resolution-4k -igt@kms_chamelium@hdmi-edid-stress-resolution-non-4k == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html [-- Attachment #2: Type: text/html, Size: 5846 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub 2022-11-07 18:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-11-07 22:04 ` Patchwork 2022-11-08 17:50 ` Mark Yacoub 2022-11-09 6:06 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork ` (11 subsequent siblings) 13 siblings, 1 reply; 23+ messages in thread From: Patchwork @ 2022-11-07 22:04 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 31797 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test URL : https://patchwork.freedesktop.org/series/110614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12351_full -> IGTPW_8059_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8059_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8059_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_8059/index.html Participating hosts (9 -> 6) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8059_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_multiple@tiling-y@pipe-b-edp-1: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@kms_plane_multiple@tiling-y@pipe-b-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_plane_multiple@tiling-y@pipe-b-edp-1.html New tests --------- New tests have been introduced between CI_DRM_12351_full and IGTPW_8059_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8059_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [PASS][4] -> [SKIP][5] ([i915#4525]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@gem_exec_balancer@parallel-balancer.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][6] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][9] ([i915#2842]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][10] ([fdo#112283]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_exec_params@secure-non-root.html - shard-tglb: NOTRUN -> [SKIP][11] ([fdo#112283]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#2190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl8/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#2190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk6/igt@gem_huc_copy@huc-copy.html - shard-iclb: NOTRUN -> [SKIP][14] ([i915#2190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][15] ([fdo#111656]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][16] ([fdo#109292]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_mmap_gtt@coherency.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][17] ([i915#2658]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@gem_pread@exhaustion.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#4270]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-iclb: NOTRUN -> [SKIP][19] ([i915#4270]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#768]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#3297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-iclb: NOTRUN -> [SKIP][22] ([i915#3297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271]) +188 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl2/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][24] -> [DMESG-WARN][25] ([i915#5566] / [i915#716]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl2/igt@gen9_exec_parse@allowed-single.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][26] ([i915#7036]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc5-psr: - shard-tglb: [PASS][27] -> [FAIL][28] ([i915#3989]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb1/igt@i915_pm_dc@dc5-psr.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_rps@engine-order: - shard-apl: NOTRUN -> [FAIL][29] ([i915#6537]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@i915_pm_rps@engine-order.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][30] -> [DMESG-WARN][31] ([i915#180]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#3826]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][33] ([i915#3826]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#4765]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][35] ([i915#5286]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][36] ([i915#5286]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271]) +49 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][38] ([fdo#111615]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#6095]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) +5 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278]) +8 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111615] / [i915#3689]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][43] ([i915#3689] / [i915#6095]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_chamelium@dp-edid-resolution-list.html - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#109284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_chamelium@dp-edid-resolution-list.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb7/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk8/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium@vga-frame-dump: - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +8 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@kms_chamelium@vga-frame-dump.html * igt@kms_content_protection@uevent: - shard-iclb: NOTRUN -> [SKIP][52] ([i915#7118]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_content_protection@uevent.html - shard-tglb: NOTRUN -> [SKIP][53] ([i915#6944] / [i915#7118]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][54] ([i915#1339]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl2/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3555]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#111825]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109274]) +11 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][58] -> [FAIL][59] ([i915#2346]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor@toggle: - shard-iclb: [PASS][60] -> [FAIL][61] ([i915#2346]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb5/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#7205]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271]) +133 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][65] ([i915#2587] / [i915#2672]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#2587] / [i915#2672]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][67] ([i915#3555]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#2672]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][69] ([i915#2672] / [i915#3555]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][70] ([i915#6497]) +4 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109280] / [fdo#111825]) +7 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +7 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109289]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][75] -> [SKIP][76] ([i915#5235]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][78] -> [SKIP][79] ([fdo#109441]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][80] ([i915#132] / [i915#3467]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][81] -> [SKIP][82] ([i915#5519]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_selftest@all: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#6433]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_selftest@all.html - shard-iclb: NOTRUN -> [SKIP][84] ([i915#6433]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_selftest@all.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2437]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_writeback@writeback-check-output.html * igt@prime_vgem@fence-flip-hang: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109295]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@prime_vgem@fence-flip-hang.html - shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109295]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@prime_vgem@fence-flip-hang.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2994]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@sysfs_clients@fair-1.html - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk7/igt@sysfs_clients@fair-1.html - shard-iclb: NOTRUN -> [SKIP][91] ([i915#2994]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][92] ([i915#6268]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [SKIP][94] ([i915#4525]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb6/igt@gem_exec_balancer@parallel-out-fence.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl2/igt@gem_workarounds@suspend-resume-context.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@gem_workarounds@suspend-resume-context.html * igt@i915_selftest@mock@sanitycheck: - shard-snb: [SKIP][98] ([fdo#109271]) -> [PASS][99] +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-snb6/igt@i915_selftest@mock@sanitycheck.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb6/igt@i915_selftest@mock@sanitycheck.html * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1: - shard-glk: [DMESG-WARN][100] ([i915#118]) -> [PASS][101] +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk2/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk3/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-glk: [FAIL][102] ([i915#5138]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk3/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk5/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][104] ([i915#79]) -> [PASS][105] +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][106] ([i915#5235]) -> [PASS][107] +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [SKIP][108] ([fdo#109441]) -> [PASS][109] +3 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb6/igt@kms_psr@psr2_primary_blt.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [SKIP][110] ([i915#5519]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html #### Warnings #### * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][112] ([i915#7248]) -> [WARN][113] ([i915#2658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][114] ([i915#2920]) -> [SKIP][115] ([i915#658]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][116] ([i915#2920]) -> [SKIP][117] ([fdo#111068] / [i915#658]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7046 -> IGTPW_8059 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12351: 74d8166a994863d1f83e842c1822506a8f6aa806 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8059: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html [-- Attachment #2: Type: text/html, Size: 38831 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test 2022-11-07 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-08 17:50 ` Mark Yacoub 2022-11-09 7:53 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 23+ messages in thread From: Mark Yacoub @ 2022-11-08 17:50 UTC (permalink / raw) To: Vudum, Lakshminarayana; +Cc: igt-dev Hi Lakshminarayana, the failure looks irrelevant. Can I get a rerun? On Mon, Nov 7, 2022 at 5:04 PM Patchwork <patchwork@emeril.freedesktop.org> wrote: > > Patch Details > Series:Chamelium: Add new EDID Resolution List test > URL:https://patchwork.freedesktop.org/series/110614/ > State:failure > Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html > > CI Bug Log - changes from CI_DRM_12351_full -> IGTPW_8059_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_8059_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8059_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_8059/index.html > > Participating hosts (9 -> 6) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_8059_full: > > IGT changes > > Possible regressions > > igt@kms_plane_multiple@tiling-y@pipe-b-edp-1: > > shard-tglb: PASS -> INCOMPLETE > > New tests > > New tests have been introduced between CI_DRM_12351_full and IGTPW_8059_full: > > New IGT tests (1) > > igt@kms_chamelium@dp-edid-resolution-list: > > Statuses : 5 skip(s) > Exec time: [0.0] s > > Known issues > > Here are the changes found in IGTPW_8059_full that come from known issues: > > IGT changes > > Issues hit > > igt@gem_ctx_persistence@engines-mixed-process: > > shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +1 similar issue > > igt@gem_exec_balancer@parallel-balancer: > > shard-iclb: PASS -> SKIP (i915#4525) > > igt@gem_exec_fair@basic-none-share@rcs0: > > shard-tglb: NOTRUN -> FAIL (i915#2842) > > igt@gem_exec_fair@basic-none@vcs0: > > shard-glk: PASS -> FAIL (i915#2842) +1 similar issue > > igt@gem_exec_fair@basic-pace@vcs1: > > shard-iclb: NOTRUN -> FAIL (i915#2842) +1 similar issue > > igt@gem_exec_params@secure-non-root: > > shard-iclb: NOTRUN -> SKIP (fdo#112283) > > shard-tglb: NOTRUN -> SKIP (fdo#112283) > > igt@gem_huc_copy@huc-copy: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2190) > > shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2190) > > shard-iclb: NOTRUN -> SKIP (i915#2190) > > igt@gem_mmap_gtt@coherency: > > shard-tglb: NOTRUN -> SKIP (fdo#111656) > > shard-iclb: NOTRUN -> SKIP (fdo#109292) > > igt@gem_pread@exhaustion: > > shard-apl: NOTRUN -> WARN (i915#2658) > > igt@gem_pxp@verify-pxp-stale-ctx-execution: > > shard-tglb: NOTRUN -> SKIP (i915#4270) > > shard-iclb: NOTRUN -> SKIP (i915#4270) +1 similar issue > > igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: > > shard-iclb: NOTRUN -> SKIP (i915#768) > > igt@gem_userptr_blits@readonly-pwrite-unsync: > > shard-tglb: NOTRUN -> SKIP (i915#3297) > > shard-iclb: NOTRUN -> SKIP (i915#3297) > > igt@gen7_exec_parse@oacontrol-tracking: > > shard-apl: NOTRUN -> SKIP (fdo#109271) +188 similar issues > > igt@gen9_exec_parse@allowed-single: > > shard-apl: PASS -> DMESG-WARN (i915#5566 / i915#716) > > igt@i915_pipe_stress@stress-xrgb8888-untiled: > > shard-apl: NOTRUN -> FAIL (i915#7036) > > igt@i915_pm_dc@dc5-psr: > > shard-tglb: PASS -> FAIL (i915#3989) > > igt@i915_pm_rps@engine-order: > > shard-apl: NOTRUN -> FAIL (i915#6537) > > igt@i915_suspend@fence-restore-tiled2untiled: > > shard-apl: PASS -> DMESG-WARN (i915#180) +2 similar issues > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > shard-tglb: NOTRUN -> SKIP (i915#3826) > > shard-iclb: NOTRUN -> SKIP (i915#3826) > > igt@kms_atomic@atomic_plane_damage: > > shard-iclb: NOTRUN -> SKIP (i915#4765) > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > shard-iclb: NOTRUN -> SKIP (i915#5286) +1 similar issue > > shard-tglb: NOTRUN -> SKIP (i915#5286) +1 similar issue > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > shard-glk: NOTRUN -> SKIP (fdo#109271) +49 similar issues > > igt@kms_big_fb@yf-tiled-16bpp-rotate-180: > > shard-tglb: NOTRUN -> SKIP (fdo#111615) > > igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#6095) > > igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +5 similar issues > > igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: > > shard-iclb: NOTRUN -> SKIP (fdo#109278) +8 similar issues > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: > > shard-tglb: NOTRUN -> SKIP (fdo#111615 / i915#3689) > > igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#6095) +3 similar issues > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#3689) +1 similar issue > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > > shard-iclb: NOTRUN -> SKIP (fdo#109284) > > shard-tglb: NOTRUN -> SKIP (fdo#109284) > > igt@kms_chamelium@dp-hpd-with-enabled-mode: > > shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +1 similar issue > > igt@kms_chamelium@hdmi-hpd-for-each-pipe: > > shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar issues > > shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +1 similar issue > > shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +1 similar issue > > igt@kms_chamelium@vga-frame-dump: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +8 similar issues > > igt@kms_content_protection@uevent: > > shard-iclb: NOTRUN -> SKIP (i915#7118) > > shard-tglb: NOTRUN -> SKIP (i915#6944 / i915#7118) > > igt@kms_content_protection@uevent@pipe-a-dp-1: > > shard-apl: NOTRUN -> FAIL (i915#1339) > > igt@kms_cursor_crc@cursor-onscreen-32x32: > > shard-tglb: NOTRUN -> SKIP (i915#3555) +1 similar issue > > igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: > > shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825) +7 similar issues > > igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: > > shard-iclb: NOTRUN -> SKIP (fdo#109274) +11 similar issues > > igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > > shard-glk: PASS -> FAIL (i915#2346) > > igt@kms_cursor_legacy@flip-vs-cursor@toggle: > > shard-iclb: PASS -> FAIL (i915#2346) +2 similar issues > > igt@kms_dsc@dsc-with-bpc-formats: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#7205) > > igt@kms_flip@2x-nonexisting-fb: > > shard-snb: NOTRUN -> SKIP (fdo#109271) +133 similar issues > > shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825 / i915#3637) +2 similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: > > shard-tglb: NOTRUN -> SKIP (i915#2587 / i915#2672) > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2587 / i915#2672) +6 similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: > > shard-iclb: NOTRUN -> SKIP (i915#3555) +2 similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2672) > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2672 / i915#3555) > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: > > shard-tglb: NOTRUN -> SKIP (i915#6497) +4 similar issues > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: > > shard-tglb: NOTRUN -> SKIP (fdo#109280 / fdo#111825) +7 similar issues > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: > > shard-iclb: NOTRUN -> SKIP (fdo#109280) +7 similar issues > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > shard-tglb: NOTRUN -> SKIP (fdo#109289) > > shard-iclb: NOTRUN -> SKIP (fdo#109289) > > igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: > > shard-iclb: PASS -> SKIP (i915#5235) +2 similar issues > > igt@kms_psr2_sf@overlay-plane-move-continuous-sf: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#658) +2 similar issues > > igt@kms_psr@psr2_cursor_plane_onoff: > > shard-iclb: PASS -> SKIP (fdo#109441) > > igt@kms_psr@psr2_primary_mmap_cpu: > > shard-tglb: NOTRUN -> FAIL (i915#132 / i915#3467) > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > shard-iclb: PASS -> SKIP (i915#5519) > > igt@kms_selftest@all: > > shard-tglb: NOTRUN -> SKIP (i915#6433) > > shard-iclb: NOTRUN -> SKIP (i915#6433) > > igt@kms_vblank@pipe-d-wait-idle: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#533) > > igt@kms_writeback@writeback-check-output: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2437) > > igt@prime_vgem@fence-flip-hang: > > shard-tglb: NOTRUN -> SKIP (fdo#109295) > > shard-iclb: NOTRUN -> SKIP (fdo#109295) > > igt@sysfs_clients@fair-1: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > shard-iclb: NOTRUN -> SKIP (i915#2994) > > Possible fixes > > igt@gem_ctx_exec@basic-nohangcheck: > > shard-tglb: FAIL (i915#6268) -> PASS > > igt@gem_exec_balancer@parallel-out-fence: > > shard-iclb: SKIP (i915#4525) -> PASS > > igt@gem_workarounds@suspend-resume-context: > > shard-apl: DMESG-WARN (i915#180) -> PASS +3 similar issues > > igt@i915_selftest@mock@sanitycheck: > > shard-snb: SKIP (fdo#109271) -> PASS +1 similar issue > > igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1: > > shard-glk: DMESG-WARN (i915#118) -> PASS +1 similar issue > > igt@kms_big_fb@y-tiled-64bpp-rotate-180: > > shard-glk: FAIL (i915#5138) -> PASS > > igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: > > shard-glk: FAIL (i915#79) -> PASS +1 similar issue > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > > shard-iclb: SKIP (i915#5235) -> PASS +2 similar issues > > igt@kms_psr@psr2_primary_blt: > > shard-iclb: SKIP (fdo#109441) -> PASS +3 similar issues > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > shard-tglb: SKIP (i915#5519) -> PASS > > Warnings > > igt@gem_pwrite@basic-exhaustion: > > shard-tglb: INCOMPLETE (i915#7248) -> WARN (i915#2658) > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > > shard-iclb: SKIP (i915#2920) -> SKIP (i915#658) +1 similar issue > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: > > shard-iclb: SKIP (i915#2920) -> SKIP (fdo#111068 / i915#658) +1 similar issue > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > CI: CI-20190529 -> None > IGT: IGT_7046 -> IGTPW_8059 > Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12351: 74d8166a994863d1f83e842c1822506a8f6aa806 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8059: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html > IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test 2022-11-08 17:50 ` Mark Yacoub @ 2022-11-09 7:53 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 23+ messages in thread From: Vudum, Lakshminarayana @ 2022-11-09 7:53 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev@lists.freedesktop.org Re-reported. -----Original Message----- From: Mark Yacoub <markyacoub@chromium.org> Sent: Tuesday, November 8, 2022 9:51 AM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: Re: ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test Hi Lakshminarayana, the failure looks irrelevant. Can I get a rerun? On Mon, Nov 7, 2022 at 5:04 PM Patchwork <patchwork@emeril.freedesktop.org> wrote: > > Patch Details > Series:Chamelium: Add new EDID Resolution List test > URL:https://patchwork.freedesktop.org/series/110614/ > State:failure > Details:https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html > > CI Bug Log - changes from CI_DRM_12351_full -> IGTPW_8059_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_8059_full absolutely need to > be verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8059_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_8059/index.html > > Participating hosts (9 -> 6) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_8059_full: > > IGT changes > > Possible regressions > > igt@kms_plane_multiple@tiling-y@pipe-b-edp-1: > > shard-tglb: PASS -> INCOMPLETE > > New tests > > New tests have been introduced between CI_DRM_12351_full and IGTPW_8059_full: > > New IGT tests (1) > > igt@kms_chamelium@dp-edid-resolution-list: > > Statuses : 5 skip(s) > Exec time: [0.0] s > > Known issues > > Here are the changes found in IGTPW_8059_full that come from known issues: > > IGT changes > > Issues hit > > igt@gem_ctx_persistence@engines-mixed-process: > > shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +1 similar issue > > igt@gem_exec_balancer@parallel-balancer: > > shard-iclb: PASS -> SKIP (i915#4525) > > igt@gem_exec_fair@basic-none-share@rcs0: > > shard-tglb: NOTRUN -> FAIL (i915#2842) > > igt@gem_exec_fair@basic-none@vcs0: > > shard-glk: PASS -> FAIL (i915#2842) +1 similar issue > > igt@gem_exec_fair@basic-pace@vcs1: > > shard-iclb: NOTRUN -> FAIL (i915#2842) +1 similar issue > > igt@gem_exec_params@secure-non-root: > > shard-iclb: NOTRUN -> SKIP (fdo#112283) > > shard-tglb: NOTRUN -> SKIP (fdo#112283) > > igt@gem_huc_copy@huc-copy: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2190) > > shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2190) > > shard-iclb: NOTRUN -> SKIP (i915#2190) > > igt@gem_mmap_gtt@coherency: > > shard-tglb: NOTRUN -> SKIP (fdo#111656) > > shard-iclb: NOTRUN -> SKIP (fdo#109292) > > igt@gem_pread@exhaustion: > > shard-apl: NOTRUN -> WARN (i915#2658) > > igt@gem_pxp@verify-pxp-stale-ctx-execution: > > shard-tglb: NOTRUN -> SKIP (i915#4270) > > shard-iclb: NOTRUN -> SKIP (i915#4270) +1 similar issue > > igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: > > shard-iclb: NOTRUN -> SKIP (i915#768) > > igt@gem_userptr_blits@readonly-pwrite-unsync: > > shard-tglb: NOTRUN -> SKIP (i915#3297) > > shard-iclb: NOTRUN -> SKIP (i915#3297) > > igt@gen7_exec_parse@oacontrol-tracking: > > shard-apl: NOTRUN -> SKIP (fdo#109271) +188 similar issues > > igt@gen9_exec_parse@allowed-single: > > shard-apl: PASS -> DMESG-WARN (i915#5566 / i915#716) > > igt@i915_pipe_stress@stress-xrgb8888-untiled: > > shard-apl: NOTRUN -> FAIL (i915#7036) > > igt@i915_pm_dc@dc5-psr: > > shard-tglb: PASS -> FAIL (i915#3989) > > igt@i915_pm_rps@engine-order: > > shard-apl: NOTRUN -> FAIL (i915#6537) > > igt@i915_suspend@fence-restore-tiled2untiled: > > shard-apl: PASS -> DMESG-WARN (i915#180) +2 similar issues > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > shard-tglb: NOTRUN -> SKIP (i915#3826) > > shard-iclb: NOTRUN -> SKIP (i915#3826) > > igt@kms_atomic@atomic_plane_damage: > > shard-iclb: NOTRUN -> SKIP (i915#4765) > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > shard-iclb: NOTRUN -> SKIP (i915#5286) +1 similar issue > > shard-tglb: NOTRUN -> SKIP (i915#5286) +1 similar issue > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > shard-glk: NOTRUN -> SKIP (fdo#109271) +49 similar issues > > igt@kms_big_fb@yf-tiled-16bpp-rotate-180: > > shard-tglb: NOTRUN -> SKIP (fdo#111615) > > igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#6095) > > igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +5 similar issues > > igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: > > shard-iclb: NOTRUN -> SKIP (fdo#109278) +8 similar issues > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: > > shard-tglb: NOTRUN -> SKIP (fdo#111615 / i915#3689) > > igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#6095) +3 similar issues > > igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > > shard-tglb: NOTRUN -> SKIP (i915#3689) +1 similar issue > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > > shard-iclb: NOTRUN -> SKIP (fdo#109284) > > shard-tglb: NOTRUN -> SKIP (fdo#109284) > > igt@kms_chamelium@dp-hpd-with-enabled-mode: > > shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +1 similar issue > > igt@kms_chamelium@hdmi-hpd-for-each-pipe: > > shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar issues > > shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +1 similar issue > > shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +1 similar issue > > igt@kms_chamelium@vga-frame-dump: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +8 similar issues > > igt@kms_content_protection@uevent: > > shard-iclb: NOTRUN -> SKIP (i915#7118) > > shard-tglb: NOTRUN -> SKIP (i915#6944 / i915#7118) > > igt@kms_content_protection@uevent@pipe-a-dp-1: > > shard-apl: NOTRUN -> FAIL (i915#1339) > > igt@kms_cursor_crc@cursor-onscreen-32x32: > > shard-tglb: NOTRUN -> SKIP (i915#3555) +1 similar issue > > igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: > > shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825) +7 similar issues > > igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: > > shard-iclb: NOTRUN -> SKIP (fdo#109274) +11 similar issues > > igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > > shard-glk: PASS -> FAIL (i915#2346) > > igt@kms_cursor_legacy@flip-vs-cursor@toggle: > > shard-iclb: PASS -> FAIL (i915#2346) +2 similar issues > > igt@kms_dsc@dsc-with-bpc-formats: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#7205) > > igt@kms_flip@2x-nonexisting-fb: > > shard-snb: NOTRUN -> SKIP (fdo#109271) +133 similar issues > > shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825 / i915#3637) +2 > similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: > > shard-tglb: NOTRUN -> SKIP (i915#2587 / i915#2672) > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2587 / i915#2672) +6 similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: > > shard-iclb: NOTRUN -> SKIP (i915#3555) +2 similar issues > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2672) > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > > shard-iclb: NOTRUN -> SKIP (i915#2672 / i915#3555) > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: > > shard-tglb: NOTRUN -> SKIP (i915#6497) +4 similar issues > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: > > shard-tglb: NOTRUN -> SKIP (fdo#109280 / fdo#111825) +7 similar issues > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: > > shard-iclb: NOTRUN -> SKIP (fdo#109280) +7 similar issues > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > shard-tglb: NOTRUN -> SKIP (fdo#109289) > > shard-iclb: NOTRUN -> SKIP (fdo#109289) > > igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: > > shard-iclb: PASS -> SKIP (i915#5235) +2 similar issues > > igt@kms_psr2_sf@overlay-plane-move-continuous-sf: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#658) +2 similar issues > > igt@kms_psr@psr2_cursor_plane_onoff: > > shard-iclb: PASS -> SKIP (fdo#109441) > > igt@kms_psr@psr2_primary_mmap_cpu: > > shard-tglb: NOTRUN -> FAIL (i915#132 / i915#3467) > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > shard-iclb: PASS -> SKIP (i915#5519) > > igt@kms_selftest@all: > > shard-tglb: NOTRUN -> SKIP (i915#6433) > > shard-iclb: NOTRUN -> SKIP (i915#6433) > > igt@kms_vblank@pipe-d-wait-idle: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#533) > > igt@kms_writeback@writeback-check-output: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2437) > > igt@prime_vgem@fence-flip-hang: > > shard-tglb: NOTRUN -> SKIP (fdo#109295) > > shard-iclb: NOTRUN -> SKIP (fdo#109295) > > igt@sysfs_clients@fair-1: > > shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > shard-iclb: NOTRUN -> SKIP (i915#2994) > > Possible fixes > > igt@gem_ctx_exec@basic-nohangcheck: > > shard-tglb: FAIL (i915#6268) -> PASS > > igt@gem_exec_balancer@parallel-out-fence: > > shard-iclb: SKIP (i915#4525) -> PASS > > igt@gem_workarounds@suspend-resume-context: > > shard-apl: DMESG-WARN (i915#180) -> PASS +3 similar issues > > igt@i915_selftest@mock@sanitycheck: > > shard-snb: SKIP (fdo#109271) -> PASS +1 similar issue > > igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1: > > shard-glk: DMESG-WARN (i915#118) -> PASS +1 similar issue > > igt@kms_big_fb@y-tiled-64bpp-rotate-180: > > shard-glk: FAIL (i915#5138) -> PASS > > igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: > > shard-glk: FAIL (i915#79) -> PASS +1 similar issue > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > > shard-iclb: SKIP (i915#5235) -> PASS +2 similar issues > > igt@kms_psr@psr2_primary_blt: > > shard-iclb: SKIP (fdo#109441) -> PASS +3 similar issues > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > shard-tglb: SKIP (i915#5519) -> PASS > > Warnings > > igt@gem_pwrite@basic-exhaustion: > > shard-tglb: INCOMPLETE (i915#7248) -> WARN (i915#2658) > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > > shard-iclb: SKIP (i915#2920) -> SKIP (i915#658) +1 similar issue > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: > > shard-iclb: SKIP (i915#2920) -> SKIP (fdo#111068 / i915#658) +1 > similar issue > > {name}: This element is suppressed. This means it is ignored when > computing the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > CI: CI-20190529 -> None > IGT: IGT_7046 -> IGTPW_8059 > Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12351: 74d8166a994863d1f83e842c1822506a8f6aa806 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8059: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html > IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub 2022-11-07 18:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-07 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-09 6:06 ` Patchwork 2022-11-10 8:34 ` [igt-dev] [PATCH] [NEW] " Petri Latvala ` (10 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-09 6:06 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 31399 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from CI_DRM_12351_full -> IGTPW_8059_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html Participating hosts (9 -> 6) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 New tests --------- New tests have been introduced between CI_DRM_12351_full and IGTPW_8059_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8059_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1099]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [PASS][2] -> [SKIP][3] ([i915#4525]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@gem_exec_balancer@parallel-balancer.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][4] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][7] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][8] ([fdo#112283]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_exec_params@secure-non-root.html - shard-tglb: NOTRUN -> [SKIP][9] ([fdo#112283]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl8/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#2190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk6/igt@gem_huc_copy@huc-copy.html - shard-iclb: NOTRUN -> [SKIP][12] ([i915#2190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@gem_huc_copy@huc-copy.html * igt@gem_mmap_gtt@coherency: - shard-tglb: NOTRUN -> [SKIP][13] ([fdo#111656]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@gem_mmap_gtt@coherency.html - shard-iclb: NOTRUN -> [SKIP][14] ([fdo#109292]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_mmap_gtt@coherency.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][15] ([i915#2658]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@gem_pread@exhaustion.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglb: NOTRUN -> [SKIP][16] ([i915#4270]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-iclb: NOTRUN -> [SKIP][17] ([i915#4270]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#768]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglb: NOTRUN -> [SKIP][19] ([i915#3297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-iclb: NOTRUN -> [SKIP][20] ([i915#3297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +188 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl2/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#5566] / [i915#716]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl2/igt@gen9_exec_parse@allowed-single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][24] ([i915#7036]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc5-psr: - shard-tglb: [PASS][25] -> [FAIL][26] ([i915#3989]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb1/igt@i915_pm_dc@dc5-psr.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_rps@engine-order: - shard-apl: NOTRUN -> [FAIL][27] ([i915#6537]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@i915_pm_rps@engine-order.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][28] -> [DMESG-WARN][29] ([i915#180]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#3826]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][31] ([i915#3826]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][32] ([i915#4765]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#5286]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][34] ([i915#5286]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271]) +49 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111615]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#6095]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +5 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278]) +8 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111615] / [i915#3689]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689] / [i915#6095]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_chamelium@dp-edid-resolution-list.html - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109284]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_chamelium@dp-edid-resolution-list.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb7/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk8/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium@vga-frame-dump: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +8 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@kms_chamelium@vga-frame-dump.html * igt@kms_content_protection@uevent: - shard-iclb: NOTRUN -> [SKIP][50] ([i915#7118]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_content_protection@uevent.html - shard-tglb: NOTRUN -> [SKIP][51] ([i915#6944] / [i915#7118]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb1/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][52] ([i915#1339]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl2/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3555]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111825]) +7 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109274]) +11 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#2346]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor@toggle: - shard-iclb: [PASS][58] -> [FAIL][59] ([i915#2346]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb5/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-apl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#7205]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +133 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#2587] / [i915#2672]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][64] ([i915#2587] / [i915#2672]) +6 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][65] ([i915#3555]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][67] ([i915#2672] / [i915#3555]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][68] ([i915#6497]) +4 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109280] / [fdo#111825]) +7 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109280]) +7 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_multiple@tiling-y@pipe-b-edp-1: - shard-tglb: [PASS][73] -> [INCOMPLETE][74] ([i915#7503]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@kms_plane_multiple@tiling-y@pipe-b-edp-1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_plane_multiple@tiling-y@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][75] -> [SKIP][76] ([i915#5235]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][78] -> [SKIP][79] ([fdo#109441]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][80] ([i915#132] / [i915#3467]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb5/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][81] -> [SKIP][82] ([i915#5519]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_selftest@all: - shard-tglb: NOTRUN -> [SKIP][83] ([i915#6433]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@kms_selftest@all.html - shard-iclb: NOTRUN -> [SKIP][84] ([i915#6433]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb5/igt@kms_selftest@all.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2437]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@kms_writeback@writeback-check-output.html * igt@prime_vgem@fence-flip-hang: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109295]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@prime_vgem@fence-flip-hang.html - shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109295]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb6/igt@prime_vgem@fence-flip-hang.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2994]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl3/igt@sysfs_clients@fair-1.html - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk7/igt@sysfs_clients@fair-1.html - shard-iclb: NOTRUN -> [SKIP][91] ([i915#2994]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][92] ([i915#6268]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@gem_ctx_exec@basic-nohangcheck.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [SKIP][94] ([i915#4525]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb6/igt@gem_exec_balancer@parallel-out-fence.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-apl2/igt@gem_workarounds@suspend-resume-context.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-apl1/igt@gem_workarounds@suspend-resume-context.html * igt@i915_selftest@mock@sanitycheck: - shard-snb: [SKIP][98] ([fdo#109271]) -> [PASS][99] +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-snb6/igt@i915_selftest@mock@sanitycheck.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-snb6/igt@i915_selftest@mock@sanitycheck.html * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1: - shard-glk: [DMESG-WARN][100] ([i915#118]) -> [PASS][101] +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk2/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk3/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-1.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-glk: [FAIL][102] ([i915#5138]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk3/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk5/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][104] ([i915#79]) -> [PASS][105] +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][106] ([i915#5235]) -> [PASS][107] +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [SKIP][108] ([fdo#109441]) -> [PASS][109] +3 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb6/igt@kms_psr@psr2_primary_blt.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb2/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [SKIP][110] ([i915#5519]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html #### Warnings #### * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][112] ([i915#7248]) -> [WARN][113] ([i915#2658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-tglb8/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][114] ([i915#2920]) -> [SKIP][115] ([i915#658]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][116] ([i915#2920]) -> [SKIP][117] ([fdo#111068] / [i915#658]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12351/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7503]: https://gitlab.freedesktop.org/drm/intel/issues/7503 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7046 -> IGTPW_8059 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12351: 74d8166a994863d1f83e842c1822506a8f6aa806 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8059: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html IGT_7046: c58d96d0fe237474b074e3472ce09c57c830d5de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8059/index.html [-- Attachment #2: Type: text/html, Size: 38421 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (2 preceding siblings ...) 2022-11-09 6:06 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2022-11-10 8:34 ` Petri Latvala 2022-11-10 14:56 ` Kamil Konieczny ` (9 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Petri Latvala @ 2022-11-10 8:34 UTC (permalink / raw) To: Mark Yacoub Cc: robdclark, vsuley, markyacoub, igt-dev, kalin, seanpaul, ihf, matthewtlam, khaled.almahallawy, amstan On Mon, Nov 07, 2022 at 12:18:45PM -0500, Mark Yacoub wrote: > [Why] > 1. Users can change resolutions of monitors on the fly. > 2. Monitors can come with different shapes and form aka different modes. > Test a change between different modes on the fly. > > [How] > 1. Created an EDID based on a random combination of screen size, Refresh > Rate and Aspect Ratio. > 2. Set that EDID to Chamelium. > 3. Iterate over every mode on the connector, assign it to the connector > and check that the screen resolution changes to this one. > > Test Based on: [ChromeOS AutoTest > display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py) > > Tested on: TGL with Cv3 > > Signed-off-by: Mark Yacoub <markyacoub@chromium.org> > --- > lib/igt_edid.c | 4 +- > lib/igt_edid.h | 2 + > lib/igt_kms.c | 31 +++++++++++++++ > lib/igt_kms.h | 5 ++- > tests/chamelium/kms_chamelium.c | 68 +++++++++++++++++++++++++++++++++ > 5 files changed, 107 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_edid.c b/lib/igt_edid.c > index bff13a0d..9c67e51b 100644 > --- a/lib/igt_edid.c > +++ b/lib/igt_edid.c > @@ -61,8 +61,8 @@ static const char monitor_range_padding[] = { > const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00}; > > /* vfreq is in Hz */ > -static void std_timing_set(struct std_timing *st, int hsize, int vfreq, > - enum std_timing_aspect aspect) > +void std_timing_set(struct std_timing *st, int hsize, int vfreq, > + enum std_timing_aspect aspect) Making this non-static comes with the cost of now having to write documentation for it. > { > assert(hsize >= 256 && hsize <= 2288); > st->hsize = hsize / 8 - 31; > diff --git a/lib/igt_edid.h b/lib/igt_edid.h > index a9251d68..609f3cd4 100644 > --- a/lib/igt_edid.h > +++ b/lib/igt_edid.h > @@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid); > void edid_get_mfg(const struct edid *edid, char out[static 3]); > uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid); > uint8_t edid_get_bit_depth_from_vid(const struct edid *edid); > +void std_timing_set(struct std_timing *st, int hsize, int vfreq, > + enum std_timing_aspect aspect); // rename > void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode, > int width_mm, int height_mm); > void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt, > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 921a623d..437977a7 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -133,6 +133,35 @@ const struct edid *igt_kms_get_base_edid(void) > return &edid; > } > > +const struct edid *igt_kms_get_full_edid(void) > +{ > + static struct edid edid; > + drmModeModeInfo mode = {}; > + mode.clock = 148500; > + mode.hdisplay = 2288; > + mode.hsync_start = 2008; > + mode.hsync_end = 2052; > + mode.htotal = 2200; > + mode.vdisplay = 1287; > + mode.vsync_start = 1084; > + mode.vsync_end = 1089; > + mode.vtotal = 1125; > + mode.vrefresh = 144; > + edid_init_with_mode(&edid, &mode); > + > + std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9); > + std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9); > + > + edid_update_checksum(&edid); > + return &edid; > +} > + > const struct edid *igt_kms_get_base_tile_edid(void) > { > static struct edid edid; > @@ -548,6 +577,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid) > switch (edid) { > case IGT_CUSTOM_EDID_BASE: > return igt_kms_get_base_edid(); > + case IGT_CUSTOM_EDID_FULL: > + return igt_kms_get_full_edid(); > case IGT_CUSTOM_EDID_ALT: > return igt_kms_get_alt_edid(); > case IGT_CUSTOM_EDID_HDMI_AUDIO: > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index b09441d0..7a00d204 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -82,6 +82,7 @@ enum port { > * > * Enum used for the helper function igt_custom_edid_type > * @IGT_CUSTOM_EDID_BASE: Returns base edid > + * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings. > * @IGT_CUSTOM_EDID_ALT: Returns alternate edid > * @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block > * @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block > @@ -89,12 +90,13 @@ enum port { > */ > enum igt_custom_edid_type { > IGT_CUSTOM_EDID_BASE, > + IGT_CUSTOM_EDID_FULL, > IGT_CUSTOM_EDID_ALT, > IGT_CUSTOM_EDID_HDMI_AUDIO, > IGT_CUSTOM_EDID_DP_AUDIO, > IGT_CUSTOM_EDID_ASPECT_RATIO, > }; > -#define IGT_CUSTOM_EDID_COUNT 5 > +#define IGT_CUSTOM_EDID_COUNT 6 > > /** > * kmstest_port_name: > @@ -865,6 +867,7 @@ void igt_reset_connectors(void); > uint32_t kmstest_get_vbl_flag(int crtc_offset); > > const struct edid *igt_kms_get_base_edid(void); > +const struct edid *igt_kms_get_full_edid(void); > const struct edid *igt_kms_get_base_tile_edid(void); > const struct edid *igt_kms_get_alt_edid(void); > const struct edid *igt_kms_get_hdmi_audio_edid(void); > diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c > index 2bc97d5a..c8fbc45c 100644 > --- a/tests/chamelium/kms_chamelium.c > +++ b/tests/chamelium/kms_chamelium.c > @@ -2612,6 +2612,70 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, > data->ports, data->port_count); > } > > +static const char igt_edid_resolution_list_desc[] = > + "Get an EDID with many modes of different configurations, set them on the screen and check the" > + "screen resolution matches the mode resolution."; > +static void edid_resolution_list(data_t *data, struct chamelium_port *port) > +{ > + struct chamelium *chamelium = data->chamelium; > + struct udev_monitor *mon = igt_watch_uevents(); > + drmModeConnector *init_connector; > + drmModeModeInfoPtr modes; > + int count_modes; > + int i; > + igt_output_t *output; > + enum pipe pipe; > + > + chamelium_unplug(chamelium, port); > + set_edid(data, port, IGT_CUSTOM_EDID_FULL); > + > + igt_flush_uevents(mon); > + chamelium_plug(chamelium, port); > + wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED); > + igt_flush_uevents(mon); > + > + init_connector = chamelium_port_get_connector(chamelium, port, true); > + modes = init_connector->modes; > + count_modes = init_connector->count_modes; > + > + output = get_output_for_port(data, port); > + pipe = get_pipe_for_output(&data->display, output); > + igt_output_set_pipe(output, pipe); > + > + for (i = 0; i < count_modes; ++i) > + igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh); > + > + for (i = 0; i < count_modes; ++i) { > + struct chamelium_edid *chamelium_edid; > + struct igt_fb fb = { 0 }; > + bool is_video_stable; > + int screen_res_w, screen_res_h; > + drmModeConnector *connector; > + drmModeModeInfoPtr expected_mode; > + bool is_same_mode; > + > + igt_info("Testing #%d %s %uHz\n", i, modes[i].name, > + modes[i].vrefresh); > + > + /* Set the screen mode with the one we chose. */ > + create_fb_for_mode(data, &fb, &modes[i]); > + enable_output(data, port, output, &modes[i], &fb); > + is_video_stable = chamelium_port_wait_video_input_stable( > + chamelium, port, 10); > + igt_assert(is_video_stable); > + > + chamelium_port_get_resolution(chamelium, port, &screen_res_w, > + &screen_res_h); > + igt_assert(screen_res_w == modes[i].hdisplay); > + igt_assert(screen_res_h == modes[i].vdisplay); Use igt_assert_eq for == comparison. -- Petri Latvala > + > + igt_remove_fb(data->drm_fd, &fb); > + } > + > + igt_modeset_disable_all_outputs(&data->display); > + drmModeFreeConnector(init_connector); > +} > + > #define for_each_port(p, port) \ > for (p = 0, port = data.ports[p]; \ > p < data.port_count; \ > @@ -2714,6 +2778,10 @@ igt_main > edid_stress_resolution(&data, port, DP_EDIDS_NON_4K, > ARRAY_SIZE(DP_EDIDS_NON_4K)); > > + igt_describe(igt_edid_resolution_list_desc); > + connector_subtest("dp-edid-resolution-list", DisplayPort) > + edid_resolution_list(&data, port); > + > igt_describe(test_suspend_resume_hpd_desc); > connector_subtest("dp-hpd-after-suspend", DisplayPort) > test_suspend_resume_hpd(&data, port, > -- > 2.38.1.431.g37b22c650d-goog > ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (3 preceding siblings ...) 2022-11-10 8:34 ` [igt-dev] [PATCH] [NEW] " Petri Latvala @ 2022-11-10 14:56 ` Kamil Konieczny 2022-11-10 17:41 ` [igt-dev] [PATCH v2] " Mark Yacoub ` (8 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Kamil Konieczny @ 2022-11-10 14:56 UTC (permalink / raw) To: igt-dev Cc: robdclark, vsuley, petri.latvala, markyacoub, kalin, seanpaul, ihf, matthewtlam, khaled.almahallawy, amstan Hi Mark, I have few nits, see below. On 2022-11-07 at 12:18:45 -0500, Mark Yacoub wrote: > [Why] > 1. Users can change resolutions of monitors on the fly. > 2. Monitors can come with different shapes and form aka different modes. > Test a change between different modes on the fly. > > [How] > 1. Created an EDID based on a random combination of screen size, Refresh > Rate and Aspect Ratio. > 2. Set that EDID to Chamelium. > 3. Iterate over every mode on the connector, assign it to the connector > and check that the screen resolution changes to this one. > > Test Based on: [ChromeOS AutoTest > display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py) > > Tested on: TGL with Cv3 > > Signed-off-by: Mark Yacoub <markyacoub@chromium.org> > --- > lib/igt_edid.c | 4 +- > lib/igt_edid.h | 2 + > lib/igt_kms.c | 31 +++++++++++++++ > lib/igt_kms.h | 5 ++- > tests/chamelium/kms_chamelium.c | 68 +++++++++++++++++++++++++++++++++ > 5 files changed, 107 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_edid.c b/lib/igt_edid.c > index bff13a0d..9c67e51b 100644 > --- a/lib/igt_edid.c > +++ b/lib/igt_edid.c > @@ -61,8 +61,8 @@ static const char monitor_range_padding[] = { > const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00}; > > /* vfreq is in Hz */ > -static void std_timing_set(struct std_timing *st, int hsize, int vfreq, > - enum std_timing_aspect aspect) > +void std_timing_set(struct std_timing *st, int hsize, int vfreq, > + enum std_timing_aspect aspect) > { > assert(hsize >= 256 && hsize <= 2288); > st->hsize = hsize / 8 - 31; > diff --git a/lib/igt_edid.h b/lib/igt_edid.h > index a9251d68..609f3cd4 100644 > --- a/lib/igt_edid.h > +++ b/lib/igt_edid.h > @@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid); > void edid_get_mfg(const struct edid *edid, char out[static 3]); > uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid); > uint8_t edid_get_bit_depth_from_vid(const struct edid *edid); > +void std_timing_set(struct std_timing *st, int hsize, int vfreq, > + enum std_timing_aspect aspect); // rename --------------------------------------------------- ^ Remove this or did you mean naming this function edid_std_timing_set ? > void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode, > int width_mm, int height_mm); > void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt, > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 921a623d..437977a7 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -133,6 +133,35 @@ const struct edid *igt_kms_get_base_edid(void) > return &edid; > } > > +const struct edid *igt_kms_get_full_edid(void) > +{ > + static struct edid edid; > + drmModeModeInfo mode = {}; Put newline here. > + mode.clock = 148500; > + mode.hdisplay = 2288; > + mode.hsync_start = 2008; > + mode.hsync_end = 2052; > + mode.htotal = 2200; > + mode.vdisplay = 1287; > + mode.vsync_start = 1084; > + mode.vsync_end = 1089; > + mode.vtotal = 1125; > + mode.vrefresh = 144; > + edid_init_with_mode(&edid, &mode); > + > + std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9); > + std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9); > + > + edid_update_checksum(&edid); > + return &edid; > +} > + > const struct edid *igt_kms_get_base_tile_edid(void) > { > static struct edid edid; > @@ -548,6 +577,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid) > switch (edid) { > case IGT_CUSTOM_EDID_BASE: > return igt_kms_get_base_edid(); > + case IGT_CUSTOM_EDID_FULL: > + return igt_kms_get_full_edid(); > case IGT_CUSTOM_EDID_ALT: > return igt_kms_get_alt_edid(); > case IGT_CUSTOM_EDID_HDMI_AUDIO: > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index b09441d0..7a00d204 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -82,6 +82,7 @@ enum port { > * > * Enum used for the helper function igt_custom_edid_type > * @IGT_CUSTOM_EDID_BASE: Returns base edid > + * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings. > * @IGT_CUSTOM_EDID_ALT: Returns alternate edid > * @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block > * @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block > @@ -89,12 +90,13 @@ enum port { > */ > enum igt_custom_edid_type { > IGT_CUSTOM_EDID_BASE, > + IGT_CUSTOM_EDID_FULL, > IGT_CUSTOM_EDID_ALT, > IGT_CUSTOM_EDID_HDMI_AUDIO, > IGT_CUSTOM_EDID_DP_AUDIO, > IGT_CUSTOM_EDID_ASPECT_RATIO, > }; > -#define IGT_CUSTOM_EDID_COUNT 5 > +#define IGT_CUSTOM_EDID_COUNT 6 > > /** > * kmstest_port_name: > @@ -865,6 +867,7 @@ void igt_reset_connectors(void); > uint32_t kmstest_get_vbl_flag(int crtc_offset); > > const struct edid *igt_kms_get_base_edid(void); > +const struct edid *igt_kms_get_full_edid(void); > const struct edid *igt_kms_get_base_tile_edid(void); > const struct edid *igt_kms_get_alt_edid(void); > const struct edid *igt_kms_get_hdmi_audio_edid(void); > diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c > index 2bc97d5a..c8fbc45c 100644 > --- a/tests/chamelium/kms_chamelium.c > +++ b/tests/chamelium/kms_chamelium.c > @@ -2612,6 +2612,70 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, > data->ports, data->port_count); > } > > +static const char igt_edid_resolution_list_desc[] = > + "Get an EDID with many modes of different configurations, set them on the screen and check the" > + "screen resolution matches the mode resolution."; -------- ^ Put space before screen word. You can test it with --describe option. Put also newline here. Regards, Kamil > +static void edid_resolution_list(data_t *data, struct chamelium_port *port) > +{ > + struct chamelium *chamelium = data->chamelium; > + struct udev_monitor *mon = igt_watch_uevents(); > + drmModeConnector *init_connector; > + drmModeModeInfoPtr modes; > + int count_modes; > + int i; > + igt_output_t *output; > + enum pipe pipe; > + > + chamelium_unplug(chamelium, port); > + set_edid(data, port, IGT_CUSTOM_EDID_FULL); > + > + igt_flush_uevents(mon); > + chamelium_plug(chamelium, port); > + wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED); > + igt_flush_uevents(mon); > + > + init_connector = chamelium_port_get_connector(chamelium, port, true); > + modes = init_connector->modes; > + count_modes = init_connector->count_modes; > + > + output = get_output_for_port(data, port); > + pipe = get_pipe_for_output(&data->display, output); > + igt_output_set_pipe(output, pipe); > + > + for (i = 0; i < count_modes; ++i) > + igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh); > + > + for (i = 0; i < count_modes; ++i) { > + struct chamelium_edid *chamelium_edid; > + struct igt_fb fb = { 0 }; > + bool is_video_stable; > + int screen_res_w, screen_res_h; > + drmModeConnector *connector; > + drmModeModeInfoPtr expected_mode; > + bool is_same_mode; > + > + igt_info("Testing #%d %s %uHz\n", i, modes[i].name, > + modes[i].vrefresh); > + > + /* Set the screen mode with the one we chose. */ > + create_fb_for_mode(data, &fb, &modes[i]); > + enable_output(data, port, output, &modes[i], &fb); > + is_video_stable = chamelium_port_wait_video_input_stable( > + chamelium, port, 10); > + igt_assert(is_video_stable); > + > + chamelium_port_get_resolution(chamelium, port, &screen_res_w, > + &screen_res_h); > + igt_assert(screen_res_w == modes[i].hdisplay); > + igt_assert(screen_res_h == modes[i].vdisplay); > + > + igt_remove_fb(data->drm_fd, &fb); > + } > + > + igt_modeset_disable_all_outputs(&data->display); > + drmModeFreeConnector(init_connector); > +} > + > #define for_each_port(p, port) \ > for (p = 0, port = data.ports[p]; \ > p < data.port_count; \ > @@ -2714,6 +2778,10 @@ igt_main > edid_stress_resolution(&data, port, DP_EDIDS_NON_4K, > ARRAY_SIZE(DP_EDIDS_NON_4K)); > > + igt_describe(igt_edid_resolution_list_desc); > + connector_subtest("dp-edid-resolution-list", DisplayPort) > + edid_resolution_list(&data, port); > + > igt_describe(test_suspend_resume_hpd_desc); > connector_subtest("dp-hpd-after-suspend", DisplayPort) > test_suspend_resume_hpd(&data, port, > -- > 2.38.1.431.g37b22c650d-goog > ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] [PATCH v2] [NEW] Chamelium: Add new EDID Resolution List test 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (4 preceding siblings ...) 2022-11-10 14:56 ` Kamil Konieczny @ 2022-11-10 17:41 ` Mark Yacoub 2022-11-15 17:52 ` [igt-dev] [PATCH v3] " Mark Yacoub 2022-11-10 18:24 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev2) Patchwork ` (7 subsequent siblings) 13 siblings, 1 reply; 23+ messages in thread From: Mark Yacoub @ 2022-11-10 17:41 UTC (permalink / raw) To: igt-dev Cc: robdclark, vsuley, petri.latvala, ihf, amstan, kalin, seanpaul, matthewtlam, khaled.almahallawy, markyacoub [Why] 1. Users can change resolutions of monitors on the fly. 2. Monitors can come with different shapes and form aka different modes. Test a change between different modes on the fly. [How] 1. Created an EDID based on a random combination of screen size, Refresh Rate and Aspect Ratio. 2. Set that EDID to Chamelium. 3. Iterate over every mode on the connector, assign it to the connector and check that the screen resolution changes to this one. Test Based on: [ChromeOS AutoTest display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py) Tested on: TGL with Cv3 Signed-off-by: Mark Yacoub <markyacoub@chromium.org> --- lib/igt_edid.c | 4 +- lib/igt_edid.h | 2 + lib/igt_kms.c | 31 +++++++++++++++ lib/igt_kms.h | 5 ++- tests/chamelium/kms_chamelium.c | 68 +++++++++++++++++++++++++++++++++ 5 files changed, 107 insertions(+), 3 deletions(-) diff --git a/lib/igt_edid.c b/lib/igt_edid.c index bff13a0d..9c67e51b 100644 --- a/lib/igt_edid.c +++ b/lib/igt_edid.c @@ -61,8 +61,8 @@ static const char monitor_range_padding[] = { const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00}; /* vfreq is in Hz */ -static void std_timing_set(struct std_timing *st, int hsize, int vfreq, - enum std_timing_aspect aspect) +void std_timing_set(struct std_timing *st, int hsize, int vfreq, + enum std_timing_aspect aspect) { assert(hsize >= 256 && hsize <= 2288); st->hsize = hsize / 8 - 31; diff --git a/lib/igt_edid.h b/lib/igt_edid.h index a9251d68..609f3cd4 100644 --- a/lib/igt_edid.h +++ b/lib/igt_edid.h @@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid); void edid_get_mfg(const struct edid *edid, char out[static 3]); uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid); uint8_t edid_get_bit_depth_from_vid(const struct edid *edid); +void std_timing_set(struct std_timing *st, int hsize, int vfreq, + enum std_timing_aspect aspect); // rename void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode, int width_mm, int height_mm); void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt, diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 921a623d..437977a7 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -133,6 +133,35 @@ const struct edid *igt_kms_get_base_edid(void) return &edid; } +const struct edid *igt_kms_get_full_edid(void) +{ + static struct edid edid; + drmModeModeInfo mode = {}; + mode.clock = 148500; + mode.hdisplay = 2288; + mode.hsync_start = 2008; + mode.hsync_end = 2052; + mode.htotal = 2200; + mode.vdisplay = 1287; + mode.vsync_start = 1084; + mode.vsync_end = 1089; + mode.vtotal = 1125; + mode.vrefresh = 144; + edid_init_with_mode(&edid, &mode); + + std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10); + std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3); + std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4); + std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9); + std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10); + std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3); + std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4); + std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9); + + edid_update_checksum(&edid); + return &edid; +} + const struct edid *igt_kms_get_base_tile_edid(void) { static struct edid edid; @@ -548,6 +577,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid) switch (edid) { case IGT_CUSTOM_EDID_BASE: return igt_kms_get_base_edid(); + case IGT_CUSTOM_EDID_FULL: + return igt_kms_get_full_edid(); case IGT_CUSTOM_EDID_ALT: return igt_kms_get_alt_edid(); case IGT_CUSTOM_EDID_HDMI_AUDIO: diff --git a/lib/igt_kms.h b/lib/igt_kms.h index b09441d0..7a00d204 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -82,6 +82,7 @@ enum port { * * Enum used for the helper function igt_custom_edid_type * @IGT_CUSTOM_EDID_BASE: Returns base edid + * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings. * @IGT_CUSTOM_EDID_ALT: Returns alternate edid * @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block * @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block @@ -89,12 +90,13 @@ enum port { */ enum igt_custom_edid_type { IGT_CUSTOM_EDID_BASE, + IGT_CUSTOM_EDID_FULL, IGT_CUSTOM_EDID_ALT, IGT_CUSTOM_EDID_HDMI_AUDIO, IGT_CUSTOM_EDID_DP_AUDIO, IGT_CUSTOM_EDID_ASPECT_RATIO, }; -#define IGT_CUSTOM_EDID_COUNT 5 +#define IGT_CUSTOM_EDID_COUNT 6 /** * kmstest_port_name: @@ -865,6 +867,7 @@ void igt_reset_connectors(void); uint32_t kmstest_get_vbl_flag(int crtc_offset); const struct edid *igt_kms_get_base_edid(void); +const struct edid *igt_kms_get_full_edid(void); const struct edid *igt_kms_get_base_tile_edid(void); const struct edid *igt_kms_get_alt_edid(void); const struct edid *igt_kms_get_hdmi_audio_edid(void); diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c index 2bc97d5a..c8fbc45c 100644 --- a/tests/chamelium/kms_chamelium.c +++ b/tests/chamelium/kms_chamelium.c @@ -2612,6 +2612,70 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, data->ports, data->port_count); } +static const char igt_edid_resolution_list_desc[] = + "Get an EDID with many modes of different configurations, set them on the screen and check the" + "screen resolution matches the mode resolution."; +static void edid_resolution_list(data_t *data, struct chamelium_port *port) +{ + struct chamelium *chamelium = data->chamelium; + struct udev_monitor *mon = igt_watch_uevents(); + drmModeConnector *init_connector; + drmModeModeInfoPtr modes; + int count_modes; + int i; + igt_output_t *output; + enum pipe pipe; + + chamelium_unplug(chamelium, port); + set_edid(data, port, IGT_CUSTOM_EDID_FULL); + + igt_flush_uevents(mon); + chamelium_plug(chamelium, port); + wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED); + igt_flush_uevents(mon); + + init_connector = chamelium_port_get_connector(chamelium, port, true); + modes = init_connector->modes; + count_modes = init_connector->count_modes; + + output = get_output_for_port(data, port); + pipe = get_pipe_for_output(&data->display, output); + igt_output_set_pipe(output, pipe); + + for (i = 0; i < count_modes; ++i) + igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh); + + for (i = 0; i < count_modes; ++i) { + struct chamelium_edid *chamelium_edid; + struct igt_fb fb = { 0 }; + bool is_video_stable; + int screen_res_w, screen_res_h; + drmModeConnector *connector; + drmModeModeInfoPtr expected_mode; + bool is_same_mode; + + igt_info("Testing #%d %s %uHz\n", i, modes[i].name, + modes[i].vrefresh); + + /* Set the screen mode with the one we chose. */ + create_fb_for_mode(data, &fb, &modes[i]); + enable_output(data, port, output, &modes[i], &fb); + is_video_stable = chamelium_port_wait_video_input_stable( + chamelium, port, 10); + igt_assert(is_video_stable); + + chamelium_port_get_resolution(chamelium, port, &screen_res_w, + &screen_res_h); + igt_assert(screen_res_w == modes[i].hdisplay); + igt_assert(screen_res_h == modes[i].vdisplay); + + igt_remove_fb(data->drm_fd, &fb); + } + + igt_modeset_disable_all_outputs(&data->display); + drmModeFreeConnector(init_connector); +} + #define for_each_port(p, port) \ for (p = 0, port = data.ports[p]; \ p < data.port_count; \ @@ -2714,6 +2778,10 @@ igt_main edid_stress_resolution(&data, port, DP_EDIDS_NON_4K, ARRAY_SIZE(DP_EDIDS_NON_4K)); + igt_describe(igt_edid_resolution_list_desc); + connector_subtest("dp-edid-resolution-list", DisplayPort) + edid_resolution_list(&data, port); + igt_describe(test_suspend_resume_hpd_desc); connector_subtest("dp-hpd-after-suspend", DisplayPort) test_suspend_resume_hpd(&data, port, -- 2.38.1.431.g37b22c650d-goog ^ permalink raw reply related [flat|nested] 23+ messages in thread
* [igt-dev] [PATCH v3] [NEW] Chamelium: Add new EDID Resolution List test 2022-11-10 17:41 ` [igt-dev] [PATCH v2] " Mark Yacoub @ 2022-11-15 17:52 ` Mark Yacoub 2022-11-16 9:41 ` Petri Latvala 0 siblings, 1 reply; 23+ messages in thread From: Mark Yacoub @ 2022-11-15 17:52 UTC (permalink / raw) To: igt-dev Cc: robdclark, vsuley, petri.latvala, ihf, amstan, kalin, seanpaul, matthewtlam, khaled.almahallawy, markyacoub [Why] 1. Users can change resolutions of monitors on the fly. 2. Monitors can come with different shapes and form aka different modes. Test a change between different modes on the fly. [How] 1. Created an EDID based on a random combination of screen size, Refresh Rate and Aspect Ratio. 2. Set that EDID to Chamelium. 3. Iterate over every mode on the connector, assign it to the connector and check that the screen resolution changes to this one. Test Based on: [ChromeOS AutoTest display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py) Tested on: TGL with Cv3 Signed-off-by: Mark Yacoub <markyacoub@chromium.org> --- lib/igt_edid.c | 7 +++- lib/igt_edid.h | 2 + lib/igt_kms.c | 32 +++++++++++++++ lib/igt_kms.h | 5 ++- tests/chamelium/kms_chamelium.c | 69 +++++++++++++++++++++++++++++++++ 5 files changed, 112 insertions(+), 3 deletions(-) diff --git a/lib/igt_edid.c b/lib/igt_edid.c index bff13a0d..b5e0b4ba 100644 --- a/lib/igt_edid.c +++ b/lib/igt_edid.c @@ -60,8 +60,11 @@ static const char monitor_range_padding[] = { const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00}; -/* vfreq is in Hz */ -static void std_timing_set(struct std_timing *st, int hsize, int vfreq, +/** + * std_timing_set: Sets the EDID standard timing for a given |hsize|, |vfreq| + * in Hz and |aspect| ratio + */ + void std_timing_set(struct std_timing *st, int hsize, int vfreq, enum std_timing_aspect aspect) { assert(hsize >= 256 && hsize <= 2288); diff --git a/lib/igt_edid.h b/lib/igt_edid.h index a9251d68..477f16c2 100644 --- a/lib/igt_edid.h +++ b/lib/igt_edid.h @@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid); void edid_get_mfg(const struct edid *edid, char out[static 3]); uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid); uint8_t edid_get_bit_depth_from_vid(const struct edid *edid); +void std_timing_set(struct std_timing *st, int hsize, int vfreq, + enum std_timing_aspect aspect); void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode, int width_mm, int height_mm); void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt, diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 921a623d..b4a98ae1 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -133,6 +133,36 @@ const struct edid *igt_kms_get_base_edid(void) return &edid; } +const struct edid *igt_kms_get_full_edid(void) +{ + static struct edid edid; + drmModeModeInfo mode = {}; + + mode.clock = 148500; + mode.hdisplay = 2288; + mode.hsync_start = 2008; + mode.hsync_end = 2052; + mode.htotal = 2200; + mode.vdisplay = 1287; + mode.vsync_start = 1084; + mode.vsync_end = 1089; + mode.vtotal = 1125; + mode.vrefresh = 144; + edid_init_with_mode(&edid, &mode); + + std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10); + std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3); + std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4); + std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9); + std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10); + std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3); + std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4); + std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9); + + edid_update_checksum(&edid); + return &edid; +} + const struct edid *igt_kms_get_base_tile_edid(void) { static struct edid edid; @@ -548,6 +578,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid) switch (edid) { case IGT_CUSTOM_EDID_BASE: return igt_kms_get_base_edid(); + case IGT_CUSTOM_EDID_FULL: + return igt_kms_get_full_edid(); case IGT_CUSTOM_EDID_ALT: return igt_kms_get_alt_edid(); case IGT_CUSTOM_EDID_HDMI_AUDIO: diff --git a/lib/igt_kms.h b/lib/igt_kms.h index b09441d0..7a00d204 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -82,6 +82,7 @@ enum port { * * Enum used for the helper function igt_custom_edid_type * @IGT_CUSTOM_EDID_BASE: Returns base edid + * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings. * @IGT_CUSTOM_EDID_ALT: Returns alternate edid * @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block * @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block @@ -89,12 +90,13 @@ enum port { */ enum igt_custom_edid_type { IGT_CUSTOM_EDID_BASE, + IGT_CUSTOM_EDID_FULL, IGT_CUSTOM_EDID_ALT, IGT_CUSTOM_EDID_HDMI_AUDIO, IGT_CUSTOM_EDID_DP_AUDIO, IGT_CUSTOM_EDID_ASPECT_RATIO, }; -#define IGT_CUSTOM_EDID_COUNT 5 +#define IGT_CUSTOM_EDID_COUNT 6 /** * kmstest_port_name: @@ -865,6 +867,7 @@ void igt_reset_connectors(void); uint32_t kmstest_get_vbl_flag(int crtc_offset); const struct edid *igt_kms_get_base_edid(void); +const struct edid *igt_kms_get_full_edid(void); const struct edid *igt_kms_get_base_tile_edid(void); const struct edid *igt_kms_get_alt_edid(void); const struct edid *igt_kms_get_hdmi_audio_edid(void); diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c index 2bc97d5a..d2ec5175 100644 --- a/tests/chamelium/kms_chamelium.c +++ b/tests/chamelium/kms_chamelium.c @@ -2612,6 +2612,71 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, data->ports, data->port_count); } +static const char igt_edid_resolution_list_desc[] = + "Get an EDID with many modes of different configurations, set them on the screen and check the" + " screen resolution matches the mode resolution."; + +static void edid_resolution_list(data_t *data, struct chamelium_port *port) +{ + struct chamelium *chamelium = data->chamelium; + struct udev_monitor *mon = igt_watch_uevents(); + drmModeConnector *init_connector; + drmModeModeInfoPtr modes; + int count_modes; + int i; + igt_output_t *output; + enum pipe pipe; + + chamelium_unplug(chamelium, port); + set_edid(data, port, IGT_CUSTOM_EDID_FULL); + + igt_flush_uevents(mon); + chamelium_plug(chamelium, port); + wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED); + igt_flush_uevents(mon); + + init_connector = chamelium_port_get_connector(chamelium, port, true); + modes = init_connector->modes; + count_modes = init_connector->count_modes; + + output = get_output_for_port(data, port); + pipe = get_pipe_for_output(&data->display, output); + igt_output_set_pipe(output, pipe); + + for (i = 0; i < count_modes; ++i) + igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh); + + for (i = 0; i < count_modes; ++i) { + struct chamelium_edid *chamelium_edid; + struct igt_fb fb = { 0 }; + bool is_video_stable; + int screen_res_w, screen_res_h; + drmModeConnector *connector; + drmModeModeInfoPtr expected_mode; + bool is_same_mode; + + igt_info("Testing #%d %s %uHz\n", i, modes[i].name, + modes[i].vrefresh); + + /* Set the screen mode with the one we chose. */ + create_fb_for_mode(data, &fb, &modes[i]); + enable_output(data, port, output, &modes[i], &fb); + is_video_stable = chamelium_port_wait_video_input_stable( + chamelium, port, 10); + igt_assert(is_video_stable); + + chamelium_port_get_resolution(chamelium, port, &screen_res_w, + &screen_res_h); + igt_assert_eq(screen_res_w, modes[i].hdisplay); + igt_assert_eq(screen_res_h, modes[i].vdisplay); + + igt_remove_fb(data->drm_fd, &fb); + } + + igt_modeset_disable_all_outputs(&data->display); + drmModeFreeConnector(init_connector); +} + #define for_each_port(p, port) \ for (p = 0, port = data.ports[p]; \ p < data.port_count; \ @@ -2714,6 +2779,10 @@ igt_main edid_stress_resolution(&data, port, DP_EDIDS_NON_4K, ARRAY_SIZE(DP_EDIDS_NON_4K)); + igt_describe(igt_edid_resolution_list_desc); + connector_subtest("dp-edid-resolution-list", DisplayPort) + edid_resolution_list(&data, port); + igt_describe(test_suspend_resume_hpd_desc); connector_subtest("dp-hpd-after-suspend", DisplayPort) test_suspend_resume_hpd(&data, port, -- 2.38.1.431.g37b22c650d-goog ^ permalink raw reply related [flat|nested] 23+ messages in thread
* Re: [igt-dev] [PATCH v3] [NEW] Chamelium: Add new EDID Resolution List test 2022-11-15 17:52 ` [igt-dev] [PATCH v3] " Mark Yacoub @ 2022-11-16 9:41 ` Petri Latvala 0 siblings, 0 replies; 23+ messages in thread From: Petri Latvala @ 2022-11-16 9:41 UTC (permalink / raw) To: Mark Yacoub Cc: robdclark, vsuley, amstan, ihf, igt-dev, kalin, seanpaul, matthewtlam, markyacoub, khaled.almahallawy On Tue, Nov 15, 2022 at 12:52:57PM -0500, Mark Yacoub wrote: > [Why] > 1. Users can change resolutions of monitors on the fly. > 2. Monitors can come with different shapes and form aka different modes. > Test a change between different modes on the fly. > > [How] > 1. Created an EDID based on a random combination of screen size, Refresh > Rate and Aspect Ratio. > 2. Set that EDID to Chamelium. > 3. Iterate over every mode on the connector, assign it to the connector > and check that the screen resolution changes to this one. > > Test Based on: [ChromeOS AutoTest > display_ResolutionList](https://chromium.googlesource.com/chromiumos/third_party/autotest/+/HEAD/server/site_tests/display_ResolutionList/display_ResolutionList.py) > > Tested on: TGL with Cv3 > > Signed-off-by: Mark Yacoub <markyacoub@chromium.org> > --- > lib/igt_edid.c | 7 +++- > lib/igt_edid.h | 2 + > lib/igt_kms.c | 32 +++++++++++++++ > lib/igt_kms.h | 5 ++- > tests/chamelium/kms_chamelium.c | 69 +++++++++++++++++++++++++++++++++ > 5 files changed, 112 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_edid.c b/lib/igt_edid.c > index bff13a0d..b5e0b4ba 100644 > --- a/lib/igt_edid.c > +++ b/lib/igt_edid.c > @@ -60,8 +60,11 @@ static const char monitor_range_padding[] = { > > const uint8_t hdmi_ieee_oui[3] = {0x03, 0x0C, 0x00}; > > -/* vfreq is in Hz */ > -static void std_timing_set(struct std_timing *st, int hsize, int vfreq, > +/** > + * std_timing_set: Sets the EDID standard timing for a given |hsize|, |vfreq| > + * in Hz and |aspect| ratio Use @param when referring to parameters. With that changed, Reviewed-by: Petri Latvala <petri.latvala@intel.com> > + */ > + void std_timing_set(struct std_timing *st, int hsize, int vfreq, > enum std_timing_aspect aspect) > { > assert(hsize >= 256 && hsize <= 2288); > diff --git a/lib/igt_edid.h b/lib/igt_edid.h > index a9251d68..477f16c2 100644 > --- a/lib/igt_edid.h > +++ b/lib/igt_edid.h > @@ -379,6 +379,8 @@ size_t edid_get_size(const struct edid *edid); > void edid_get_mfg(const struct edid *edid, char out[static 3]); > uint8_t edid_get_deep_color_from_vsdb(const struct edid *edid); > uint8_t edid_get_bit_depth_from_vid(const struct edid *edid); > +void std_timing_set(struct std_timing *st, int hsize, int vfreq, > + enum std_timing_aspect aspect); > void detailed_timing_set_mode(struct detailed_timing *dt, drmModeModeInfo *mode, > int width_mm, int height_mm); > void detailed_timing_set_monitor_range_mode(struct detailed_timing *dt, > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 921a623d..b4a98ae1 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -133,6 +133,36 @@ const struct edid *igt_kms_get_base_edid(void) > return &edid; > } > > +const struct edid *igt_kms_get_full_edid(void) > +{ > + static struct edid edid; > + drmModeModeInfo mode = {}; > + > + mode.clock = 148500; > + mode.hdisplay = 2288; > + mode.hsync_start = 2008; > + mode.hsync_end = 2052; > + mode.htotal = 2200; > + mode.vdisplay = 1287; > + mode.vsync_start = 1084; > + mode.vsync_end = 1089; > + mode.vtotal = 1125; > + mode.vrefresh = 144; > + edid_init_with_mode(&edid, &mode); > + > + std_timing_set(&edid.standard_timings[0], 256, 60, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[1], 510, 69, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[2], 764, 78, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[3], 1018, 87, STD_TIMING_16_9); > + std_timing_set(&edid.standard_timings[4], 1526, 96, STD_TIMING_16_10); > + std_timing_set(&edid.standard_timings[5], 1780, 105, STD_TIMING_4_3); > + std_timing_set(&edid.standard_timings[6], 2034, 114, STD_TIMING_5_4); > + std_timing_set(&edid.standard_timings[7], 2288, 123, STD_TIMING_16_9); > + > + edid_update_checksum(&edid); > + return &edid; > +} > + > const struct edid *igt_kms_get_base_tile_edid(void) > { > static struct edid edid; > @@ -548,6 +578,8 @@ const struct edid *igt_kms_get_custom_edid(enum igt_custom_edid_type edid) > switch (edid) { > case IGT_CUSTOM_EDID_BASE: > return igt_kms_get_base_edid(); > + case IGT_CUSTOM_EDID_FULL: > + return igt_kms_get_full_edid(); > case IGT_CUSTOM_EDID_ALT: > return igt_kms_get_alt_edid(); > case IGT_CUSTOM_EDID_HDMI_AUDIO: > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index b09441d0..7a00d204 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -82,6 +82,7 @@ enum port { > * > * Enum used for the helper function igt_custom_edid_type > * @IGT_CUSTOM_EDID_BASE: Returns base edid > + * @IGT_CUSTOM_EDID_FULL: Returns edid with full list of standard timings. > * @IGT_CUSTOM_EDID_ALT: Returns alternate edid > * @IGT_CUSTOM_EDID_HDMI_AUDIO: Returns edid with HDMI audio block > * @IGT_CUSTOM_EDID_DP_AUDIO: Returns edid with DP audio block > @@ -89,12 +90,13 @@ enum port { > */ > enum igt_custom_edid_type { > IGT_CUSTOM_EDID_BASE, > + IGT_CUSTOM_EDID_FULL, > IGT_CUSTOM_EDID_ALT, > IGT_CUSTOM_EDID_HDMI_AUDIO, > IGT_CUSTOM_EDID_DP_AUDIO, > IGT_CUSTOM_EDID_ASPECT_RATIO, > }; > -#define IGT_CUSTOM_EDID_COUNT 5 > +#define IGT_CUSTOM_EDID_COUNT 6 > > /** > * kmstest_port_name: > @@ -865,6 +867,7 @@ void igt_reset_connectors(void); > uint32_t kmstest_get_vbl_flag(int crtc_offset); > > const struct edid *igt_kms_get_base_edid(void); > +const struct edid *igt_kms_get_full_edid(void); > const struct edid *igt_kms_get_base_tile_edid(void); > const struct edid *igt_kms_get_alt_edid(void); > const struct edid *igt_kms_get_hdmi_audio_edid(void); > diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c > index 2bc97d5a..d2ec5175 100644 > --- a/tests/chamelium/kms_chamelium.c > +++ b/tests/chamelium/kms_chamelium.c > @@ -2612,6 +2612,71 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, > data->ports, data->port_count); > } > > +static const char igt_edid_resolution_list_desc[] = > + "Get an EDID with many modes of different configurations, set them on the screen and check the" > + " screen resolution matches the mode resolution."; > + > +static void edid_resolution_list(data_t *data, struct chamelium_port *port) > +{ > + struct chamelium *chamelium = data->chamelium; > + struct udev_monitor *mon = igt_watch_uevents(); > + drmModeConnector *init_connector; > + drmModeModeInfoPtr modes; > + int count_modes; > + int i; > + igt_output_t *output; > + enum pipe pipe; > + > + chamelium_unplug(chamelium, port); > + set_edid(data, port, IGT_CUSTOM_EDID_FULL); > + > + igt_flush_uevents(mon); > + chamelium_plug(chamelium, port); > + wait_for_connector_after_hotplug(data, mon, port, DRM_MODE_CONNECTED); > + igt_flush_uevents(mon); > + > + init_connector = chamelium_port_get_connector(chamelium, port, true); > + modes = init_connector->modes; > + count_modes = init_connector->count_modes; > + > + output = get_output_for_port(data, port); > + pipe = get_pipe_for_output(&data->display, output); > + igt_output_set_pipe(output, pipe); > + > + for (i = 0; i < count_modes; ++i) > + igt_debug("#%d %s %uHz\n", i, modes[i].name, modes[i].vrefresh); > + > + for (i = 0; i < count_modes; ++i) { > + struct chamelium_edid *chamelium_edid; > + struct igt_fb fb = { 0 }; > + bool is_video_stable; > + int screen_res_w, screen_res_h; > + drmModeConnector *connector; > + drmModeModeInfoPtr expected_mode; > + bool is_same_mode; > + > + igt_info("Testing #%d %s %uHz\n", i, modes[i].name, > + modes[i].vrefresh); > + > + /* Set the screen mode with the one we chose. */ > + create_fb_for_mode(data, &fb, &modes[i]); > + enable_output(data, port, output, &modes[i], &fb); > + is_video_stable = chamelium_port_wait_video_input_stable( > + chamelium, port, 10); > + igt_assert(is_video_stable); > + > + chamelium_port_get_resolution(chamelium, port, &screen_res_w, > + &screen_res_h); > + igt_assert_eq(screen_res_w, modes[i].hdisplay); > + igt_assert_eq(screen_res_h, modes[i].vdisplay); > + > + igt_remove_fb(data->drm_fd, &fb); > + } > + > + igt_modeset_disable_all_outputs(&data->display); > + drmModeFreeConnector(init_connector); > +} > + > #define for_each_port(p, port) \ > for (p = 0, port = data.ports[p]; \ > p < data.port_count; \ > @@ -2714,6 +2779,10 @@ igt_main > edid_stress_resolution(&data, port, DP_EDIDS_NON_4K, > ARRAY_SIZE(DP_EDIDS_NON_4K)); > > + igt_describe(igt_edid_resolution_list_desc); > + connector_subtest("dp-edid-resolution-list", DisplayPort) > + edid_resolution_list(&data, port); > + > igt_describe(test_suspend_resume_hpd_desc); > connector_subtest("dp-hpd-after-suspend", DisplayPort) > test_suspend_resume_hpd(&data, port, > -- > 2.38.1.431.g37b22c650d-goog > ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (5 preceding siblings ...) 2022-11-10 17:41 ` [igt-dev] [PATCH v2] " Mark Yacoub @ 2022-11-10 18:24 ` Patchwork 2022-11-10 21:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (6 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-10 18:24 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5336 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev2) URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from CI_DRM_12365 -> IGTPW_8084 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html Participating hosts (41 -> 36) ------------------------------ Additional (1): fi-tgl-dsi Missing (6): fi-rkl-11600 fi-ctg-p8600 fi-hsw-4770 fi-pnv-d510 fi-kbl-8809g fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_8084 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bdw-gvtdvm: [PASS][1] -> [INCOMPLETE][2] ([i915#2940]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [PASS][3] -> [FAIL][4] ([i915#6298]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html * igt@runner@aborted: - fi-bdw-gvtdvm: NOTRUN -> [FAIL][5] ([i915#4312]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/fi-bdw-gvtdvm/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rplp-1}: [DMESG-WARN][6] ([i915#2867]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-skl-guc: [DMESG-FAIL][8] ([i915#5334]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/fi-skl-guc/igt@i915_selftest@live@gt_heartbeat.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/fi-skl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@slpc: - {bat-adln-1}: [DMESG-FAIL][10] ([i915#6997]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/bat-adln-1/igt@i915_selftest@live@slpc.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/bat-adln-1/igt@i915_selftest@live@slpc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7125]: https://gitlab.freedesktop.org/drm/intel/issues/7125 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_chamelium@dp-edid-resolution-list +igt@kms_chamelium@dp-edid-stress-resolution -igt@kms_chamelium@dp-edid-stress-resolution-4k -igt@kms_chamelium@dp-edid-stress-resolution-non-4k -igt@kms_chamelium@hdmi-edid-stress-resolution-4k -igt@kms_chamelium@hdmi-edid-stress-resolution-non-4k == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html [-- Attachment #2: Type: text/html, Size: 4895 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (6 preceding siblings ...) 2022-11-10 18:24 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev2) Patchwork @ 2022-11-10 21:11 ` Patchwork 2022-11-11 16:02 ` Mark Yacoub 2022-11-12 23:50 ` Patchwork ` (5 subsequent siblings) 13 siblings, 1 reply; 23+ messages in thread From: Patchwork @ 2022-11-10 21:11 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 40697 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev2) URL : https://patchwork.freedesktop.org/series/110614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8084_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8084_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_8084/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8084_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [PASS][3] -> [INCOMPLETE][4] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html #### Warnings #### * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][5] ([i915#4573]) -> [DMESG-FAIL][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html New tests --------- New tests have been introduced between CI_DRM_12365_full and IGTPW_8084_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_8084_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][8] ([i915#4991]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][10] ([i915#4525]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][11] -> [SKIP][12] ([i915#4525]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271]) +23 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html * igt@gem_exec_whisper@basic-fds-priority: - shard-iclb: [PASS][17] -> [INCOMPLETE][18] ([i915#6755]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#3297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][21] ([i915#3297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][22] ([i915#6412]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][23] ([i915#6412]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc5-psr: - shard-iclb: [PASS][24] -> [FAIL][25] ([i915#3989]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html - shard-tglb: [PASS][26] -> [FAIL][27] ([i915#3989]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][28] -> [DMESG-WARN][29] ([i915#180]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271]) +28 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][31] ([i915#5286]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][32] ([i915#5286]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-glk: [PASS][33] -> [FAIL][34] ([i915#5138]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689] / [i915#6095]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#3689]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#109284] / [fdo#111827]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-apl: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109274] / [fdo#111825]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109274]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#2122]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][51] -> [FAIL][52] ([i915#79]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][53] -> [FAIL][54] ([i915#79]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: - shard-apl: [PASS][55] -> [SKIP][56] ([fdo#109271]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: - shard-glk: [PASS][57] -> [SKIP][58] ([fdo#109271]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#6375]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#2672]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2587] / [i915#2672]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][62] -> [SKIP][63] ([i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109280]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +9 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#112054] / [i915#5288]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3536]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#5235]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][71] ([i915#7037]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109642] / [fdo#111068] / [i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][74] -> [SKIP][75] ([fdo#109441]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][76] -> [SKIP][77] ([i915#5519]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [PASS][78] -> [SKIP][79] ([i915#5519]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-glk: [PASS][80] -> [FAIL][81] ([i915#5852]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2994]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][83] ([i915#6252]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@smoketest: - shard-iclb: [FAIL][85] ([i915#5099]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][87] ([i915#2842]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][89] ([i915#2842]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-iclb: [FAIL][91] ([i915#2842]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][93] ([i915#3281]) -> [PASS][94] +5 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][95] ([fdo#111656]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-self: - {shard-rkl}: [SKIP][97] ([i915#3282]) -> [PASS][98] +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][99] ([i915#2527]) -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_rps@engine-order: - {shard-rkl}: [FAIL][101] -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][105] ([i915#2521]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [FAIL][109] ([i915#79]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][111] ([i915#1849] / [i915#4098]) -> [PASS][112] +7 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][115] ([i915#1072]) -> [PASS][116] +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][117] ([fdo#109441]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@exhaust-fences: - {shard-rkl}: [SKIP][119] ([i915#1845] / [i915#4098]) -> [PASS][120] +12 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][121] ([i915#1722]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][123] ([i915#5234]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - {shard-dg1}: [FAIL][125] ([i915#4349]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][127] ([i915#6117]) -> [SKIP][128] ([i915#4525]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][129] ([i915#7248]) -> [WARN][130] ([i915#2658]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][131] ([i915#658]) -> [SKIP][132] ([i915#2920]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][133] ([fdo#111068] / [i915#658]) -> [SKIP][134] ([i915#2920]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][135] ([i915#2920]) -> [SKIP][136] ([fdo#111068] / [i915#658]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][137] ([i915#2920]) -> [SKIP][138] ([i915#658]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][139], [FAIL][140], [FAIL][141]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145]) ([i915#180] / [i915#3002] / [i915#4312]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html [-- Attachment #2: Type: text/html, Size: 42235 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-10 21:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-11 16:02 ` Mark Yacoub 2022-11-13 13:36 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 23+ messages in thread From: Mark Yacoub @ 2022-11-11 16:02 UTC (permalink / raw) To: Vudum, Lakshminarayana; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 38329 bytes --] Hi Lakshminarayana, it looks unrelated, can I get a rerun? On Thu, Nov 10, 2022 at 4:11 PM Patchwork <patchwork@emeril.freedesktop.org> wrote: > *Patch Details* > *Series:* Chamelium: Add new EDID Resolution List test (rev2) > *URL:* https://patchwork.freedesktop.org/series/110614/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html CI > Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_8084_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8084_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_8084/index.html > Participating hosts (11 -> 8) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_8084_full: > IGT changes Possible regressions > > - > > igt@kms_atomic_transition > @plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html> > - > > igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html> > +2 similar issues > > Warnings > > - igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > (i915#4573 <https://gitlab.freedesktop.org/drm/intel/issues/4573>) > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > +1 similar issue > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > - igt@kms_invalid_mode@int-max-clock: > - {shard-rkl}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html> > > New tests > > New tests have been introduced between CI_DRM_12365_full and > IGTPW_8084_full: > New IGT tests (1) > > - igt@kms_chamelium@dp-edid-resolution-list: > - Statuses : > - Exec time: [None] s > > Known issues > > Here are the changes found in IGTPW_8084_full that come from known issues: > IGT changes Issues hit > > - > > igt@gem_create@create-massive: > - shard-snb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html> > (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>) > - > > igt@gem_ctx_sseu@invalid-args: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html> > (i915#280 <https://gitlab.freedesktop.org/drm/intel/issues/280>) > - > > igt@gem_exec_balancer@parallel-contexts: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > - > > igt@gem_exec_balancer@parallel-out-fence: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > - > > igt@gem_exec_fair@basic-pace@rcs0: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > +1 similar issue > - > > igt@gem_exec_fair@basic-pace@vcs1: > - shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > - > > igt@gem_exec_schedule@preempt-user: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +23 similar issues > - > > igt@gem_exec_whisper@basic-fds-priority: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html> > (i915#6755 <https://gitlab.freedesktop.org/drm/intel/issues/6755>) > - > > igt@gem_lmem_swapping@heavy-verify-random: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > - > > igt@gem_userptr_blits@readonly-unsync: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > - > > igt@i915_module_load@resize-bar: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html> > (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html> > (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>) > - > > igt@i915_pm_dc@dc5-psr: > - > > shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html> > (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989>) > - > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html> > (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989>) > - > > igt@i915_suspend@debugfs-reader: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 > similar issue > - > > igt@kms_big_fb@4-tiled-32bpp-rotate-90: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +28 similar issues > - > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > igt@kms_big_fb@y-tiled-32bpp-rotate-270: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> > (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) > - > > igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +4 similar issues > - > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) > +1 similar issue > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > - > > igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > - > > igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) > +1 similar issue > - > > igt@kms_chamelium@dp-hpd-fast: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +1 similar issue > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +1 similar issue > - > > igt@kms_chamelium@dp-hpd-with-enabled-mode: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +2 similar issues > - > > igt@kms_chamelium@hdmi-hpd-with-enabled-mode: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +1 similar issue > - > > shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +1 similar issue > - > > igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > - > > igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2 > : > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#2122 <https://gitlab.freedesktop.org/drm/intel/issues/2122>) > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) +1 > similar issue > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > - > > igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +1 similar issue > - > > igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +3 similar issues > - > > igt@kms_flip_scaled_crc > @flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> > (i915#6375 <https://gitlab.freedesktop.org/drm/intel/issues/6375>) > - > > igt@kms_flip_scaled_crc > @flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html> > (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +2 similar issues > - > > igt@kms_flip_scaled_crc > @flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html> > (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / > i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +1 similar issue > - > > igt@kms_flip_scaled_crc > @flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > - > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > - > > igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +9 similar issues > - > > igt@kms_plane_lowres@tiling-yf: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html> > (fdo#112054 <https://bugs.freedesktop.org/show_bug.cgi?id=112054> / > i915#5288 <https://gitlab.freedesktop.org/drm/intel/issues/5288>) > - > > igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html> > (i915#3536 <https://gitlab.freedesktop.org/drm/intel/issues/3536>) > +2 similar issues > - > > igt@kms_plane_scaling > @planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > +2 similar issues > - > > igt@kms_psr2_su@page_flip-nv12: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html> > (i915#7037 <https://gitlab.freedesktop.org/drm/intel/issues/7037>) > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html> > (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642> / > fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr@psr2_sprite_render: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > +1 similar issue > - > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > - > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > - > > shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > - > > igt@kms_rotation_crc@cursor-rotation-180: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html> > (i915#5852 <https://gitlab.freedesktop.org/drm/intel/issues/5852>) > - > > igt@sysfs_clients@fair-1: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > > Possible fixes > > - > > igt@gem_ctx_persistence@legacy-engines-hang@blt: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> > (i915#6252 <https://gitlab.freedesktop.org/drm/intel/issues/6252>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> > - > > igt@gem_ctx_persistence@smoketest: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html> > (i915#5099 <https://gitlab.freedesktop.org/drm/intel/issues/5099>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html> > - > > igt@gem_exec_fair@basic-none-share@rcs0: > - shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html> > - > > igt@gem_exec_fair@basic-none-solo@rcs0: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html> > - > > igt@gem_exec_fair@basic-none@bcs0: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html> > - > > igt@gem_exec_reloc@basic-gtt-wc-noreloc: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> > (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> > +5 similar issues > - > > igt@gem_mmap_gtt@coherency: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html> > (fdo#111656 <https://bugs.freedesktop.org/show_bug.cgi?id=111656>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> > - > > igt@gem_pwrite@basic-self: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html> > (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html> > +2 similar issues > - > > igt@gen9_exec_parse@bb-start-far: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html> > (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html> > +1 similar issue > - > > igt@i915_pm_rps@engine-order: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html> > - > > igt@i915_selftest@perf@engine_cs: > - shard-snb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html> > - > > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html> > (i915#2521 <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html> > - > > igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html> > (i915#2521 <https://gitlab.freedesktop.org/drm/intel/issues/2521>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html> > - > > igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: > - shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html> > - > > igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> > +7 similar issues > - > > igt@kms_frontbuffer_tracking@fbc-suspend: > - shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html> > - > > igt@kms_psr@primary_render: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html> > (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html> > +2 similar issues > - > > igt@kms_psr@psr2_primary_page_flip: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> > +1 similar issue > - > > igt@kms_rotation_crc@exhaust-fences: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html> > (i915#1845 <https://gitlab.freedesktop.org/drm/intel/issues/1845> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html> > +12 similar issues > - > > igt@perf@polling-small-buf: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html> > (i915#1722 <https://gitlab.freedesktop.org/drm/intel/issues/1722>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html> > - > > igt@perf_pmu@all-busy-idle-check-all: > - {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html> > (i915#5234 <https://gitlab.freedesktop.org/drm/intel/issues/5234>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html> > - > > igt@perf_pmu@busy-double-start@rcs0: > - {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html> > (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html> > > Warnings > > - > > igt@gem_exec_balancer@parallel-ordering: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> > (i915#6117 <https://gitlab.freedesktop.org/drm/intel/issues/6117>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > - > > igt@gem_pwrite@basic-exhaustion: > - shard-tglb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html> > (i915#7248 <https://gitlab.freedesktop.org/drm/intel/issues/7248>) > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html> > (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>) > - > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > - > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> > (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > - > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> > (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@runner@aborted: > - shard-apl: (FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html>, > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html>, > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html>) > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / > i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) > -> (FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html>, > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html>, > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html>, > FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html>) > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / > i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / > i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > Build changes > > - CI: CI-20190529 -> None > - IGT: IGT_7050 -> IGTPW_8084 > - Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html > IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git:// > anongit.freedesktop.org/piglit > [-- Attachment #2: Type: text/html, Size: 47133 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-11 16:02 ` Mark Yacoub @ 2022-11-13 13:36 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 23+ messages in thread From: Vudum, Lakshminarayana @ 2022-11-13 13:36 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 35298 bytes --] Re-reported. From: Mark Yacoub <markyacoub@chromium.org> Sent: Friday, November 11, 2022 6:03 PM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: Re: ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) Hi Lakshminarayana, it looks unrelated, can I get a rerun? On Thu, Nov 10, 2022 at 4:11 PM Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> wrote: Patch Details Series: Chamelium: Add new EDID Resolution List test (rev2) URL: https://patchwork.freedesktop.org/series/110614/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html CI Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full Summary FAILURE Serious unknown changes coming with IGTPW_8084_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8084_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_8084/index.html Participating hosts (11 -> 8) Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues Here are the unknown changes that may have been introduced in IGTPW_8084_full: IGT changes Possible regressions * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html> * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html> +2 similar issues Warnings * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> +1 similar issue Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html> New tests New tests have been introduced between CI_DRM_12365_full and IGTPW_8084_full: New IGT tests (1) * igt@kms_chamelium@dp-edid-resolution-list: * Statuses : * Exec time: [None] s Known issues Here are the changes found in IGTPW_8084_full that come from known issues: IGT changes Issues hit * igt@gem_create@create-massive: * shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html> (i915#4991<https://gitlab.freedesktop.org/drm/intel/issues/4991>) * igt@gem_ctx_sseu@invalid-args: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_exec_balancer@parallel-contexts: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_balancer@parallel-out-fence: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-pace@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_fair@basic-pace@vcs1: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_schedule@preempt-user: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +23 similar issues * igt@gem_exec_whisper@basic-fds-priority: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html> (i915#6755<https://gitlab.freedesktop.org/drm/intel/issues/6755>) * igt@gem_lmem_swapping@heavy-verify-random: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_userptr_blits@readonly-unsync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@i915_module_load@resize-bar: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>) * igt@i915_pm_dc@dc5-psr: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989>) * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989>) * igt@i915_suspend@debugfs-reader: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_big_fb@4-tiled-32bpp-rotate-90: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +28 similar issues * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@y-tiled-32bpp-rotate-270: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>) * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +4 similar issues * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +1 similar issue * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1 similar issue * igt@kms_chamelium@dp-hpd-fast: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue * igt@kms_chamelium@dp-hpd-with-enabled-mode: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2 similar issues * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 similar issue * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) +1 similar issue * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1 similar issue * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +3 similar issues * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> (i915#6375<https://gitlab.freedesktop.org/drm/intel/issues/6375>) * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +9 similar issues * igt@kms_plane_lowres@tiling-yf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html> (fdo#112054<https://bugs.freedesktop.org/show_bug.cgi?id=112054> / i915#5288<https://gitlab.freedesktop.org/drm/intel/issues/5288>) * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html> (i915#3536<https://gitlab.freedesktop.org/drm/intel/issues/3536>) +2 similar issues * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues * igt@kms_psr2_su@page_flip-nv12: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html> (i915#7037<https://gitlab.freedesktop.org/drm/intel/issues/7037>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr@psr2_sprite_render: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) * igt@kms_rotation_crc@cursor-rotation-180: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html> (i915#5852<https://gitlab.freedesktop.org/drm/intel/issues/5852>) * igt@sysfs_clients@fair-1: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@gem_ctx_persistence@legacy-engines-hang@blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> (i915#6252<https://gitlab.freedesktop.org/drm/intel/issues/6252>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html> * igt@gem_ctx_persistence@smoketest: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html> (i915#5099<https://gitlab.freedesktop.org/drm/intel/issues/5099>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html> * igt@gem_exec_fair@basic-none-share@rcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html> * igt@gem_exec_fair@basic-none-solo@rcs0: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html> * igt@gem_exec_fair@basic-none@bcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html> * igt@gem_exec_reloc@basic-gtt-wc-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> +5 similar issues * igt@gem_mmap_gtt@coherency: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> * igt@gem_pwrite@basic-self: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html> +2 similar issues * igt@gen9_exec_parse@bb-start-far: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html> +1 similar issue * igt@i915_pm_rps@engine-order: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html> * igt@i915_selftest@perf@engine_cs: * shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html> * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html> * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html> * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html> * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> +7 similar issues * igt@kms_frontbuffer_tracking@fbc-suspend: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html> * igt@kms_psr@primary_render: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html> +2 similar issues * igt@kms_psr@psr2_primary_page_flip: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html> +1 similar issue * igt@kms_rotation_crc@exhaust-fences: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html> +12 similar issues * igt@perf@polling-small-buf: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html> (i915#1722<https://gitlab.freedesktop.org/drm/intel/issues/1722>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html> * igt@perf_pmu@all-busy-idle-check-all: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html> (i915#5234<https://gitlab.freedesktop.org/drm/intel/issues/5234>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html> * igt@perf_pmu@busy-double-start@rcs0: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html> Warnings * igt@gem_exec_balancer@parallel-ordering: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_pwrite@basic-exhaustion: * shard-tglb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html> (i915#7248<https://gitlab.freedesktop.org/drm/intel/issues/7248>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@runner@aborted: * shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit<http://anongit.freedesktop.org/piglit> [-- Attachment #2: Type: text/html, Size: 91521 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (7 preceding siblings ...) 2022-11-10 21:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-12 23:50 ` Patchwork 2022-11-13 0:09 ` Patchwork ` (4 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-12 23:50 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41394 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev2) URL : https://patchwork.freedesktop.org/series/110614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8084_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8084_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_8084/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8084_full: ### IGT changes ### #### Possible regressions #### * igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html New tests --------- New tests have been introduced between CI_DRM_12365_full and IGTPW_8084_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_8084_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][4] ([i915#4991]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][6] ([i915#4525]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][7] -> [SKIP][8] ([i915#4525]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][11] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +23 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html * igt@gem_exec_whisper@basic-fds-priority: - shard-iclb: [PASS][13] -> [INCOMPLETE][14] ([i915#6755]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#3297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][17] ([i915#3297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#6412]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][19] ([i915#6412]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc5-psr: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#3989]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#3989]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][24] -> [DMESG-WARN][25] ([i915#180]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-glk: [PASS][26] -> [INCOMPLETE][27] ([i915#5584]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271]) +28 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][29] ([i915#5286]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][30] ([i915#5286]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#5138]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109278]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3689] / [i915#6095]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109278] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109274] / [fdo#111825]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109274]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][47] -> [FAIL][48] ([i915#2122]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#79]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][51] -> [FAIL][52] ([i915#79]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: - shard-apl: [PASS][53] -> [SKIP][54] ([fdo#109271]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: - shard-glk: [PASS][55] -> [SKIP][56] ([fdo#109271]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][57] ([i915#6375]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#2672]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#2587] / [i915#2672]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][60] -> [SKIP][61] ([i915#3555]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109280]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109280] / [fdo#111825]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271]) +9 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#112054] / [i915#5288]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#3536]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][67] -> [SKIP][68] ([i915#5235]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#7037]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109642] / [fdo#111068] / [i915#658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][72] -> [SKIP][73] ([fdo#109441]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][74] -> [SKIP][75] ([i915#5519]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [PASS][76] -> [SKIP][77] ([i915#5519]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-glk: [PASS][78] -> [FAIL][79] ([i915#5852]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [PASS][80] -> [INCOMPLETE][81] ([i915#7399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2994]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][83] ([i915#6252]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@smoketest: - shard-iclb: [FAIL][85] ([i915#5099]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][87] ([i915#2842]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][89] ([i915#2842]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-iclb: [FAIL][91] ([i915#2842]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][93] ([i915#3281]) -> [PASS][94] +5 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][95] ([fdo#111656]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-self: - {shard-rkl}: [SKIP][97] ([i915#3282]) -> [PASS][98] +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][99] ([i915#2527]) -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_rps@engine-order: - {shard-rkl}: [FAIL][101] ([i915#6537]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][103] ([fdo#109271]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][105] ([i915#2521]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [FAIL][109] ([i915#79]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][111] ([i915#1849] / [i915#4098]) -> [PASS][112] +7 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][113] ([i915#180]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][115] ([i915#1072]) -> [PASS][116] +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][117] ([fdo#109441]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@exhaust-fences: - {shard-rkl}: [SKIP][119] ([i915#1845] / [i915#4098]) -> [PASS][120] +12 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][121] ([i915#1722]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][123] ([i915#5234]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - {shard-dg1}: [FAIL][125] ([i915#4349]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][127] ([i915#6117]) -> [SKIP][128] ([i915#4525]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][129] ([i915#7248]) -> [WARN][130] ([i915#2658]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][131] ([i915#4573]) -> [DMESG-FAIL][132] ([IGT#6]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][133] ([i915#658]) -> [SKIP][134] ([i915#2920]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][135] ([fdo#111068] / [i915#658]) -> [SKIP][136] ([i915#2920]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][137] ([i915#2920]) -> [SKIP][138] ([fdo#111068] / [i915#658]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][139] ([i915#2920]) -> [SKIP][140] ([i915#658]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][141], [FAIL][142], [FAIL][143]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147]) ([i915#180] / [i915#3002] / [i915#4312]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7399]: https://gitlab.freedesktop.org/drm/intel/issues/7399 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html [-- Attachment #2: Type: text/html, Size: 42945 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (8 preceding siblings ...) 2022-11-12 23:50 ` Patchwork @ 2022-11-13 0:09 ` Patchwork 2022-11-13 0:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork ` (3 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-13 0:09 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41837 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev2) URL : https://patchwork.freedesktop.org/series/110614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8084_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8084_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_8084/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8084_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html New tests --------- New tests have been introduced between CI_DRM_12365_full and IGTPW_8084_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_8084_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][4] ([i915#4991]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][6] ([i915#4525]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][7] -> [SKIP][8] ([i915#4525]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][11] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +23 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html * igt@gem_exec_whisper@basic-fds-priority: - shard-iclb: [PASS][13] -> [INCOMPLETE][14] ([i915#6755]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#3297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][17] ([i915#3297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#6412]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][19] ([i915#6412]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc5-psr: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#3989]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html - shard-tglb: [PASS][22] -> [FAIL][23] ([i915#3989]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][24] -> [DMESG-WARN][25] ([i915#180]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-glk: [PASS][26] -> [INCOMPLETE][27] ([i915#5584]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271]) +28 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][29] ([i915#5286]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][30] ([i915#5286]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#5138]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109278]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3689] / [i915#6095]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109278] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109274] / [fdo#111825]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109274]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv: - shard-tglb: [PASS][47] -> [INCOMPLETE][48] ([i915#6453]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#2122]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][51] -> [FAIL][52] ([i915#79]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][53] -> [FAIL][54] ([i915#79]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: - shard-apl: [PASS][55] -> [SKIP][56] ([fdo#109271]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: - shard-glk: [PASS][57] -> [SKIP][58] ([fdo#109271]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#6375]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#2672]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2587] / [i915#2672]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][62] -> [SKIP][63] ([i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109280]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +9 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#112054] / [i915#5288]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3536]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#5235]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][71] ([i915#7037]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109642] / [fdo#111068] / [i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][74] -> [SKIP][75] ([fdo#109441]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][76] -> [SKIP][77] ([i915#5519]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [PASS][78] -> [SKIP][79] ([i915#5519]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-glk: [PASS][80] -> [FAIL][81] ([i915#5852]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [PASS][82] -> [INCOMPLETE][83] ([i915#7399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][85] ([i915#6252]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@smoketest: - shard-iclb: [FAIL][87] ([i915#5099]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][89] ([i915#2842]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][91] ([i915#2842]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-iclb: [FAIL][93] ([i915#2842]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][95] ([i915#3281]) -> [PASS][96] +5 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][97] ([fdo#111656]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-self: - {shard-rkl}: [SKIP][99] ([i915#3282]) -> [PASS][100] +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][101] ([i915#2527]) -> [PASS][102] +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_rps@engine-order: - {shard-rkl}: [FAIL][103] ([i915#6537]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][105] ([fdo#109271]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][109] ([i915#2521]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [FAIL][111] ([i915#79]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][113] ([i915#1849] / [i915#4098]) -> [PASS][114] +7 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][115] ([i915#180]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][117] ([i915#1072]) -> [PASS][118] +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][119] ([fdo#109441]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@exhaust-fences: - {shard-rkl}: [SKIP][121] ([i915#1845] / [i915#4098]) -> [PASS][122] +12 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][123] ([i915#1722]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][125] ([i915#5234]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - {shard-dg1}: [FAIL][127] ([i915#4349]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][129] ([i915#6117]) -> [SKIP][130] ([i915#4525]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][131] ([i915#7248]) -> [WARN][132] ([i915#2658]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][133] ([i915#4573]) -> [DMESG-FAIL][134] ([IGT#6]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][135] ([i915#658]) -> [SKIP][136] ([i915#2920]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][137] ([fdo#111068] / [i915#658]) -> [SKIP][138] ([i915#2920]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][139] ([i915#2920]) -> [SKIP][140] ([fdo#111068] / [i915#658]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][141] ([i915#2920]) -> [SKIP][142] ([i915#658]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][143], [FAIL][144], [FAIL][145]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149]) ([i915#180] / [i915#3002] / [i915#4312]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6453]: https://gitlab.freedesktop.org/drm/intel/issues/6453 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7399]: https://gitlab.freedesktop.org/drm/intel/issues/7399 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html [-- Attachment #2: Type: text/html, Size: 43415 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Chamelium: Add new EDID Resolution List test (rev2) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (9 preceding siblings ...) 2022-11-13 0:09 ` Patchwork @ 2022-11-13 0:46 ` Patchwork 2022-11-15 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev3) Patchwork ` (2 subsequent siblings) 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-13 0:46 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41583 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev2) URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from CI_DRM_12365_full -> IGTPW_8084_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8084_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-1/igt@kms_invalid_mode@int-max-clock.html New tests --------- New tests have been introduced between CI_DRM_12365_full and IGTPW_8084_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_8084_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-snb: NOTRUN -> [DMESG-WARN][2] ([i915#4991]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][3] ([i915#280]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: NOTRUN -> [SKIP][4] ([i915#4525]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][5] -> [SKIP][6] ([i915#4525]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_schedule@preempt-user: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271]) +23 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb4/igt@gem_exec_schedule@preempt-user.html * igt@gem_exec_whisper@basic-fds-priority: - shard-iclb: [PASS][11] -> [INCOMPLETE][12] ([i915#6755]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_whisper@basic-fds-priority.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb1/igt@gem_exec_whisper@basic-fds-priority.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][14] ([i915#3297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglb: NOTRUN -> [SKIP][15] ([i915#3297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@gem_userptr_blits@readonly-unsync.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#6412]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][17] ([i915#6412]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc5-psr: - shard-iclb: [PASS][18] -> [FAIL][19] ([i915#3989]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@i915_pm_dc@dc5-psr.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb3/igt@i915_pm_dc@dc5-psr.html - shard-tglb: [PASS][20] -> [FAIL][21] ([i915#3989]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb6/igt@i915_pm_dc@dc5-psr.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb7/igt@i915_pm_dc@dc5-psr.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#180]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@i915_suspend@debugfs-reader.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@i915_suspend@debugfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-glk: [PASS][24] -> [INCOMPLETE][25] ([i915#5584]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][26] ([fdo#109271]) +28 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#5286]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][28] ([i915#5286]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-glk: [PASS][29] -> [FAIL][30] ([i915#5138]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3886]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][32] ([fdo#109278]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglb: NOTRUN -> [SKIP][33] ([i915#3689] / [i915#6095]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#3689] / [i915#3886]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][38] ([fdo#109284] / [fdo#111827]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_chamelium@dp-hpd-fast.html - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html - shard-snb: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#109274] / [fdo#111825]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109274]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv: - shard-tglb: [PASS][45] -> [INCOMPLETE][46] ([i915#6453]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_dsc@dsc-with-bpc-formats@pipe-c-edp-1-10bpc-yuyv.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][47] -> [FAIL][48] ([i915#2122]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#79]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][51] -> [FAIL][52] ([i915#79]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-dp1: - shard-apl: [PASS][53] -> [SKIP][54] ([fdo#109271]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl8/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@kms_flip@flip-vs-panning-vs-hang@c-dp1.html * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: - shard-glk: [PASS][55] -> [SKIP][56] ([fdo#109271]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk6/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk2/igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][57] ([i915#6375]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#2672]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#2587] / [i915#2672]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][60] -> [SKIP][61] ([i915#3555]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109280]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109280] / [fdo#111825]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271]) +9 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#112054] / [i915#5288]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#3536]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][67] -> [SKIP][68] ([i915#5235]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#7037]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_psr2_su@page_flip-nv12.html - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109642] / [fdo#111068] / [i915#658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][72] -> [SKIP][73] ([fdo#109441]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][74] -> [SKIP][75] ([i915#5519]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [PASS][76] -> [SKIP][77] ([i915#5519]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-glk: [PASS][78] -> [FAIL][79] ([i915#5852]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk3/igt@kms_rotation_crc@cursor-rotation-180.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@kms_rotation_crc@cursor-rotation-180.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-tglb: [PASS][80] -> [INCOMPLETE][81] ([i915#7500]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm: - shard-tglb: [PASS][82] -> [INCOMPLETE][83] ([i915#7399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][85] ([i915#6252]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@smoketest: - shard-iclb: [FAIL][87] ([i915#5099]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@gem_ctx_persistence@smoketest.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][89] ([i915#2842]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][91] ([i915#2842]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-iclb: [FAIL][93] ([i915#2842]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb6/igt@gem_exec_fair@basic-none@bcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][95] ([i915#3281]) -> [PASS][96] +5 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][97] ([fdo#111656]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_mmap_gtt@coherency.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pwrite@basic-self: - {shard-rkl}: [SKIP][99] ([i915#3282]) -> [PASS][100] +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@gem_pwrite@basic-self.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][101] ([i915#2527]) -> [PASS][102] +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_rps@engine-order: - {shard-rkl}: [FAIL][103] ([i915#6537]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-5/igt@i915_pm_rps@engine-order.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-4/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][105] ([fdo#109271]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-snb2/igt@i915_selftest@perf@engine_cs.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-snb2/igt@i915_selftest@perf@engine_cs.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-apl: [FAIL][107] ([i915#2521]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [FAIL][109] ([i915#2521]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [FAIL][111] ([i915#79]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][113] ([i915#1849] / [i915#4098]) -> [PASS][114] +7 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [DMESG-WARN][115] ([i915#180]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][117] ([i915#1072]) -> [PASS][118] +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-2/igt@kms_psr@primary_render.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [SKIP][119] ([fdo#109441]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@exhaust-fences: - {shard-rkl}: [SKIP][121] ([i915#1845] / [i915#4098]) -> [PASS][122] +12 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@kms_rotation_crc@exhaust-fences.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][123] ([i915#1722]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-rkl-1/igt@perf@polling-small-buf.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-rkl-2/igt@perf@polling-small-buf.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][125] ([i915#5234]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - {shard-dg1}: [FAIL][127] ([i915#4349]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-dg1-19/igt@perf_pmu@busy-double-start@rcs0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][129] ([i915#6117]) -> [SKIP][130] ([i915#4525]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: [INCOMPLETE][131] ([i915#7248]) -> [WARN][132] ([i915#2658]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-tglb3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][133] ([i915#4573]) -> [DMESG-FAIL][134] ([IGT#6]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][135] ([i915#658]) -> [SKIP][136] ([i915#2920]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-iclb: [SKIP][137] ([fdo#111068] / [i915#658]) -> [SKIP][138] ([i915#2920]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][139] ([i915#2920]) -> [SKIP][140] ([fdo#111068] / [i915#658]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][141] ([i915#2920]) -> [SKIP][142] ([i915#658]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-apl: ([FAIL][143], [FAIL][144], [FAIL][145]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149]) ([i915#180] / [i915#3002] / [i915#4312]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl2/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl6/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12365/shard-apl3/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl7/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl8/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl3/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6453]: https://gitlab.freedesktop.org/drm/intel/issues/6453 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7399]: https://gitlab.freedesktop.org/drm/intel/issues/7399 [i915#7500]: https://gitlab.freedesktop.org/drm/intel/issues/7500 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7050 -> IGTPW_8084 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12365: 1bda5b0abc8a0d9d53d9fec1a390dc93e2b0ba57 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8084: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html IGT_7050: 42839a7c2bab78bc6cda8c949d8545606f377735 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8084/index.html [-- Attachment #2: Type: text/html, Size: 43136 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev3) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (10 preceding siblings ...) 2022-11-13 0:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2022-11-15 20:31 ` Patchwork 2022-11-16 3:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-16 23:22 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-15 20:31 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8841 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev3) URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from IGT_7059 -> IGTPW_8109 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html Participating hosts (37 -> 39) ------------------------------ Additional (3): bat-kbl-2 bat-dg1-6 fi-pnv-d510 Missing (1): bat-atsm-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8109: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@reset: - {bat-rplp-1}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/bat-rplp-1/igt@i915_selftest@live@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-rplp-1/igt@i915_selftest@live@reset.html Known issues ------------ Here are the changes found in IGTPW_8109 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-apl-guc: [PASS][3] -> [INCOMPLETE][4] ([i915#7073]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html * igt@gem_mmap@basic: - bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][7] ([i915#4077]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@gem_tiled_fence_blits@basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg1-6: NOTRUN -> [SKIP][8] ([i915#1155]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-dg1-6: NOTRUN -> [SKIP][9] ([i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][10] -> [INCOMPLETE][11] ([i915#4785]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-6: NOTRUN -> [SKIP][12] ([i915#4215]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg1-6: NOTRUN -> [SKIP][13] ([i915#4212]) +7 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_chamelium@hdmi-crc-fast: - bat-dg1-6: NOTRUN -> [SKIP][14] ([fdo#111827]) +8 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - bat-dg1-6: NOTRUN -> [SKIP][15] ([i915#4103] / [i915#4213]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-6: NOTRUN -> [SKIP][16] ([fdo#109285]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][17] ([fdo#109271]) +43 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-6: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#4078]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-gtt: - bat-dg1-6: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-dg1-6: NOTRUN -> [SKIP][21] ([i915#3708]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-dg1-6: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4873]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-dg1-6/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][23] ([fdo#109271] / [i915#4312] / [i915#5594]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/fi-hsw-4770/igt@runner@aborted.html #### Possible fixes #### * igt@fbdev@read: - {bat-rpls-2}: [SKIP][24] ([i915#2582]) -> [PASS][25] +4 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/bat-rpls-2/igt@fbdev@read.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-rpls-2/igt@fbdev@read.html * igt@i915_pm_rpm@module-reload: - {bat-rpls-2}: [WARN][26] ([i915#7346]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/bat-rpls-2/igt@i915_pm_rpm@module-reload.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/bat-rpls-2/igt@i915_pm_rpm@module-reload.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7073]: https://gitlab.freedesktop.org/drm/intel/issues/7073 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7059 -> IGTPW_8109 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_chamelium@dp-edid-resolution-list == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html [-- Attachment #2: Type: text/html, Size: 10058 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev3) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (11 preceding siblings ...) 2022-11-15 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev3) Patchwork @ 2022-11-16 3:21 ` Patchwork 2022-11-16 15:05 ` Mark Yacoub 2022-11-16 23:22 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 13 siblings, 1 reply; 23+ messages in thread From: Patchwork @ 2022-11-16 3:21 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 53514 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev3) URL : https://patchwork.freedesktop.org/series/110614/ State : failure == Summary == CI Bug Log - changes from IGT_7059_full -> IGTPW_8109_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8109_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8109_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_8109/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8109_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_dc@dc5-psr: - shard-tglb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-iclb: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@fbdev@read: - {shard-dg1}: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html New tests --------- New tests have been introduced between IGT_7059_full and IGTPW_8109_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8109_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-iclb: NOTRUN -> [SKIP][8] ([i915#1839]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html * igt@feature_discovery@psr2: - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#658]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglb: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-iclb: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][14] ([i915#3354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][15] -> [SKIP][16] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][17] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-none@vecs0: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#2190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#4613]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-multi: - shard-apl: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglb: NOTRUN -> [SKIP][23] ([i915#4613]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#768]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_softpin@evict-single-offset: - shard-iclb: [PASS][26] -> [FAIL][27] ([i915#4171]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109312]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109312]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@access-control: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#3297]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#109290]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#110542]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html * igt@gen7_exec_parse@basic-allowed: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109289]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109289]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][35] -> [DMESG-WARN][36] ([i915#5566] / [i915#716]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][37] ([i915#6412]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-iclb: NOTRUN -> [SKIP][38] ([i915#6590]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglb: NOTRUN -> [SKIP][39] ([i915#6590]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][40] -> [DMESG-WARN][41] ([i915#5591]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][42] -> [DMESG-WARN][43] ([i915#180]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3826]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][45] ([i915#3826]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][46] ([i915#4765]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#5286]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#5286]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#111614]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271]) +72 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#110725] / [fdo#111614]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#111615]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#110723]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#2705]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109278]) +13 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3689] / [i915#3886]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +8 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +4 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109278] / [i915#3886]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][60] ([i915#6095]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][61] ([i915#3689]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-crc-single: - shard-snb: NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +5 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109284]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +4 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium@vga-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#109284] / [fdo#111827]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html * igt@kms_color_chamelium@ctm-0-50: - shard-apl: NOTRUN -> [SKIP][67] ([fdo#109271] / [fdo#111827]) +6 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109284] / [fdo#111827]) +4 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_content_protection@atomic-dpms: - shard-iclb: NOTRUN -> [SKIP][69] ([i915#7118]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][70] ([i915#7173]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109279] / [i915#3359]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-tglb: NOTRUN -> [SKIP][72] ([fdo#109279] / [i915#3359]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271]) +98 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#3359]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-iclb: NOTRUN -> [SKIP][75] ([i915#3359]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109274] / [fdo#111825]) +6 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109274]) +17 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][78] -> [FAIL][79] ([i915#2346]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#3528]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html - shard-iclb: NOTRUN -> [SKIP][81] ([i915#3528]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-iclb: NOTRUN -> [SKIP][82] ([i915#3840]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [FAIL][83] ([i915#4767]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html - shard-tglb: NOTRUN -> [FAIL][84] ([i915#2411] / [i915#4767]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html - shard-glk: NOTRUN -> [FAIL][85] ([i915#4767]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html - shard-iclb: NOTRUN -> [FAIL][86] ([i915#4767]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][87] -> [FAIL][88] ([i915#79]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][89] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [PASS][90] -> [FAIL][91] ([i915#79]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][92] ([i915#2587] / [i915#2672]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][93] ([i915#6375]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][94] ([i915#2672]) +3 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][95] ([i915#2672] / [i915#3555]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +14 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglb: NOTRUN -> [SKIP][97] ([fdo#109280] / [fdo#111825]) +9 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][98] ([i915#6497]) +4 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][99] ([i915#4573]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html * igt@kms_plane_multiple@tiling-4: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#3555]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-iclb: [PASS][101] -> [SKIP][102] ([i915#5235]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_prime@d3hot: - shard-iclb: NOTRUN -> [SKIP][103] ([i915#6524]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglb: NOTRUN -> [SKIP][104] ([i915#2920]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#658]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html - shard-iclb: NOTRUN -> [SKIP][106] ([i915#658]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109642] / [fdo#111068] / [i915#658]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-tglb: NOTRUN -> [FAIL][109] ([i915#132] / [i915#3467]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: NOTRUN -> [SKIP][110] ([fdo#109441]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][111] -> [SKIP][112] ([fdo#109441]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [PASS][113] -> [SKIP][114] ([i915#5519]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-iclb: NOTRUN -> [SKIP][115] ([i915#5289]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][116] ([fdo#109271]) +138 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-check-output: - shard-iclb: NOTRUN -> [SKIP][117] ([i915#2437]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-10: - shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2994]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html - shard-iclb: NOTRUN -> [SKIP][120] ([i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html - shard-tglb: NOTRUN -> [SKIP][121] ([i915#2994]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@fbdev@read: - {shard-rkl}: [SKIP][122] ([i915#2582]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][124] ([i915#6268]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@many-contexts: - {shard-rkl}: [FAIL][126] ([i915#2410]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][128] ([fdo#103375]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][130] ([i915#4525]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][132] ([i915#2842]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][134] ([i915#2842]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][136] ([i915#2842]) -> [PASS][137] +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - {shard-rkl}: [SKIP][138] ([i915#3281]) -> [PASS][139] +5 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][140] ([i915#7276]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][142] ([fdo#111656]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][144] ([i915#3282]) -> [PASS][145] +5 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [FAIL][146] ([i915#4171]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][148] ([i915#180] / [i915#1982]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@secure-batches: - {shard-rkl}: [SKIP][150] ([i915#2527]) -> [PASS][151] +3 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - {shard-rkl}: [SKIP][152] ([i915#4098]) -> [PASS][153] +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][154] ([i915#3989] / [i915#454]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_sseu@full-enable: - {shard-rkl}: [SKIP][156] ([i915#4387]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][158] ([i915#5334]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][160] ([fdo#109271]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - {shard-rkl}: [SKIP][162] ([i915#1845] / [i915#4098]) -> [PASS][163] +13 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [FAIL][164] ([i915#79]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-tglb: [DMESG-WARN][166] ([i915#2411] / [i915#2867]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - {shard-rkl}: [SKIP][168] ([i915#1849] / [i915#4098]) -> [PASS][169] +11 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-rkl}: [SKIP][170] ([i915#3558]) -> [PASS][171] +1 similar issue [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][172] ([i915#5235]) -> [PASS][173] +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_properties@crtc-properties-atomic: - {shard-rkl}: [SKIP][174] ([i915#1849]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][176] ([fdo#109441]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr@sprite_blt: - {shard-rkl}: [SKIP][178] ([i915#1072]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][180] ([i915#5519]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [DMESG-WARN][182] ([i915#180]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@sysfs_heartbeat_interval@precise@rcs0: - {shard-dg1}: [FAIL][184] ([i915#1755]) -> [PASS][185] +4 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-apl: [INCOMPLETE][186] ([i915#7248]) -> [WARN][187] ([i915#2658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-iclb: [WARN][188] ([i915#2684]) -> [FAIL][189] ([i915#2684]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-iclb: [FAIL][190] ([i915#2684]) -> [WARN][191] ([i915#2684]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-tglb: [SKIP][192] ([i915#7118]) -> [SKIP][193] ([fdo#109300]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html - shard-iclb: [SKIP][194] ([i915#7118]) -> [SKIP][195] ([fdo#109300]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][196] ([i915#4573]) -> [DMESG-FAIL][197] ([IGT#6]) +1 similar issue [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][198] ([i915#2920]) -> [SKIP][199] ([fdo#111068] / [i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7397]: https://gitlab.freedesktop.org/drm/intel/issues/7397 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7059 -> IGTPW_8109 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html [-- Attachment #2: Type: text/html, Size: 59518 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev3) 2022-11-16 3:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-16 15:05 ` Mark Yacoub 2022-11-17 2:12 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 23+ messages in thread From: Mark Yacoub @ 2022-11-16 15:05 UTC (permalink / raw) To: Vudum, Lakshminarayana; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 109020 bytes --] Hi Lakshminarayana, can I get a rerun please. On Tue, Nov 15, 2022 at 10:21 PM Patchwork <patchwork@emeril.freedesktop.org> wrote: > *Patch Details* > *Series:* Chamelium: Add new EDID Resolution List test (rev3) > *URL:* https://patchwork.freedesktop.org/series/110614/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html CI > Bug Log - changes from IGT_7059_full -> IGTPW_8109_full Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_8109_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8109_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_8109/index.html > Participating hosts (8 -> 8) > > No changes in participating hosts > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_8109_full: > IGT changes Possible regressions > > - > > igt@i915_pm_dc@dc5-psr: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html> > - > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > - {shard-rkl}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html> > - > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > - igt@fbdev@read: > - {shard-dg1}: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html> > > New tests > > New tests have been introduced between IGT_7059_full and IGTPW_8109_full: > New IGT tests (1) > > - igt@kms_chamelium@dp-edid-resolution-list: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > Known issues > > Here are the changes found in IGTPW_8109_full that come from known issues: > IGT changes Issues hit > > - > > igt@feature_discovery@display-2x: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html> > (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>) > - > > igt@feature_discovery@psr2: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@gem_create@create-ext-cpu-access-sanity-check: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html> > (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html> > (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > - > > igt@gem_ctx_persistence@legacy-engines-mixed-process: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>) > +1 similar issue > - > > igt@gem_eio@unwedge-stress: > - shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html> > (i915#3354 <https://gitlab.freedesktop.org/drm/intel/issues/3354>) > - > > igt@gem_exec_balancer@parallel-bb-first: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > - > > igt@gem_exec_fair@basic-none@vcs1: > - shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > - > > igt@gem_exec_fair@basic-none@vecs0: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > - > > igt@gem_huc_copy@huc-copy: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > - > > igt@gem_lmem_swapping@basic: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html> > (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > igt@gem_lmem_swapping@heavy-multi: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > igt@gem_lmem_swapping@heavy-verify-multi-ccs: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +1 similar issue > - > > igt@gem_render_copy@linear-to-vebox-yf-tiled: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> > (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>) > - > > igt@gem_softpin@evict-single-offset: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html> > (i915#4171 <https://gitlab.freedesktop.org/drm/intel/issues/4171>) > - > > igt@gem_softpin@evict-snoop-interruptible: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html> > (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html> > (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > - > > igt@gem_userptr_blits@access-control: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > - > > igt@gem_userptr_blits@coherency-sync: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html> > (fdo#109290 <https://bugs.freedesktop.org/show_bug.cgi?id=109290>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html> > (fdo#110542 <https://bugs.freedesktop.org/show_bug.cgi?id=110542>) > - > > igt@gen7_exec_parse@basic-allowed: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html> > (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html> > (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > +1 similar issue > - > > igt@gen9_exec_parse@allowed-single: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html> > (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / > i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>) > - > > igt@i915_module_load@resize-bar: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html> > (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>) > - > > igt@i915_pm_freq_mult@media-freq@gt0: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 <https://gitlab.freedesktop.org/drm/intel/issues/6590>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 <https://gitlab.freedesktop.org/drm/intel/issues/6590>) > - > > igt@i915_selftest@live@hangcheck: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html> > (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>) > - > > igt@i915_suspend@fence-restore-tiled2untiled: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 > similar issue > - > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#3826 <https://gitlab.freedesktop.org/drm/intel/issues/3826>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#3826 <https://gitlab.freedesktop.org/drm/intel/issues/3826>) > - > > igt@kms_atomic@atomic_plane_damage: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html> > (i915#4765 <https://gitlab.freedesktop.org/drm/intel/issues/4765>) > - > > igt@kms_big_fb@4-tiled-64bpp-rotate-270: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > igt@kms_big_fb@linear-32bpp-rotate-270: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html> > (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > +2 similar issues > - > > igt@kms_big_fb@x-tiled-64bpp-rotate-90: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +72 similar issues > - > > igt@kms_big_fb@y-tiled-8bpp-rotate-90: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> > (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / > fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > +3 similar issues > - > > igt@kms_big_fb@yf-tiled-64bpp-rotate-0: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) > - > > igt@kms_big_joiner@2x-modeset: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html> > (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > - > > igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) > +13 similar issues > - > > igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +2 similar issues > - > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +8 similar issues > - > > igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +4 similar issues > - > > igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +3 similar issues > - > > igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html> > (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > +3 similar issues > - > > igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) > - > > igt@kms_chamelium@dp-crc-single: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +5 similar issues > - > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>) > - > > igt@kms_chamelium@hdmi-hpd-for-each-pipe: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +4 similar issues > - > > igt@kms_chamelium@vga-hpd-fast: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +3 similar issues > - > > igt@kms_color_chamelium@ctm-0-50: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +6 similar issues > - > > igt@kms_color_chamelium@ctm-0-75: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +4 similar issues > - > > igt@kms_content_protection@atomic-dpms: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > - > > igt@kms_content_protection@atomic@pipe-a-dp-1: > - shard-apl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html> > (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>) > - > > igt@kms_cursor_crc@cursor-offscreen-512x170: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html> > (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / > i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> > (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / > i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > igt@kms_cursor_crc@cursor-sliding-32x32: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +98 similar issues > - > > igt@kms_cursor_crc@cursor-sliding-512x512: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html> > (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html> > (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > +6 similar issues > - > > igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > +17 similar issues > - > > igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> > (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > +1 similar issue > - > > igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#3528 <https://gitlab.freedesktop.org/drm/intel/issues/3528>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#3528 <https://gitlab.freedesktop.org/drm/intel/issues/3528>) > - > > igt@kms_dsc@dsc-with-bpc-formats: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html> > (i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>) > - > > igt@kms_fbcon_fbt@fbc-suspend: > - > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2 > : > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > - > > igt@kms_flip@2x-nonexisting-fb-interruptible: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / > i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) > +1 similar issue > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > - > > igt@kms_flip_scaled_crc > @flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> > (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / > i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +1 similar issue > - > > igt@kms_flip_scaled_crc > @flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> > (i915#6375 <https://gitlab.freedesktop.org/drm/intel/issues/6375>) > - > > igt@kms_flip_scaled_crc > @flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> > (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +3 similar issues > - > > igt@kms_flip_scaled_crc > @flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> > (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / > i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > - > > igt@kms_frontbuffer_tracking > @fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) > +14 similar issues > - > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > +9 similar issues > - > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html> > (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>) > +4 similar issues > - > > igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: > - shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html> > (i915#4573 <https://gitlab.freedesktop.org/drm/intel/issues/4573>) > +2 similar issues > - > > igt@kms_plane_multiple@tiling-4: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > +1 similar issue > - > > igt@kms_plane_scaling > @planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> > (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > +2 similar issues > - > > igt@kms_prime@d3hot: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html> > (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>) > - > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr2_su@page_flip-p010: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 > similar issue > - > > igt@kms_psr2_su@page_flip-xrgb8888: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html> > (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642> / > fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr@psr2_cursor_plane_onoff: > - shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html> > (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132> / > i915#3467 <https://gitlab.freedesktop.org/drm/intel/issues/3467>) > - > > igt@kms_psr@psr2_sprite_blt: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > - > > igt@kms_psr@psr2_sprite_mmap_gtt: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > +3 similar issues > - > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > - > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> > (i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>) > - > > igt@kms_tv_load_detect@load-detect: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +138 similar issues > - > > igt@kms_writeback@writeback-check-output: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html> > (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > - > > igt@sysfs_clients@recycle-many: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > +1 similar issue > - > > igt@sysfs_clients@sema-10: > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > +2 similar issues > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html> > (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html> > (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > > Possible fixes > > - > > igt@fbdev@read: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html> > (i915#2582 <https://gitlab.freedesktop.org/drm/intel/issues/2582>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html> > - > > igt@gem_ctx_exec@basic-nohangcheck: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html> > (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html> > - > > igt@gem_ctx_persistence@many-contexts: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html> > (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html> > - > > igt@gem_eio@in-flight-suspend: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html> > (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html> > - > > igt@gem_exec_balancer@parallel-keep-submit-fence: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > - > > igt@gem_exec_fair@basic-none-share@rcs0: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> > - > > igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html> > - > > igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html> > +3 similar issues > - > > igt@gem_exec_reloc@basic-write-gtt-noreloc: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> > (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> > +5 similar issues > - > > igt@gem_exec_schedule@semaphore-power: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html> > (i915#7276 <https://gitlab.freedesktop.org/drm/intel/issues/7276>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> > - > > igt@gem_mmap_gtt@coherency: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html> > (fdo#111656 <https://bugs.freedesktop.org/show_bug.cgi?id=111656>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> > - > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > +5 similar issues > - > > igt@gem_softpin@evict-single-offset: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html> > (i915#4171 <https://gitlab.freedesktop.org/drm/intel/issues/4171>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html> > - > > igt@gem_workarounds@suspend-resume-context: > - shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / > i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html> > - > > igt@gen9_exec_parse@secure-batches: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html> > (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html> > +3 similar issues > - > > igt@i915_pipe_stress@stress-xrgb8888-ytiled: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> > (i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> > +1 similar issue > - > > igt@i915_pm_dc@dc6-psr: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> > (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / > i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> > - > > igt@i915_pm_sseu@full-enable: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html> > (i915#4387 <https://gitlab.freedesktop.org/drm/intel/issues/4387>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html> > - > > igt@i915_selftest@live@gt_heartbeat: > - shard-apl: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> > (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html> > - > > igt@i915_selftest@perf@engine_cs: > - shard-snb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html> > - > > igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#1845 <https://gitlab.freedesktop.org/drm/intel/issues/1845> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > +13 similar issues > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> > - > > igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: > - shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> > (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#2867 <https://gitlab.freedesktop.org/drm/intel/issues/2867>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> > - > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> > +11 similar issues > - > > igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> > (i915#3558 <https://gitlab.freedesktop.org/drm/intel/issues/3558>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> > +1 similar issue > - > > igt@kms_plane_scaling > @planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > +2 similar issues > - > > igt@kms_properties@crtc-properties-atomic: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html> > - > > igt@kms_psr@psr2_primary_mmap_gtt: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> > - > > igt@kms_psr@sprite_blt: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html> > (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html> > - > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > - > > igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > - > > igt@sysfs_heartbeat_interval@precise@rcs0: > - {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> > (i915#1755 <https://gitlab.freedesktop.org/drm/intel/issues/1755>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> > +4 similar issues > > Warnings > > - > > igt@gem_pread@exhaustion: > - shard-apl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html> > (i915#7248 <https://gitlab.freedesktop.org/drm/intel/issues/7248>) > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html> > (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>) > - > > igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-iclb: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > - > > igt@i915_pm_rc6_residency@rc6-idle@vecs0: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > - > > igt@kms_content_protection@mei_interface: > - > > shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html> > (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) > - > > shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html> > (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) > - > > igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > (i915#4573 <https://gitlab.freedesktop.org/drm/intel/issues/4573>) > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > (IGT#6 <https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) > +1 similar issue > - > > igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> > (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > Build changes > > - CI: CI-20190529 -> None > - IGT: IGT_7059 -> IGTPW_8109 > > CI-20190529: 20190529 > CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html > IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > On Tue, Nov 15, 2022 at 10:21 PM Patchwork <patchwork@emeril.freedesktop.org> wrote: > *Patch Details* > *Series:* Chamelium: Add new EDID Resolution List test (rev3) > *URL:* https://patchwork.freedesktop.org/series/110614/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html CI > Bug Log - changes from IGT_7059_full -> IGTPW_8109_full Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_8109_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8109_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_8109/index.html > Participating hosts (8 -> 8) > > No changes in participating hosts > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_8109_full: > IGT changes Possible regressions > > - > > igt@i915_pm_dc@dc5-psr: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html> > - > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > - {shard-rkl}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html> > - > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > - igt@fbdev@read: > - {shard-dg1}: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html> > > New tests > > New tests have been introduced between IGT_7059_full and IGTPW_8109_full: > New IGT tests (1) > > - igt@kms_chamelium@dp-edid-resolution-list: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > Known issues > > Here are the changes found in IGTPW_8109_full that come from known issues: > IGT changes Issues hit > > - > > igt@feature_discovery@display-2x: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html> > (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>) > - > > igt@feature_discovery@psr2: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@gem_create@create-ext-cpu-access-sanity-check: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html> > (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html> > (i915#6335 <https://gitlab.freedesktop.org/drm/intel/issues/6335>) > - > > igt@gem_ctx_persistence@legacy-engines-mixed-process: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>) > +1 similar issue > - > > igt@gem_eio@unwedge-stress: > - shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html> > (i915#3354 <https://gitlab.freedesktop.org/drm/intel/issues/3354>) > - > > igt@gem_exec_balancer@parallel-bb-first: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > - > > igt@gem_exec_fair@basic-none@vcs1: > - shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > - > > igt@gem_exec_fair@basic-none@vecs0: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > - > > igt@gem_huc_copy@huc-copy: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > - > > igt@gem_lmem_swapping@basic: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html> > (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > igt@gem_lmem_swapping@heavy-multi: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > igt@gem_lmem_swapping@heavy-verify-multi-ccs: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +2 similar issues > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) > +1 similar issue > - > > igt@gem_render_copy@linear-to-vebox-yf-tiled: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> > (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>) > - > > igt@gem_softpin@evict-single-offset: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html> > (i915#4171 <https://gitlab.freedesktop.org/drm/intel/issues/4171>) > - > > igt@gem_softpin@evict-snoop-interruptible: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html> > (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html> > (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>) > - > > igt@gem_userptr_blits@access-control: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html> > (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) > - > > igt@gem_userptr_blits@coherency-sync: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html> > (fdo#109290 <https://bugs.freedesktop.org/show_bug.cgi?id=109290>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html> > (fdo#110542 <https://bugs.freedesktop.org/show_bug.cgi?id=110542>) > - > > igt@gen7_exec_parse@basic-allowed: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html> > (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html> > (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) > +1 similar issue > - > > igt@gen9_exec_parse@allowed-single: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html> > (i915#5566 <https://gitlab.freedesktop.org/drm/intel/issues/5566> / > i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>) > - > > igt@i915_module_load@resize-bar: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html> > (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>) > - > > igt@i915_pm_freq_mult@media-freq@gt0: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 <https://gitlab.freedesktop.org/drm/intel/issues/6590>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 <https://gitlab.freedesktop.org/drm/intel/issues/6590>) > - > > igt@i915_selftest@live@hangcheck: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html> > (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>) > - > > igt@i915_suspend@fence-restore-tiled2untiled: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 > similar issue > - > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#3826 <https://gitlab.freedesktop.org/drm/intel/issues/3826>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> > (i915#3826 <https://gitlab.freedesktop.org/drm/intel/issues/3826>) > - > > igt@kms_atomic@atomic_plane_damage: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html> > (i915#4765 <https://gitlab.freedesktop.org/drm/intel/issues/4765>) > - > > igt@kms_big_fb@4-tiled-64bpp-rotate-270: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>) > - > > igt@kms_big_fb@linear-32bpp-rotate-270: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html> > (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > +2 similar issues > - > > igt@kms_big_fb@x-tiled-64bpp-rotate-90: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +72 similar issues > - > > igt@kms_big_fb@y-tiled-8bpp-rotate-90: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> > (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / > fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) > +3 similar issues > - > > igt@kms_big_fb@yf-tiled-64bpp-rotate-0: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) > - > > igt@kms_big_joiner@2x-modeset: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html> > (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>) > - > > igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) > +13 similar issues > - > > igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +2 similar issues > - > > igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +8 similar issues > - > > igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +4 similar issues > - > > igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> > (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / > i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) > +3 similar issues > - > > igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html> > (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) > +3 similar issues > - > > igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> > (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) > - > > igt@kms_chamelium@dp-crc-single: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +5 similar issues > - > > {igt@kms_chamelium@dp-edid-resolution-list} (NEW): > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284>) > - > > igt@kms_chamelium@hdmi-hpd-for-each-pipe: > - shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +4 similar issues > - > > igt@kms_chamelium@vga-hpd-fast: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +3 similar issues > - > > igt@kms_color_chamelium@ctm-0-50: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +6 similar issues > - > > igt@kms_color_chamelium@ctm-0-75: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html> > (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +4 similar issues > - > > igt@kms_content_protection@atomic-dpms: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > - > > igt@kms_content_protection@atomic@pipe-a-dp-1: > - shard-apl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html> > (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>) > - > > igt@kms_cursor_crc@cursor-offscreen-512x170: > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html> > (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / > i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> > (fdo#109279 <https://bugs.freedesktop.org/show_bug.cgi?id=109279> / > i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > igt@kms_cursor_crc@cursor-sliding-32x32: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +98 similar issues > - > > igt@kms_cursor_crc@cursor-sliding-512x512: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html> > (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html> > (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) > - > > igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > +6 similar issues > - > > igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) > +17 similar issues > - > > igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> > (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) > +1 similar issue > - > > igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#3528 <https://gitlab.freedesktop.org/drm/intel/issues/3528>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> > (i915#3528 <https://gitlab.freedesktop.org/drm/intel/issues/3528>) > - > > igt@kms_dsc@dsc-with-bpc-formats: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html> > (i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>) > - > > igt@kms_fbcon_fbt@fbc-suspend: > - > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>) > - > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2 > : > - shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > - > > igt@kms_flip@2x-nonexisting-fb-interruptible: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> > (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / > i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) > +1 similar issue > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: > - shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) > - > > igt@kms_flip_scaled_crc > @flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> > (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / > i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +1 similar issue > - > > igt@kms_flip_scaled_crc > @flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> > (i915#6375 <https://gitlab.freedesktop.org/drm/intel/issues/6375>) > - > > igt@kms_flip_scaled_crc > @flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> > (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) > +3 similar issues > - > > igt@kms_flip_scaled_crc > @flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> > (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / > i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > - > > igt@kms_frontbuffer_tracking > @fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) > +14 similar issues > - > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> > (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / > fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) > +9 similar issues > - > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: > - shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html> > (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>) > +4 similar issues > - > > igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: > - shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html> > (i915#4573 <https://gitlab.freedesktop.org/drm/intel/issues/4573>) > +2 similar issues > - > > igt@kms_plane_multiple@tiling-4: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html> > (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > +1 similar issue > - > > igt@kms_plane_scaling > @planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> > (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > +2 similar issues > - > > igt@kms_prime@d3hot: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html> > (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524>) > - > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> > (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr2_su@page_flip-p010: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 > similar issue > - > > igt@kms_psr2_su@page_flip-xrgb8888: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html> > (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642> / > fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > - > > igt@kms_psr@psr2_cursor_plane_onoff: > - shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html> > (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132> / > i915#3467 <https://gitlab.freedesktop.org/drm/intel/issues/3467>) > - > > igt@kms_psr@psr2_sprite_blt: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > - > > igt@kms_psr@psr2_sprite_mmap_gtt: > - shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > +3 similar issues > - > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > - > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> > (i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>) > - > > igt@kms_tv_load_detect@load-detect: > - shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +138 similar issues > - > > igt@kms_writeback@writeback-check-output: > - shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html> > (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>) > - > > igt@sysfs_clients@recycle-many: > - shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > +1 similar issue > - > > igt@sysfs_clients@sema-10: > - > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > +2 similar issues > - > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html> > (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > - > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html> > (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) > > Possible fixes > > - > > igt@fbdev@read: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html> > (i915#2582 <https://gitlab.freedesktop.org/drm/intel/issues/2582>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html> > - > > igt@gem_ctx_exec@basic-nohangcheck: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html> > (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html> > - > > igt@gem_ctx_persistence@many-contexts: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html> > (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html> > - > > igt@gem_eio@in-flight-suspend: > - {shard-rkl}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html> > (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html> > - > > igt@gem_exec_balancer@parallel-keep-submit-fence: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html> > - > > igt@gem_exec_fair@basic-none-share@rcs0: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> > - > > igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html> > - > > igt@gem_exec_fair@basic-pace@vcs0: > - shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html> > (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html> > +3 similar issues > - > > igt@gem_exec_reloc@basic-write-gtt-noreloc: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> > (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> > +5 similar issues > - > > igt@gem_exec_schedule@semaphore-power: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html> > (i915#7276 <https://gitlab.freedesktop.org/drm/intel/issues/7276>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> > - > > igt@gem_mmap_gtt@coherency: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html> > (fdo#111656 <https://bugs.freedesktop.org/show_bug.cgi?id=111656>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> > - > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> > +5 similar issues > - > > igt@gem_softpin@evict-single-offset: > - shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html> > (i915#4171 <https://gitlab.freedesktop.org/drm/intel/issues/4171>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html> > - > > igt@gem_workarounds@suspend-resume-context: > - shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / > i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html> > - > > igt@gen9_exec_parse@secure-batches: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html> > (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html> > +3 similar issues > - > > igt@i915_pipe_stress@stress-xrgb8888-ytiled: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> > (i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> > +1 similar issue > - > > igt@i915_pm_dc@dc6-psr: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> > (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / > i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> > - > > igt@i915_pm_sseu@full-enable: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html> > (i915#4387 <https://gitlab.freedesktop.org/drm/intel/issues/4387>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html> > - > > igt@i915_selftest@live@gt_heartbeat: > - shard-apl: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> > (i915#5334 <https://gitlab.freedesktop.org/drm/intel/issues/5334>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html> > - > > igt@i915_selftest@perf@engine_cs: > - shard-snb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html> > - > > igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#1845 <https://gitlab.freedesktop.org/drm/intel/issues/1845> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > +13 similar issues > - > > igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> > (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> > - > > igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: > - shard-tglb: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> > (i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411> / > i915#2867 <https://gitlab.freedesktop.org/drm/intel/issues/2867>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> > - > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849> / > i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> > +11 similar issues > - > > igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> > (i915#3558 <https://gitlab.freedesktop.org/drm/intel/issues/3558>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> > +1 similar issue > - > > igt@kms_plane_scaling > @planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> > +2 similar issues > - > > igt@kms_properties@crtc-properties-atomic: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html> > (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html> > - > > igt@kms_psr@psr2_primary_mmap_gtt: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> > (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> > - > > igt@kms_psr@sprite_blt: > - {shard-rkl}: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html> > (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html> > - > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > - > > igt@kms_vblank@pipe-a-ts-continuation-suspend: > - shard-apl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> > PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> > - > > igt@sysfs_heartbeat_interval@precise@rcs0: > - {shard-dg1}: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> > (i915#1755 <https://gitlab.freedesktop.org/drm/intel/issues/1755>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> > +4 similar issues > > Warnings > > - > > igt@gem_pread@exhaustion: > - shard-apl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html> > (i915#7248 <https://gitlab.freedesktop.org/drm/intel/issues/7248>) > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html> > (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>) > - > > igt@i915_pm_rc6_residency@rc6-idle@rcs0: > - shard-iclb: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > - > > igt@i915_pm_rc6_residency@rc6-idle@vecs0: > - shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> > (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>) > - > > igt@kms_content_protection@mei_interface: > - > > shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html> > (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) > - > > shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html> > (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html> > (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) > - > > igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: > - shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > (i915#4573 <https://gitlab.freedesktop.org/drm/intel/issues/4573>) > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> > (IGT#6 <https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) > +1 similar issue > - > > igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> > (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> > (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / > i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > Build changes > > - CI: CI-20190529 -> None > - IGT: IGT_7059 -> IGTPW_8109 > > CI-20190529: 20190529 > CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html > IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > [-- Attachment #2: Type: text/html, Size: 134235 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev3) 2022-11-16 15:05 ` Mark Yacoub @ 2022-11-17 2:12 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 23+ messages in thread From: Vudum, Lakshminarayana @ 2022-11-17 2:12 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 99924 bytes --] Re-reported. From: Mark Yacoub <markyacoub@chromium.org> Sent: Wednesday, November 16, 2022 5:06 PM To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: Re: ✗ Fi.CI.IGT: failure for Chamelium: Add new EDID Resolution List test (rev3) Hi Lakshminarayana, can I get a rerun please. On Tue, Nov 15, 2022 at 10:21 PM Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> wrote: Patch Details Series: Chamelium: Add new EDID Resolution List test (rev3) URL: https://patchwork.freedesktop.org/series/110614/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html CI Bug Log - changes from IGT_7059_full -> IGTPW_8109_full Summary FAILURE Serious unknown changes coming with IGTPW_8109_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8109_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_8109/index.html Participating hosts (8 -> 8) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_8109_full: IGT changes Possible regressions * igt@i915_pm_dc@dc5-psr: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html> * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@fbdev@read: * {shard-dg1}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html> New tests New tests have been introduced between IGT_7059_full and IGTPW_8109_full: New IGT tests (1) * igt@kms_chamelium@dp-edid-resolution-list: * Statuses : 6 skip(s) * Exec time: [0.0] s Known issues Here are the changes found in IGTPW_8109_full that come from known issues: IGT changes Issues hit * igt@feature_discovery@display-2x: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html> (i915#1839<https://gitlab.freedesktop.org/drm/intel/issues/1839>) * igt@feature_discovery@psr2: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@gem_create@create-ext-cpu-access-sanity-check: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/intel/issues/6335>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/intel/issues/6335>) * igt@gem_ctx_persistence@legacy-engines-mixed-process: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue * igt@gem_eio@unwedge-stress: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html> (i915#3354<https://gitlab.freedesktop.org/drm/intel/issues/3354>) * igt@gem_exec_balancer@parallel-bb-first: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none@vcs1: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none@vecs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_huc_copy@huc-copy: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) * igt@gem_lmem_swapping@basic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@heavy-multi: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@heavy-verify-multi-ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) * igt@gem_softpin@evict-single-offset: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html> (i915#4171<https://gitlab.freedesktop.org/drm/intel/issues/4171>) * igt@gem_softpin@evict-snoop-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>) * igt@gem_userptr_blits@access-control: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gen7_exec_parse@basic-allowed: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@i915_module_load@resize-bar: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>) * igt@i915_pm_freq_mult@media-freq@gt0: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>) * igt@i915_selftest@live@hangcheck: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html> (i915#5591<https://gitlab.freedesktop.org/drm/intel/issues/5591>) * igt@i915_suspend@fence-restore-tiled2untiled: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>) * igt@kms_atomic@atomic_plane_damage: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html> (i915#4765<https://gitlab.freedesktop.org/drm/intel/issues/4765>) * igt@kms_big_fb@4-tiled-64bpp-rotate-270: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@linear-32bpp-rotate-270: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +2 similar issues * igt@kms_big_fb@x-tiled-64bpp-rotate-90: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_big_fb@y-tiled-8bpp-rotate-90: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (fdo#110725<https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +3 similar issues * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_big_joiner@2x-modeset: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>) * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +13 similar issues * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +8 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +4 similar issues * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3 similar issues * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) * igt@kms_chamelium@dp-crc-single: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +5 similar issues * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284>) * igt@kms_chamelium@hdmi-hpd-for-each-pipe: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_chamelium@vga-hpd-fast: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@ctm-0-50: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@ctm-0-75: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_content_protection@atomic-dpms: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) * igt@kms_content_protection@atomic@pipe-a-dp-1: * shard-apl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>) * igt@kms_cursor_crc@cursor-offscreen-512x170: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_crc@cursor-sliding-32x32: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +98 similar issues * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +6 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +17 similar issues * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) +1 similar issue * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> (i915#3528<https://gitlab.freedesktop.org/drm/intel/issues/3528>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> (i915#3528<https://gitlab.freedesktop.org/drm/intel/issues/3528>) * igt@kms_dsc@dsc-with-bpc-formats: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>) * igt@kms_fbcon_fbt@fbc-suspend: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> (i915#6375<https://gitlab.freedesktop.org/drm/intel/issues/6375>) * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 similar issues * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +14 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html> (i915#6497<https://gitlab.freedesktop.org/drm/intel/issues/6497>) +4 similar issues * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) +2 similar issues * igt@kms_plane_multiple@tiling-4: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues * igt@kms_prime@d3hot: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/intel/issues/6524>) * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue * igt@kms_psr2_su@page_flip-xrgb8888: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr@psr2_cursor_plane_onoff: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467<https://gitlab.freedesktop.org/drm/intel/issues/3467>) * igt@kms_psr@psr2_sprite_blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_psr@psr2_sprite_mmap_gtt: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3 similar issues * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>) * igt@kms_tv_load_detect@load-detect: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +138 similar issues * igt@kms_writeback@writeback-check-output: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@sema-10: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@fbdev@read: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html> (i915#2582<https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html> * igt@gem_ctx_exec@basic-nohangcheck: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@many-contexts: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html> (i915#2410<https://gitlab.freedesktop.org/drm/intel/issues/2410>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html> * igt@gem_eio@in-flight-suspend: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html> * igt@gem_exec_balancer@parallel-keep-submit-fence: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html> * igt@gem_exec_fair@basic-none-share@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_exec_fair@basic-pace@vcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html> +3 similar issues * igt@gem_exec_reloc@basic-write-gtt-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> +5 similar issues * igt@gem_exec_schedule@semaphore-power: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html> (i915#7276<https://gitlab.freedesktop.org/drm/intel/issues/7276>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> * igt@gem_mmap_gtt@coherency: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> +5 similar issues * igt@gem_softpin@evict-single-offset: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html> (i915#4171<https://gitlab.freedesktop.org/drm/intel/issues/4171>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html> * igt@gem_workarounds@suspend-resume-context: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html> * igt@gen9_exec_parse@secure-batches: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html> +3 similar issues * igt@i915_pipe_stress@stress-xrgb8888-ytiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> (i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_sseu@full-enable: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html> (i915#4387<https://gitlab.freedesktop.org/drm/intel/issues/4387>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html> * igt@i915_selftest@live@gt_heartbeat: * shard-apl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334<https://gitlab.freedesktop.org/drm/intel/issues/5334>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html> * igt@i915_selftest@perf@engine_cs: * shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +13 similar issues * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#2867<https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> +11 similar issues * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> (i915#3558<https://gitlab.freedesktop.org/drm/intel/issues/3558>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> +1 similar issue * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_properties@crtc-properties-atomic: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html> * igt@kms_psr@psr2_primary_mmap_gtt: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> * igt@kms_psr@sprite_blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> * igt@kms_vblank@pipe-a-ts-continuation-suspend: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> * igt@sysfs_heartbeat_interval@precise@rcs0: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> (i915#1755<https://gitlab.freedesktop.org/drm/intel/issues/1755>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> +4 similar issues Warnings * igt@gem_pread@exhaustion: * shard-apl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html> (i915#7248<https://gitlab.freedesktop.org/drm/intel/issues/7248>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) * igt@kms_content_protection@mei_interface: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html> (fdo#109300<https://bugs.freedesktop.org/show_bug.cgi?id=109300>) * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html> (fdo#109300<https://bugs.freedesktop.org/show_bug.cgi?id=109300>) * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> (IGT#6<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) +1 similar issue * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7059 -> IGTPW_8109 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git On Tue, Nov 15, 2022 at 10:21 PM Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> wrote: Patch Details Series: Chamelium: Add new EDID Resolution List test (rev3) URL: https://patchwork.freedesktop.org/series/110614/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html CI Bug Log - changes from IGT_7059_full -> IGTPW_8109_full Summary FAILURE Serious unknown changes coming with IGTPW_8109_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8109_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_8109/index.html Participating hosts (8 -> 8) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_8109_full: IGT changes Possible regressions * igt@i915_pm_dc@dc5-psr: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html> * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): * {shard-rkl}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@fbdev@read: * {shard-dg1}: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html> New tests New tests have been introduced between IGT_7059_full and IGTPW_8109_full: New IGT tests (1) * igt@kms_chamelium@dp-edid-resolution-list: * Statuses : 6 skip(s) * Exec time: [0.0] s Known issues Here are the changes found in IGTPW_8109_full that come from known issues: IGT changes Issues hit * igt@feature_discovery@display-2x: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html> (i915#1839<https://gitlab.freedesktop.org/drm/intel/issues/1839>) * igt@feature_discovery@psr2: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@gem_create@create-ext-cpu-access-sanity-check: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/intel/issues/6335>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335<https://gitlab.freedesktop.org/drm/intel/issues/6335>) * igt@gem_ctx_persistence@legacy-engines-mixed-process: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue * igt@gem_eio@unwedge-stress: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html> (i915#3354<https://gitlab.freedesktop.org/drm/intel/issues/3354>) * igt@gem_exec_balancer@parallel-bb-first: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) * igt@gem_exec_fair@basic-none@vcs1: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-none@vecs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_huc_copy@huc-copy: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) * igt@gem_lmem_swapping@basic: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@heavy-multi: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@heavy-verify-multi-ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue * igt@gem_render_copy@linear-to-vebox-yf-tiled: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> (i915#768<https://gitlab.freedesktop.org/drm/intel/issues/768>) * igt@gem_softpin@evict-single-offset: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html> (i915#4171<https://gitlab.freedesktop.org/drm/intel/issues/4171>) * igt@gem_softpin@evict-snoop-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>) * igt@gem_userptr_blits@access-control: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gem_userptr_blits@coherency-sync: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html> (fdo#109290<https://bugs.freedesktop.org/show_bug.cgi?id=109290>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>) * igt@gen7_exec_parse@basic-allowed: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566> / i915#716<https://gitlab.freedesktop.org/drm/intel/issues/716>) * igt@i915_module_load@resize-bar: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>) * igt@i915_pm_freq_mult@media-freq@gt0: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590<https://gitlab.freedesktop.org/drm/intel/issues/6590>) * igt@i915_selftest@live@hangcheck: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html> (i915#5591<https://gitlab.freedesktop.org/drm/intel/issues/5591>) * igt@i915_suspend@fence-restore-tiled2untiled: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +1 similar issue * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>) * igt@kms_atomic@atomic_plane_damage: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html> (i915#4765<https://gitlab.freedesktop.org/drm/intel/issues/4765>) * igt@kms_big_fb@4-tiled-64bpp-rotate-270: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@linear-32bpp-rotate-270: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +2 similar issues * igt@kms_big_fb@x-tiled-64bpp-rotate-90: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +72 similar issues * igt@kms_big_fb@y-tiled-8bpp-rotate-90: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (fdo#110725<https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +3 similar issues * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_big_joiner@2x-modeset: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>) * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +13 similar issues * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +2 similar issues * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +8 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +4 similar issues * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3 similar issues * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) * igt@kms_chamelium@dp-crc-single: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +5 similar issues * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284>) * igt@kms_chamelium@hdmi-hpd-for-each-pipe: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_chamelium@vga-hpd-fast: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3 similar issues * igt@kms_color_chamelium@ctm-0-50: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +6 similar issues * igt@kms_color_chamelium@ctm-0-75: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues * igt@kms_content_protection@atomic-dpms: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) * igt@kms_content_protection@atomic@pipe-a-dp-1: * shard-apl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>) * igt@kms_cursor_crc@cursor-offscreen-512x170: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (fdo#109279<https://bugs.freedesktop.org/show_bug.cgi?id=109279> / i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_crc@cursor-sliding-32x32: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +98 similar issues * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +6 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +17 similar issues * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) +1 similar issue * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> (i915#3528<https://gitlab.freedesktop.org/drm/intel/issues/3528>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html> (i915#3528<https://gitlab.freedesktop.org/drm/intel/issues/3528>) * igt@kms_dsc@dsc-with-bpc-formats: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html> (i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>) * igt@kms_fbcon_fbt@fbc-suspend: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html> (i915#4767<https://gitlab.freedesktop.org/drm/intel/issues/4767>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> (i915#6375<https://gitlab.freedesktop.org/drm/intel/issues/6375>) * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3 similar issues * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +14 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html> (i915#6497<https://gitlab.freedesktop.org/drm/intel/issues/6497>) +4 similar issues * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) +2 similar issues * igt@kms_plane_multiple@tiling-4: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues * igt@kms_prime@d3hot: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/intel/issues/6524>) * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr2_su@page_flip-p010: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue * igt@kms_psr2_su@page_flip-xrgb8888: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr@psr2_cursor_plane_onoff: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html> (i915#132<https://gitlab.freedesktop.org/drm/intel/issues/132> / i915#3467<https://gitlab.freedesktop.org/drm/intel/issues/3467>) * igt@kms_psr@psr2_sprite_blt: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) * igt@kms_psr@psr2_sprite_mmap_gtt: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3 similar issues * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>) * igt@kms_tv_load_detect@load-detect: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +138 similar issues * igt@kms_writeback@writeback-check-output: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>) * igt@sysfs_clients@recycle-many: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue * igt@sysfs_clients@sema-10: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) Possible fixes * igt@fbdev@read: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html> (i915#2582<https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html> * igt@gem_ctx_exec@basic-nohangcheck: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_ctx_persistence@many-contexts: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html> (i915#2410<https://gitlab.freedesktop.org/drm/intel/issues/2410>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html> * igt@gem_eio@in-flight-suspend: * {shard-rkl}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html> * igt@gem_exec_balancer@parallel-keep-submit-fence: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html> * igt@gem_exec_fair@basic-none-share@rcs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html> * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html> * igt@gem_exec_fair@basic-pace@vcs0: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html> +3 similar issues * igt@gem_exec_reloc@basic-write-gtt-noreloc: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html> +5 similar issues * igt@gem_exec_schedule@semaphore-power: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html> (i915#7276<https://gitlab.freedesktop.org/drm/intel/issues/7276>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> * igt@gem_mmap_gtt@coherency: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html> (fdo#111656<https://bugs.freedesktop.org/show_bug.cgi?id=111656>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> +5 similar issues * igt@gem_softpin@evict-single-offset: * shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html> (i915#4171<https://gitlab.freedesktop.org/drm/intel/issues/4171>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html> * igt@gem_workarounds@suspend-resume-context: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html> * igt@gen9_exec_parse@secure-batches: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html> +3 similar issues * igt@i915_pipe_stress@stress-xrgb8888-ytiled: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> (i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> +1 similar issue * igt@i915_pm_dc@dc6-psr: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html> * igt@i915_pm_sseu@full-enable: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html> (i915#4387<https://gitlab.freedesktop.org/drm/intel/issues/4387>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html> * igt@i915_selftest@live@gt_heartbeat: * shard-apl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334<https://gitlab.freedesktop.org/drm/intel/issues/5334>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html> * igt@i915_selftest@perf@engine_cs: * shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> (i915#1845<https://gitlab.freedesktop.org/drm/intel/issues/1845> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> +13 similar issues * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: * shard-tglb: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> (i915#2411<https://gitlab.freedesktop.org/drm/intel/issues/2411> / i915#2867<https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> +11 similar issues * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> (i915#3558<https://gitlab.freedesktop.org/drm/intel/issues/3558>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html> +1 similar issue * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html> +2 similar issues * igt@kms_properties@crtc-properties-atomic: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html> (i915#1849<https://gitlab.freedesktop.org/drm/intel/issues/1849>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html> * igt@kms_psr@psr2_primary_mmap_gtt: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> * igt@kms_psr@sprite_blt: * {shard-rkl}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> * igt@kms_vblank@pipe-a-ts-continuation-suspend: * shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> * igt@sysfs_heartbeat_interval@precise@rcs0: * {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> (i915#1755<https://gitlab.freedesktop.org/drm/intel/issues/1755>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html> +4 similar issues Warnings * igt@gem_pread@exhaustion: * shard-apl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html> (i915#7248<https://gitlab.freedesktop.org/drm/intel/issues/7248>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>) * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * shard-iclb: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * shard-iclb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2684<https://gitlab.freedesktop.org/drm/intel/issues/2684>) * igt@kms_content_protection@mei_interface: * shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html> (fdo#109300<https://bugs.freedesktop.org/show_bug.cgi?id=109300>) * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html> (fdo#109300<https://bugs.freedesktop.org/show_bug.cgi?id=109300>) * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> (i915#4573<https://gitlab.freedesktop.org/drm/intel/issues/4573>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html> (IGT#6<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6>) +1 similar issue * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: * shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7059 -> IGTPW_8109 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git [-- Attachment #2: Type: text/html, Size: 219278 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Chamelium: Add new EDID Resolution List test (rev3) 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub ` (12 preceding siblings ...) 2022-11-16 3:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-16 23:22 ` Patchwork 13 siblings, 0 replies; 23+ messages in thread From: Patchwork @ 2022-11-16 23:22 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 53377 bytes --] == Series Details == Series: Chamelium: Add new EDID Resolution List test (rev3) URL : https://patchwork.freedesktop.org/series/110614/ State : success == Summary == CI Bug Log - changes from IGT_7059_full -> IGTPW_8109_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8109_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@kms_chamelium@dp-edid-resolution-list.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@fbdev@read: - {shard-dg1}: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-18/igt@fbdev@read.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-19/igt@fbdev@read.html New tests --------- New tests have been introduced between IGT_7059_full and IGTPW_8109_full: ### New IGT tests (1) ### * igt@kms_chamelium@dp-edid-resolution-list: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8109_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-iclb: NOTRUN -> [SKIP][4] ([i915#1839]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@feature_discovery@display-2x.html * igt@feature_discovery@psr2: - shard-iclb: [PASS][5] -> [SKIP][6] ([i915#658]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@feature_discovery@psr2.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@feature_discovery@psr2.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglb: NOTRUN -> [SKIP][7] ([i915#6335]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-iclb: NOTRUN -> [SKIP][8] ([i915#6335]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][10] ([i915#3354]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [PASS][11] -> [SKIP][12] ([i915#4525]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][13] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-none@vecs0: - shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#2190]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-iclb: NOTRUN -> [SKIP][17] ([i915#4613]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-multi: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglb: NOTRUN -> [SKIP][19] ([i915#4613]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#768]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_softpin@evict-single-offset: - shard-iclb: [PASS][22] -> [FAIL][23] ([i915#4171]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@gem_softpin@evict-single-offset.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_softpin@evict-single-offset.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109312]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_softpin@evict-snoop-interruptible.html - shard-iclb: NOTRUN -> [SKIP][25] ([fdo#109312]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@access-control: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#3297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][27] ([fdo#109290]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#110542]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@gem_userptr_blits@coherency-sync.html * igt@gen7_exec_parse@basic-allowed: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#109289]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gen7_exec_parse@basic-allowed.html - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][31] -> [DMESG-WARN][32] ([i915#5566] / [i915#716]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gen9_exec_parse@allowed-single.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#6412]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc5-psr: - shard-tglb: [PASS][34] -> [FAIL][35] ([i915#6470]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@i915_pm_dc@dc5-psr.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-iclb: NOTRUN -> [SKIP][36] ([i915#6590]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglb: NOTRUN -> [SKIP][37] ([i915#6590]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][38] -> [DMESG-WARN][39] ([i915#5591]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@i915_selftest@live@hangcheck.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][40] -> [DMESG-WARN][41] ([i915#180]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3826]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][43] ([i915#3826]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][44] ([i915#4765]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#5286]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][46] ([i915#5286]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#111614]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271]) +72 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk9/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#110725] / [fdo#111614]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111615]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#110723]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-iclb: NOTRUN -> [SKIP][52] ([i915#2705]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278]) +13 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3689] / [i915#3886]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +8 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3886]) +4 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109278] / [i915#3886]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#6095]) +3 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3689]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_chamelium@dp-crc-single: - shard-snb: NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +5 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb5/igt@kms_chamelium@dp-crc-single.html * {igt@kms_chamelium@dp-edid-resolution-list} (NEW): - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_chamelium@dp-edid-resolution-list.html - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#109284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_chamelium@dp-edid-resolution-list.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +4 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium@vga-hpd-fast: - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109284] / [fdo#111827]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_chamelium@vga-hpd-fast.html * igt@kms_color_chamelium@ctm-0-50: - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +6 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_color_chamelium@ctm-0-50.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109284] / [fdo#111827]) +4 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_content_protection@atomic-dpms: - shard-iclb: NOTRUN -> [SKIP][67] ([i915#7118]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][68] ([i915#7173]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109279] / [i915#3359]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109279] / [i915#3359]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271]) +98 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3359]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-iclb: NOTRUN -> [SKIP][73] ([i915#3359]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#109274] / [fdo#111825]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109274]) +17 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][76] -> [FAIL][77] ([i915#2346]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][78] ([i915#3528]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html - shard-iclb: NOTRUN -> [SKIP][79] ([i915#3528]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-iclb: NOTRUN -> [SKIP][80] ([i915#3840]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [FAIL][81] ([i915#4767]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html - shard-tglb: NOTRUN -> [FAIL][82] ([i915#2411] / [i915#4767]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_fbcon_fbt@fbc-suspend.html - shard-glk: NOTRUN -> [FAIL][83] ([i915#4767]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html - shard-iclb: NOTRUN -> [FAIL][84] ([i915#4767]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][85] -> [FAIL][86] ([i915#79]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [PASS][88] -> [FAIL][89] ([i915#79]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][90] ([i915#2587] / [i915#2672]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][91] ([i915#6375]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][92] ([i915#2672]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][93] ([i915#2672] / [i915#3555]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109280]) +14 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglb: NOTRUN -> [SKIP][95] ([fdo#109280] / [fdo#111825]) +9 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][96] ([i915#6497]) +4 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-iclb: [PASS][97] -> [FAIL][98] ([i915#2546]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][99] ([i915#4573]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html * igt@kms_plane_multiple@tiling-4: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#3555]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-iclb: [PASS][101] -> [SKIP][102] ([i915#5235]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_prime@d3hot: - shard-iclb: NOTRUN -> [SKIP][103] ([i915#6524]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglb: NOTRUN -> [SKIP][104] ([i915#2920]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#658]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html - shard-iclb: NOTRUN -> [SKIP][106] ([i915#658]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109642] / [fdo#111068] / [i915#658]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-tglb: NOTRUN -> [FAIL][109] ([i915#132] / [i915#3467]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: NOTRUN -> [SKIP][110] ([fdo#109441]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb6/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][111] -> [SKIP][112] ([fdo#109441]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [PASS][113] -> [SKIP][114] ([i915#5519]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-iclb: NOTRUN -> [SKIP][115] ([i915#5289]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][116] ([fdo#109271]) +139 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb4/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-check-output: - shard-iclb: NOTRUN -> [SKIP][117] ([i915#2437]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@kms_writeback@writeback-check-output.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-10: - shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2994]) +2 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk2/igt@sysfs_clients@sema-10.html - shard-iclb: NOTRUN -> [SKIP][120] ([i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb3/igt@sysfs_clients@sema-10.html - shard-tglb: NOTRUN -> [SKIP][121] ([i915#2994]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb3/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@fbdev@read: - {shard-rkl}: [SKIP][122] ([i915#2582]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@fbdev@read.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@fbdev@read.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][124] ([i915#6268]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_ctx_exec@basic-nohangcheck.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@many-contexts: - {shard-rkl}: [FAIL][126] ([i915#2410]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][128] ([fdo#103375]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][130] ([i915#4525]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@gem_exec_balancer@parallel-keep-submit-fence.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][132] ([i915#2842]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][134] ([i915#2842]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][136] ([i915#2842]) -> [PASS][137] +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - {shard-rkl}: [SKIP][138] ([i915#3281]) -> [PASS][139] +5 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][140] ([i915#7276]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][142] ([fdo#111656]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@gem_mmap_gtt@coherency.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][144] ([i915#3282]) -> [PASS][145] +5 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [FAIL][146] ([i915#4171]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb8/igt@gem_softpin@evict-single-offset.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb7/igt@gem_softpin@evict-single-offset.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][148] ([i915#180] / [i915#1982]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl6/igt@gem_workarounds@suspend-resume-context.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl7/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@secure-batches: - {shard-rkl}: [SKIP][150] ([i915#2527]) -> [PASS][151] +3 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - {shard-rkl}: [SKIP][152] ([i915#4098]) -> [PASS][153] +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][154] ([i915#3989] / [i915#454]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb5/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_sseu@full-enable: - {shard-rkl}: [SKIP][156] ([i915#4387]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@i915_pm_sseu@full-enable.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][158] ([i915#5334]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [SKIP][160] ([fdo#109271]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-snb7/igt@i915_selftest@perf@engine_cs.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-snb6/igt@i915_selftest@perf@engine_cs.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - {shard-rkl}: [SKIP][162] ([i915#1845] / [i915#4098]) -> [PASS][163] +13 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [FAIL][164] ([i915#79]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-tglb: [DMESG-WARN][166] ([i915#2411] / [i915#2867]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - {shard-rkl}: [SKIP][168] ([i915#1849] / [i915#4098]) -> [PASS][169] +11 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-rkl}: [SKIP][170] ([i915#3558]) -> [PASS][171] +1 similar issue [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][172] ([i915#5235]) -> [PASS][173] +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_properties@crtc-properties-atomic: - {shard-rkl}: [SKIP][174] ([i915#1849]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][176] ([fdo#109441]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr@sprite_blt: - {shard-rkl}: [SKIP][178] ([i915#1072]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-rkl-4/igt@kms_psr@sprite_blt.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-rkl-6/igt@kms_psr@sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][180] ([i915#5519]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [DMESG-WARN][182] ([i915#180]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@sysfs_heartbeat_interval@precise@rcs0: - {shard-dg1}: [FAIL][184] ([i915#1755]) -> [PASS][185] +4 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@rcs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-apl: [INCOMPLETE][186] ([i915#7248]) -> [WARN][187] ([i915#2658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl3/igt@gem_pread@exhaustion.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl6/igt@gem_pread@exhaustion.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-iclb: [WARN][188] ([i915#2684]) -> [FAIL][189] ([i915#2684]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-iclb: [FAIL][190] ([i915#2684]) -> [WARN][191] ([i915#2684]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-tglb: [SKIP][192] ([i915#7118]) -> [SKIP][193] ([fdo#109300]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-tglb1/igt@kms_content_protection@mei_interface.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-tglb8/igt@kms_content_protection@mei_interface.html - shard-iclb: [SKIP][194] ([i915#7118]) -> [SKIP][195] ([fdo#109300]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb1/igt@kms_content_protection@mei_interface.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb1/igt@kms_content_protection@mei_interface.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][196] ([i915#4573]) -> [DMESG-FAIL][197] ([IGT#6]) +1 similar issue [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][198] ([i915#2920]) -> [SKIP][199] ([fdo#111068] / [i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7059/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6470]: https://gitlab.freedesktop.org/drm/intel/issues/6470 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7397]: https://gitlab.freedesktop.org/drm/intel/issues/7397 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7059 -> IGTPW_8109 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8109: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html IGT_7059: 89c5c56dfde602d54eefa301e9887eff8bcda0e8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8109/index.html [-- Attachment #2: Type: text/html, Size: 59346 bytes --] ^ permalink raw reply [flat|nested] 23+ messages in thread
end of thread, other threads:[~2022-11-17 2:12 UTC | newest] Thread overview: 23+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-07 17:18 [igt-dev] [PATCH] [NEW] Chamelium: Add new EDID Resolution List test Mark Yacoub 2022-11-07 18:25 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-07 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-08 17:50 ` Mark Yacoub 2022-11-09 7:53 ` Vudum, Lakshminarayana 2022-11-09 6:06 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2022-11-10 8:34 ` [igt-dev] [PATCH] [NEW] " Petri Latvala 2022-11-10 14:56 ` Kamil Konieczny 2022-11-10 17:41 ` [igt-dev] [PATCH v2] " Mark Yacoub 2022-11-15 17:52 ` [igt-dev] [PATCH v3] " Mark Yacoub 2022-11-16 9:41 ` Petri Latvala 2022-11-10 18:24 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev2) Patchwork 2022-11-10 21:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-11 16:02 ` Mark Yacoub 2022-11-13 13:36 ` Vudum, Lakshminarayana 2022-11-12 23:50 ` Patchwork 2022-11-13 0:09 ` Patchwork 2022-11-13 0:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2022-11-15 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Chamelium: Add new EDID Resolution List test (rev3) Patchwork 2022-11-16 3:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-16 15:05 ` Mark Yacoub 2022-11-17 2:12 ` Vudum, Lakshminarayana 2022-11-16 23:22 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox