* [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A
@ 2021-05-13 9:07 Karthik B S
2021-05-13 10:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Karthik B S @ 2021-05-13 9:07 UTC (permalink / raw)
To: igt-dev
DSC is not supported on Pipe A for external DP on Gen11 platforms.
But as this check is within update_display(), we still call test_cleanup().
This bug is seen here as the pipe wasn't set properly for this output.
To fix this, moving the check outside update_display() so that we do not
call test_cleanup if we didn't even run the test.
Also, moved the fb creation and removal outside the loop for_each_pipe(),
since it seems redundant within the loop.
Fixes: https://gitlab.freedesktop.org/drm/intel/-/issues/3466
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_dp_dsc.c | 31 ++++++++++++++++++-------------
1 file changed, 18 insertions(+), 13 deletions(-)
diff --git a/tests/kms_dp_dsc.c b/tests/kms_dp_dsc.c
index 60ed3855..2446fd82 100644
--- a/tests/kms_dp_dsc.c
+++ b/tests/kms_dp_dsc.c
@@ -168,7 +168,6 @@ static void test_cleanup(data_t *data)
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
igt_display_commit(&data->display);
- igt_remove_fb(data->drm_fd, &data->fb_test_pattern);
}
}
@@ -185,15 +184,8 @@ static void kms_dp_dsc_exit_handler(int sig)
static void update_display(data_t *data, enum dsc_test_type test_type)
{
igt_plane_t *primary;
- data->mode = igt_output_get_mode(data->output);
data->connector = data->output->config.connector;
- if (data->connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort &&
- data->pipe == PIPE_A) {
- igt_debug("DSC not supported on Pipe A on external DP\n");
- return;
- }
-
/* Disable the output first */
igt_output_set_pipe(data->output, PIPE_NONE);
igt_display_commit(&data->display);
@@ -206,11 +198,6 @@ static void update_display(data_t *data, enum dsc_test_type test_type)
force_dp_dsc_enable(data);
igt_output_set_pipe(data->output, data->pipe);
- igt_create_pattern_fb(data->drm_fd, data->mode->hdisplay,
- data->mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- LOCAL_DRM_FORMAT_MOD_NONE,
- &data->fb_test_pattern);
primary = igt_output_get_plane_type(data->output,
DRM_PLANE_TYPE_PRIMARY);
@@ -241,7 +228,23 @@ static void run_test(data_t *data, igt_output_t *output,
{
enum pipe pipe;
+ data->mode = igt_output_get_mode(data->output);
+ igt_create_pattern_fb(data->drm_fd, data->mode->hdisplay,
+ data->mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ LOCAL_DRM_FORMAT_MOD_NONE,
+ &data->fb_test_pattern);
+
for_each_pipe(&data->display, pipe) {
+ if (is_i915_device(data->drm_fd)) {
+ uint32_t devid = intel_get_drm_devid(data->drm_fd);
+
+ if (data->connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort &&
+ data->pipe == PIPE_A && IS_GEN11(devid)) {
+ igt_debug("DSC not supported on Pipe A on external DP in Gen11 platforms\n");
+ continue;
+ }
+ }
if (igt_pipe_connector_valid(pipe, output)) {
data->pipe = pipe;
@@ -250,6 +253,8 @@ static void run_test(data_t *data, igt_output_t *output,
test_cleanup(data);
}
}
+
+ igt_remove_fb(data->drm_fd, &data->fb_test_pattern);
}
igt_main
--
2.22.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 8+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S @ 2021-05-13 10:28 ` Patchwork 2021-05-13 14:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2021-05-13 10:28 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 11307 bytes --] == Series Details == Series: tests/kms_dp_dsc: Bug fix for DP on Pipe A URL : https://patchwork.freedesktop.org/series/90121/ State : success == Summary == CI Bug Log - changes from CI_DRM_10074 -> IGTPW_5810 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5810: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@runner@aborted: - {fi-rkl-11500t}: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-rkl-11500t/igt@runner@aborted.html Known issues ------------ Here are the changes found in IGTPW_5810 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fence@basic-await@bcs0: - fi-bsw-kefka: [PASS][2] -> [FAIL][3] ([i915#3457]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-kefka/igt@gem_exec_fence@basic-await@bcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-kefka/igt@gem_exec_fence@basic-await@bcs0.html * igt@gem_exec_fence@basic-await@vecs0: - fi-bxt-dsi: [PASS][4] -> [FAIL][5] ([i915#3457]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bxt-dsi/igt@gem_exec_fence@basic-await@vecs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bxt-dsi/igt@gem_exec_fence@basic-await@vecs0.html - fi-glk-dsi: [PASS][6] -> [FAIL][7] ([i915#3457]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-glk-dsi/igt@gem_exec_fence@basic-await@vecs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-glk-dsi/igt@gem_exec_fence@basic-await@vecs0.html * igt@gem_wait@busy@all: - fi-bwr-2160: [PASS][8] -> [FAIL][9] ([i915#3457]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bwr-2160/igt@gem_wait@busy@all.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bwr-2160/igt@gem_wait@busy@all.html * igt@kms_busy@basic@modeset: - fi-ilk-650: [PASS][10] -> [INCOMPLETE][11] ([i915#3457]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-ilk-650/igt@kms_busy@basic@modeset.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-ilk-650/igt@kms_busy@basic@modeset.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence: - fi-bsw-kefka: [PASS][12] -> [FAIL][13] ([i915#53]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-kefka/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-kefka/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-pipe-a: - fi-elk-e7500: [PASS][14] -> [FAIL][15] ([i915#53]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-elk-e7500/igt@kms_pipe_crc_basic@read-crc-pipe-a.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-elk-e7500/igt@kms_pipe_crc_basic@read-crc-pipe-a.html #### Possible fixes #### * igt@gem_exec_fence@basic-await@vcs0: - fi-bsw-kefka: [FAIL][16] ([i915#3457]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-kefka/igt@gem_exec_fence@basic-await@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-kefka/igt@gem_exec_fence@basic-await@vcs0.html * igt@gem_exec_fence@nb-await@vcs0: - fi-bsw-nick: [FAIL][18] ([i915#3457]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-nick/igt@gem_exec_fence@nb-await@vcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-nick/igt@gem_exec_fence@nb-await@vcs0.html * igt@gem_wait@wait@all: - fi-pnv-d510: [FAIL][20] ([i915#3457]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-pnv-d510/igt@gem_wait@wait@all.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-pnv-d510/igt@gem_wait@wait@all.html - fi-elk-e7500: [FAIL][22] ([i915#3457]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-elk-e7500/igt@gem_wait@wait@all.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-elk-e7500/igt@gem_wait@wait@all.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-elk-e7500: [FAIL][24] ([i915#53]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-elk-e7500/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-elk-e7500/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence: - fi-ilk-650: [FAIL][26] ([i915#53]) -> [PASS][27] +7 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-ilk-650/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-ilk-650/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-bwr-2160: [FAIL][28] ([i915#53]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bwr-2160/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bwr-2160/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html #### Warnings #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][30] ([i915#3457]) -> [FAIL][31] ([i915#3457] / [i915#3472]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-pnv-d510/igt@gem_exec_gttfill@basic.html - fi-ilk-650: [FAIL][32] ([i915#3457]) -> [FAIL][33] ([i915#3472]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-ilk-650/igt@gem_exec_gttfill@basic.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-ilk-650/igt@gem_exec_gttfill@basic.html * igt@i915_module_load@reload: - fi-elk-e7500: [DMESG-WARN][34] ([i915#3457]) -> [DMESG-FAIL][35] ([i915#3457]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-elk-e7500/igt@i915_module_load@reload.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-elk-e7500/igt@i915_module_load@reload.html - fi-bsw-kefka: [DMESG-WARN][36] ([i915#1982] / [i915#3457]) -> [DMESG-FAIL][37] ([i915#1982] / [i915#3457]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-kefka/igt@i915_module_load@reload.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-kefka/igt@i915_module_load@reload.html - fi-bsw-nick: [DMESG-FAIL][38] ([i915#3457]) -> [DMESG-WARN][39] ([i915#3457]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-bsw-nick/igt@i915_module_load@reload.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-bsw-nick/igt@i915_module_load@reload.html * igt@i915_selftest@live@execlists: - fi-tgl-u2: [INCOMPLETE][40] ([i915#3462]) -> [DMESG-FAIL][41] ([i915#3462]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-tgl-u2/igt@i915_selftest@live@execlists.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-tgl-u2/igt@i915_selftest@live@execlists.html * igt@runner@aborted: - fi-skl-6600u: [FAIL][42] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][43] ([i915#1436] / [i915#3363]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-skl-6600u/igt@runner@aborted.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-skl-6600u/igt@runner@aborted.html - fi-glk-dsi: [FAIL][44] ([i915#2426] / [i915#3363] / [k.org#202321]) -> [FAIL][45] ([i915#3363] / [k.org#202321]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-glk-dsi/igt@runner@aborted.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-glk-dsi/igt@runner@aborted.html - fi-cml-u2: [FAIL][46] ([i915#2082] / [i915#2426] / [i915#3363]) -> [FAIL][47] ([i915#3363]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-cml-u2/igt@runner@aborted.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-cml-u2/igt@runner@aborted.html - fi-cml-s: [FAIL][48] ([i915#3363]) -> [FAIL][49] ([i915#2082] / [i915#2426] / [i915#3363]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/fi-cml-s/igt@runner@aborted.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/fi-cml-s/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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2082]: https://gitlab.freedesktop.org/drm/intel/issues/2082 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2932]: https://gitlab.freedesktop.org/drm/intel/issues/2932 [i915#2966]: https://gitlab.freedesktop.org/drm/intel/issues/2966 [i915#3276]: https://gitlab.freedesktop.org/drm/intel/issues/3276 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3457]: https://gitlab.freedesktop.org/drm/intel/issues/3457 [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462 [i915#3468]: https://gitlab.freedesktop.org/drm/intel/issues/3468 [i915#3472]: https://gitlab.freedesktop.org/drm/intel/issues/3472 [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (43 -> 33) ------------------------------ Additional (1): fi-rkl-11500t Missing (11): fi-kbl-7567u fi-ilk-m540 fi-bsw-n3050 fi-hsw-4200u fi-tgl-1115g4 fi-icl-u2 fi-bsw-cyan fi-kbl-7500u fi-dg1-1 fi-bdw-samus fi-kbl-r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6083 -> IGTPW_5810 CI-20190529: 20190529 CI_DRM_10074: 5aefdc1f23734b6a3d545c8497b098ba4d704a0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5810: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html IGT_6083: d28aee5c5f528aa6c352c3339f20aaed4d698ffa @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html [-- Attachment #1.2: Type: text/html, Size: 14158 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S 2021-05-13 10:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2021-05-13 14:48 ` Patchwork 2021-05-17 4:22 ` Karthik B S 2021-05-13 19:05 ` [igt-dev] [PATCH i-g-t] " Navare, Manasi ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2021-05-13 14:48 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30260 bytes --] == Series Details == Series: tests/kms_dp_dsc: Bug fix for DP on Pipe A URL : https://patchwork.freedesktop.org/series/90121/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10074_full -> IGTPW_5810_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5810_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5810_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_5810/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5810_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_gtt@fault-concurrent-x: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-tglb: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html * igt@kms_plane_cursor@pipe-a-overlay-size-64: - shard-snb: NOTRUN -> [FAIL][5] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb7/igt@kms_plane_cursor@pipe-a-overlay-size-64.html * igt@kms_plane_cursor@pipe-c-viewport-size-128: - shard-tglb: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_plane_cursor@pipe-c-viewport-size-128.html New tests --------- New tests have been introduced between CI_DRM_10074_full and IGTPW_5810_full: ### New IGT tests (2) ### * igt@kms_plane@plane-panning-top-left@pipe-a-planes: - Statuses : 5 pass(s) - Exec time: [0.34, 1.42] s * igt@kms_plane@plane-panning-top-left@pipe-b-planes: - Statuses : 5 pass(s) - Exec time: [0.38, 2.50] s Known issues ------------ Here are the changes found in IGTPW_5810_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@execbuf-with-allocator: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#3457]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@api_intel_allocator@execbuf-with-allocator.html - shard-glk: NOTRUN -> [DMESG-FAIL][8] ([i915#3457]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@api_intel_allocator@execbuf-with-allocator.html * igt@api_intel_bb@intel-bb-blit-y: - shard-apl: [PASS][9] -> [FAIL][10] ([i915#3471]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@api_intel_bb@intel-bb-blit-y.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@api_intel_bb@intel-bb-blit-y.html * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][11] ([i915#3002]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_create@create-massive.html - shard-tglb: NOTRUN -> [DMESG-WARN][12] ([i915#3002]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: NOTRUN -> [DMESG-WARN][13] ([i915#180] / [i915#3457]) +4 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl2/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][15] -> [TIMEOUT][16] ([i915#2369] / [i915#3063] / [i915#3457]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb5/igt@gem_eio@unwedge-stress.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_eio@unwedge-stress.html - shard-apl: NOTRUN -> [FAIL][17] ([i915#3457]) +7 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@gem_eio@unwedge-stress.html - shard-iclb: [PASS][18] -> [TIMEOUT][19] ([i915#2369] / [i915#2481] / [i915#3070] / [i915#3457]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb2/igt@gem_eio@unwedge-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [PASS][20] -> [FAIL][21] ([i915#2842] / [i915#3457]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][22] ([i915#2842] / [i915#3457]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-iclb: NOTRUN -> [FAIL][23] ([i915#2842] / [i915#3457]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][24] ([i915#2842] / [i915#3457]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-glk: [PASS][25] -> [FAIL][26] ([i915#3457]) +29 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@gem_exec_fence@parallel@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][27] ([fdo#112283]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-wide-active@bcs0: - shard-tglb: NOTRUN -> [FAIL][28] ([i915#2389] / [i915#3457]) +4 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_exec_reloc@basic-wide-active@bcs0.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][29] ([i915#2389] / [i915#3457]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: NOTRUN -> [DMESG-WARN][30] ([i915#118] / [i915#95]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-glk: [PASS][31] -> [INCOMPLETE][32] ([i915#3468]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-snb: NOTRUN -> [INCOMPLETE][33] ([i915#3468]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html - shard-apl: [PASS][34] -> [INCOMPLETE][35] ([i915#3468]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-iclb: [PASS][36] -> [INCOMPLETE][37] ([i915#3468]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-iclb: NOTRUN -> [INCOMPLETE][38] ([i915#3468]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_gtt@fault-concurrent-x.html - shard-tglb: NOTRUN -> [INCOMPLETE][39] ([i915#3468]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-glk: [PASS][40] -> [INCOMPLETE][41] ([i915#2502]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk7/igt@gem_mmap_gtt@medium-copy-xy.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear: - shard-iclb: [PASS][42] -> [FAIL][43] ([i915#3160]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb7/igt@gem_mmap_offset@clear.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_offset@clear.html * igt@gem_pwrite@basic-exhaustion: - shard-iclb: NOTRUN -> [WARN][44] ([i915#2658]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][45] ([i915#2658]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][46] ([i915#2658]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-apl: NOTRUN -> [INCOMPLETE][47] ([i915#3468]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109312]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_softpin@evict-snoop-interruptible.html - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109312]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3323]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-glk: NOTRUN -> [DMESG-WARN][51] ([i915#3002]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#3297]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-iclb: NOTRUN -> [SKIP][53] ([i915#3297]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109289]) +6 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@load-register-reg: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109289]) +4 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-large: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#2527]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gen9_exec_parse@bb-large.html - shard-apl: NOTRUN -> [FAIL][57] ([i915#3296]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#112306]) +4 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#112306]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gen9_exec_parse@secure-batches.html * igt@i915_hangman@engine-error@bcs0: - shard-tglb: NOTRUN -> [DMESG-WARN][60] ([i915#3457]) +9 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb3/igt@i915_hangman@engine-error@bcs0.html * igt@i915_hangman@engine-error@vcs0: - shard-iclb: NOTRUN -> [DMESG-WARN][61] ([i915#3457]) +7 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_hangman@engine-error@vcs0.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][62] ([fdo#109271]) +207 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][63] ([i915#454]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#1937]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#1937]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-apl: NOTRUN -> [DMESG-WARN][66] ([i915#3457]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@cursor: - shard-glk: NOTRUN -> [DMESG-WARN][67] ([i915#3457]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk2/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@cursor-dpms: - shard-apl: [PASS][68] -> [DMESG-WARN][69] ([i915#3457]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl6/igt@i915_pm_rpm@cursor-dpms.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#111644] / [i915#1397] / [i915#2411]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#110892]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109293] / [fdo#109506]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109506] / [i915#2411]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_selftest@live@execlists: - shard-tglb: NOTRUN -> [INCOMPLETE][74] ([i915#3462]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_lrc: - shard-tglb: NOTRUN -> [DMESG-FAIL][75] ([i915#2373]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - shard-tglb: NOTRUN -> [DMESG-FAIL][76] ([i915#1759] / [i915#2291]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][77] ([i915#2782]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - shard-snb: NOTRUN -> [DMESG-WARN][78] ([i915#3457]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@mman.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#111614]) +6 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#110725] / [fdo#111614]) +3 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][81] ([fdo#110723]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#111615]) +5 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic: - shard-glk: [PASS][83] -> [FAIL][84] ([fdo#108145]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html * igt@kms_ccs@pipe-d-bad-rotation-90: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109278]) +16 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_ccs@pipe-d-bad-rotation-90.html * igt@kms_chamelium@hdmi-edid-read: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +20 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109284] / [fdo#111827]) +14 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-enable-disable-mode: - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [fdo#111827]) +12 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][89] ([fdo#109271] / [fdo#111827]) +22 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-a-degamma: - shard-iclb: NOTRUN -> [FAIL][90] ([i915#1149]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_color@pipe-a-degamma.html * igt@kms_color@pipe-a-gamma: - shard-glk: NOTRUN -> [FAIL][91] ([i915#71]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_color@pipe-a-gamma.html * igt@kms_color@pipe-b-degamma: - shard-tglb: NOTRUN -> [FAIL][92] ([i915#1149]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_color@pipe-b-degamma.html * igt@kms_color@pipe-c-gamma: - shard-glk: [PASS][93] -> [FAIL][94] ([i915#71]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk3/igt@kms_color@pipe-c-gamma.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_color@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [fdo#111827]) +10 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-snb: NOTRUN -> [SKIP][96] ([fdo#109271] / [fdo#111827]) +17 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][97] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_color_chamelium@pipe-d-gamma.html * igt@kms_content_protection@atomic: - shard-kbl: NOTRUN -> [TIMEOUT][98] ([i915#1319]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109300] / [fdo#111066]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][100] ([fdo#111828]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: - shard-glk: [PASS][101] -> [FAIL][102] ([i915#3444] / [i915#3457]) +9 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: - shard-tglb: [PASS][103] -> [FAIL][104] ([i915#2124] / [i915#3457]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-snb: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3457]) +30 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][106] ([i915#3319] / [i915#3457]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding: - shard-snb: NOTRUN -> [FAIL][107] ([i915#3457]) +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-random: - shard-glk: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#3457]) +16 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109278] / [fdo#109279] / [i915#3457]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: - shard-apl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#3457]) +10 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: - shard-kbl: NOTRUN -> [FAIL][111] ([i915#3444] / [i915#3457]) +14 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html - shard-iclb: NOTRUN -> [FAIL][112] ([i915#3457]) +11 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: - shard-kbl: [PASS][113] -> [FAIL][114] ([i915#3444] / [i915#3457]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-c-cursor-256x256-random: - shard-apl: [PASS][115] -> [FAIL][116] ([i915#3444] / [i915#3457]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][117] ([i915#3359] / [i915#3457]) +5 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-size-change: - shard-glk: NOTRUN -> [FAIL][118] ([i915#3444] / [i915#3457]) +10 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-size-change.html - shard-apl: NOTRUN -> [FAIL][119] ([i915#3444] / [i915#3457]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-size-change.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-FAIL][120] ([i915#180] / [i915#3457]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][121] ([fdo#109278] / [i915#3457]) +16 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][122] ([fdo#109279] / [i915#3359] / [i915#3457]) +5 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque: - shard-tglb: NOTRUN -> [FAIL][123] ([i915#2124] / [i915#3457]) +20 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-d-cursor-suspend: - shard-kbl: NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#3457]) +33 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-suspend.html - shard-tglb: NOTRUN -> [FAIL][125] ([i915#2124] / [i915#2411] / [i915#3457]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: - shard-glk: [PASS][126] -> [FAIL][127] ([i915#70]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][128] ([fdo#109274] / [fdo#109278]) +5 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][129] ([i915#155] / [i915#180] / [i915#636]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-iclb: NOTRUN -> [SKIP][130] ([fdo#109274]) +9 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglb: NOTRUN -> [SKIP][131] ([fdo#111825]) +73 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html [-- Attachment #1.2: Type: text/html, Size: 33958 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 14:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-05-17 4:22 ` Karthik B S 2021-05-17 15:22 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 8+ messages in thread From: Karthik B S @ 2021-05-17 4:22 UTC (permalink / raw) To: igt-dev, Vudum, Lakshminarayana [-- Attachment #1.1: Type: text/plain, Size: 32223 bytes --] Hi Lakshmi, This failure is not related to the patch. Could you please take a look. Thanks, Karthik.B.S On 5/13/2021 8:18 PM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/kms_dp_dsc: Bug fix for DP on Pipe A > *URL:* https://patchwork.freedesktop.org/series/90121/ > <https://patchwork.freedesktop.org/series/90121/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html> > > > CI Bug Log - changes from CI_DRM_10074_full -> IGTPW_5810_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5810_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5810_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_5810/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5810_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_mmap_gtt@fault-concurrent-x: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@gem_mmap_gtt@fault-concurrent-x.html> > * > > igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: > > o shard-tglb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html> > * > > igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html> > * > > igt@kms_plane_cursor@pipe-a-overlay-size-64: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb7/igt@kms_plane_cursor@pipe-a-overlay-size-64.html> > +1 similar issue > * > > igt@kms_plane_cursor@pipe-c-viewport-size-128: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_plane_cursor@pipe-c-viewport-size-128.html> > > > New tests > > New tests have been introduced between CI_DRM_10074_full and > IGTPW_5810_full: > > > New IGT tests (2) > > * > > igt@kms_plane@plane-panning-top-left@pipe-a-planes: > > o Statuses : 5 pass(s) > o Exec time: [0.34, 1.42] s > * > > igt@kms_plane@plane-panning-top-left@pipe-b-planes: > > o Statuses : 5 pass(s) > o Exec time: [0.38, 2.50] s > > > Known issues > > Here are the changes found in IGTPW_5810_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_allocator@execbuf-with-allocator: > > o > > shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@api_intel_allocator@execbuf-with-allocator.html> > ([i915#3457]) +4 similar issues > > o > > shard-glk: NOTRUN -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@api_intel_allocator@execbuf-with-allocator.html> > ([i915#3457]) +1 similar issue > > * > > igt@api_intel_bb@intel-bb-blit-y: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@api_intel_bb@intel-bb-blit-y.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@api_intel_bb@intel-bb-blit-y.html> > ([i915#3471]) > * > > igt@gem_create@create-massive: > > o > > shard-iclb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_create@create-massive.html> > ([i915#3002]) +1 similar issue > > o > > shard-tglb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@gem_create@create-massive.html> > ([i915#3002]) > > * > > igt@gem_ctx_isolation@preservation-s3@vcs0: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl2/igt@gem_ctx_isolation@preservation-s3@vcs0.html> > ([i915#180] / [i915#3457]) +4 similar issues > * > > igt@gem_ctx_persistence@legacy-engines-queued: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html> > ([fdo#109271] / [i915#1099]) +2 similar issues > * > > igt@gem_eio@unwedge-stress: > > o > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb5/igt@gem_eio@unwedge-stress.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_eio@unwedge-stress.html> > ([i915#2369] / [i915#3063] / [i915#3457]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@gem_eio@unwedge-stress.html> > ([i915#3457]) +7 similar issues > > o > > shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb2/igt@gem_eio@unwedge-stress.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_eio@unwedge-stress.html> > ([i915#2369] / [i915#2481] / [i915#3070] / [i915#3457]) > > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842] / [i915#3457]) > * > > igt@gem_exec_fair@basic-none-vip@rcs0: > > o > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-vip@rcs0.html> > ([i915#2842] / [i915#3457]) > > o > > shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> > ([i915#2842] / [i915#3457]) > > o > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html> > ([i915#2842] / [i915#3457]) > > * > > igt@gem_exec_fence@parallel@vcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@gem_exec_fence@parallel@vcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_exec_fence@parallel@vcs0.html> > ([i915#3457]) +29 similar issues > * > > igt@gem_exec_params@secure-non-root: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_exec_params@secure-non-root.html> > ([fdo#112283]) +1 similar issue > * > > igt@gem_exec_reloc@basic-wide-active@bcs0: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_exec_reloc@basic-wide-active@bcs0.html> > ([i915#2389] / [i915#3457]) +4 similar issues > * > > igt@gem_exec_reloc@basic-wide-active@rcs0: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> > ([i915#2389] / [i915#3457]) +2 similar issues > * > > igt@gem_exec_whisper@basic-fds-forked-all: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html> > ([i915#118] / [i915#95]) > * > > igt@gem_mmap_gtt@cpuset-basic-small-copy: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html> > ([i915#3468]) +1 similar issue > * > > igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: > > o > > shard-snb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > ([i915#3468]) +2 similar issues > > o > > shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > ([i915#3468]) > > * > > igt@gem_mmap_gtt@cpuset-medium-copy-xy: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> > ([i915#3468]) > * > > igt@gem_mmap_gtt@fault-concurrent-x: > > o > > shard-iclb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_gtt@fault-concurrent-x.html> > ([i915#3468]) > > o > > shard-tglb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_mmap_gtt@fault-concurrent-x.html> > ([i915#3468]) > > * > > igt@gem_mmap_gtt@medium-copy-xy: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk7/igt@gem_mmap_gtt@medium-copy-xy.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@gem_mmap_gtt@medium-copy-xy.html> > ([i915#2502]) > * > > igt@gem_mmap_offset@clear: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb7/igt@gem_mmap_offset@clear.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_offset@clear.html> > ([i915#3160]) > * > > igt@gem_pwrite@basic-exhaustion: > > o > > shard-iclb: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-tglb: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-glk: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > * > > igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: > > o shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html> > ([i915#3468]) +4 similar issues > * > > igt@gem_softpin@evict-snoop-interruptible: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_softpin@evict-snoop-interruptible.html> > ([fdo#109312]) +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html> > ([fdo#109312]) > > * > > igt@gem_userptr_blits@dmabuf-sync: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@gem_userptr_blits@dmabuf-sync.html> > ([fdo#109271] / [i915#3323]) > * > > igt@gem_userptr_blits@input-checking: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_userptr_blits@input-checking.html> > ([i915#3002]) +1 similar issue > * > > igt@gem_userptr_blits@unsync-unmap-cycles: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html> > ([i915#3297]) +2 similar issues > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html> > ([i915#3297]) +3 similar issues > > * > > igt@gen3_render_mixed_blits: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gen3_render_mixed_blits.html> > ([fdo#109289]) +6 similar issues > * > > igt@gen7_exec_parse@load-register-reg: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gen7_exec_parse@load-register-reg.html> > ([fdo#109289]) +4 similar issues > * > > igt@gen9_exec_parse@bb-large: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gen9_exec_parse@bb-large.html> > ([i915#2527]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@gen9_exec_parse@bb-large.html> > ([i915#3296]) > > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gen9_exec_parse@bb-start-param.html> > ([fdo#112306]) +4 similar issues > * > > igt@gen9_exec_parse@secure-batches: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gen9_exec_parse@secure-batches.html> > ([fdo#112306]) +3 similar issues > * > > igt@i915_hangman@engine-error@bcs0: > > o shard-tglb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb3/igt@i915_hangman@engine-error@bcs0.html> > ([i915#3457]) +9 similar issues > * > > igt@i915_hangman@engine-error@vcs0: > > o shard-iclb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_hangman@engine-error@vcs0.html> > ([i915#3457]) +7 similar issues > * > > igt@i915_hangman@engine-error@vecs0: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html> > ([fdo#109271]) +207 similar issues > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> > ([fdo#109271] / [i915#1937]) > * > > igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> > ([fdo#109271] / [i915#1937]) > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-apl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rc6_residency@rc6-fence.html> > ([i915#3457]) > * > > igt@i915_pm_rpm@cursor: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk2/igt@i915_pm_rpm@cursor.html> > ([i915#3457]) +1 similar issue > * > > igt@i915_pm_rpm@cursor-dpms: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl6/igt@i915_pm_rpm@cursor-dpms.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rpm@cursor-dpms.html> > ([i915#3457]) > * > > igt@i915_pm_rpm@dpms-non-lpsp: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@i915_pm_rpm@dpms-non-lpsp.html> > ([fdo#111644] / [i915#1397] / [i915#2411]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html> > ([fdo#110892]) > > * > > igt@i915_pm_rpm@gem-execbuf-stress-pc8: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> > ([fdo#109293] / [fdo#109506]) +1 similar issue > * > > igt@i915_pm_rpm@modeset-pc8-residency-stress: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> > ([fdo#109506] / [i915#2411]) +1 similar issue > * > > igt@i915_selftest@live@execlists: > > o shard-tglb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@execlists.html> > ([i915#3462]) > * > > igt@i915_selftest@live@gt_lrc: > > o shard-tglb: NOTRUN -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_lrc.html> > ([i915#2373]) > * > > igt@i915_selftest@live@gt_pm: > > o shard-tglb: NOTRUN -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_pm.html> > ([i915#1759] / [i915#2291]) > * > > igt@i915_selftest@live@hangcheck: > > o shard-snb: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@hangcheck.html> > ([i915#2782]) > * > > igt@i915_selftest@live@mman: > > o shard-snb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@mman.html> > ([i915#3457]) > * > > igt@kms_big_fb@linear-8bpp-rotate-270: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html> > ([fdo#111614]) +6 similar issues > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-270: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> > ([fdo#110725] / [fdo#111614]) +3 similar issues > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-270: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> > ([fdo#110723]) > * > > igt@kms_big_fb@yf-tiled-addfb-size-overflow: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> > ([fdo#111615]) +5 similar issues > * > > igt@kms_ccs@pipe-b-crc-sprite-planes-basic: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html> > ([fdo#108145]) > * > > igt@kms_ccs@pipe-d-bad-rotation-90: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_ccs@pipe-d-bad-rotation-90.html> > ([fdo#109278]) +16 similar issues > * > > igt@kms_chamelium@hdmi-edid-read: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html> > ([fdo#109284] / [fdo#111827]) +20 similar issues > * > > igt@kms_chamelium@hdmi-hpd-enable-disable-mode: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html> > ([fdo#109284] / [fdo#111827]) +14 similar issues > * > > igt@kms_chamelium@vga-hpd-enable-disable-mode: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html> > ([fdo#109271] / [fdo#111827]) +12 similar issues > * > > igt@kms_chamelium@vga-hpd-for-each-pipe: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html> > ([fdo#109271] / [fdo#111827]) +22 similar issues > * > > igt@kms_color@pipe-a-degamma: > > o shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_color@pipe-a-degamma.html> > ([i915#1149]) +1 similar issue > * > > igt@kms_color@pipe-a-gamma: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_color@pipe-a-gamma.html> > ([i915#71]) > * > > igt@kms_color@pipe-b-degamma: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_color@pipe-b-degamma.html> > ([i915#1149]) +1 similar issue > * > > igt@kms_color@pipe-c-gamma: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk3/igt@kms_color@pipe-c-gamma.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_color@pipe-c-gamma.html> > ([i915#71]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-c-ctm-0-25: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +10 similar issues > * > > igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html> > ([fdo#109271] / [fdo#111827]) +17 similar issues > * > > igt@kms_color_chamelium@pipe-d-gamma: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_color_chamelium@pipe-d-gamma.html> > ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue > * > > igt@kms_content_protection@atomic: > > o shard-kbl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_content_protection@atomic.html> > ([i915#1319]) +2 similar issues > * > > igt@kms_content_protection@mei_interface: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_content_protection@mei_interface.html> > ([fdo#109300] / [fdo#111066]) +1 similar issue > * > > igt@kms_content_protection@srm: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_content_protection@srm.html> > ([fdo#111828]) +2 similar issues > * > > igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html> > ([i915#3444] / [i915#3457]) +9 similar issues > * > > igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html> > ([i915#2124] / [i915#3457]) > * > > igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> > ([fdo#109271] / [i915#3457]) +30 similar issues > * > > igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html> > ([i915#3319] / [i915#3457]) +4 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html> > ([i915#3457]) +2 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-32x32-random: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html> > ([fdo#109271] / [i915#3457]) +16 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html> > ([fdo#109278] / [fdo#109279] / [i915#3457]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html> > ([fdo#109271] / [i915#3457]) +10 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html> > ([i915#3444] / [i915#3457]) +14 similar issues > > o > > shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html> > ([i915#3457]) +11 similar issues > > * > > igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html> > ([i915#3444] / [i915#3457]) > * > > igt@kms_cursor_crc@pipe-c-cursor-256x256-random: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html> > ([i915#3444] / [i915#3457]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html> > ([i915#3359] / [i915#3457]) +5 similar issues > * > > igt@kms_cursor_crc@pipe-c-cursor-size-change: > > o > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-size-change.html> > ([i915#3444] / [i915#3457]) +10 similar issues > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-size-change.html> > ([i915#3444] / [i915#3457]) +1 similar issue > > * > > igt@kms_cursor_crc@pipe-c-cursor-suspend: > > o shard-kbl: NOTRUN -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html> > ([i915#180] / [i915#3457]) > * > > igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> > ([fdo#109278] / [i915#3457]) +16 similar issues > * > > igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html> > ([fdo#109279] / [i915#3359] / [i915#3457]) +5 similar issues > * > > igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque.html> > ([i915#2124] / [i915#3457]) +20 similar issues > * > > igt@kms_cursor_crc@pipe-d-cursor-suspend: > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-suspend.html> > ([fdo#109271] / [i915#3457]) +33 similar issues > > o > > shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html> > ([i915#2124] / [i915#2411] / [i915#3457]) > > * > > igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html> > ([i915#70]) +3 similar issues > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> > ([fdo#109274] / [fdo#109278]) +5 similar issues > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-kbl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html> > ([i915#155] / [i915#180] / [i915#636]) > * > > igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> > ([fdo#109274]) +9 similar issues > * > > igt@kms_flip@2x-plain-flip-ts-check: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html> > ([fdo#111825]) +73 similar issues > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile > [-- Attachment #1.2: Type: text/html, Size: 47447 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-17 4:22 ` Karthik B S @ 2021-05-17 15:22 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 8+ messages in thread From: Vudum, Lakshminarayana @ 2021-05-17 15:22 UTC (permalink / raw) To: B S, Karthik, igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 28735 bytes --] Re-reported. From: B S, Karthik <karthik.b.s@intel.com> Sent: Sunday, May 16, 2021 9:23 PM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for tests/kms_dp_dsc: Bug fix for DP on Pipe A Hi Lakshmi, This failure is not related to the patch. Could you please take a look. Thanks, Karthik.B.S On 5/13/2021 8:18 PM, Patchwork wrote: Patch Details Series: tests/kms_dp_dsc: Bug fix for DP on Pipe A URL: https://patchwork.freedesktop.org/series/90121/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html CI Bug Log - changes from CI_DRM_10074_full -> IGTPW_5810_full Summary FAILURE Serious unknown changes coming with IGTPW_5810_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5810_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_5810/index.html Possible new issues Here are the unknown changes that may have been introduced in IGTPW_5810_full: IGT changes Possible regressions * igt@gem_mmap_gtt@fault-concurrent-x: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@gem_mmap_gtt@fault-concurrent-x.html> * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: * shard-tglb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html> * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html> * igt@kms_plane_cursor@pipe-a-overlay-size-64: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb7/igt@kms_plane_cursor@pipe-a-overlay-size-64.html> +1 similar issue * igt@kms_plane_cursor@pipe-c-viewport-size-128: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_plane_cursor@pipe-c-viewport-size-128.html> New tests New tests have been introduced between CI_DRM_10074_full and IGTPW_5810_full: New IGT tests (2) * igt@kms_plane@plane-panning-top-left@pipe-a-planes: * Statuses : 5 pass(s) * Exec time: [0.34, 1.42] s * igt@kms_plane@plane-panning-top-left@pipe-b-planes: * Statuses : 5 pass(s) * Exec time: [0.38, 2.50] s Known issues Here are the changes found in IGTPW_5810_full that come from known issues: IGT changes Issues hit * igt@api_intel_allocator@execbuf-with-allocator: * shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@api_intel_allocator@execbuf-with-allocator.html> ([i915#3457]) +4 similar issues * shard-glk: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@api_intel_allocator@execbuf-with-allocator.html> ([i915#3457]) +1 similar issue * igt@api_intel_bb@intel-bb-blit-y: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@api_intel_bb@intel-bb-blit-y.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@api_intel_bb@intel-bb-blit-y.html> ([i915#3471]) * igt@gem_create@create-massive: * shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_create@create-massive.html> ([i915#3002]) +1 similar issue * shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@gem_create@create-massive.html> ([i915#3002]) * igt@gem_ctx_isolation@preservation-s3@vcs0: * shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl2/igt@gem_ctx_isolation@preservation-s3@vcs0.html> ([i915#180] / [i915#3457]) +4 similar issues * igt@gem_ctx_persistence@legacy-engines-queued: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html> ([fdo#109271] / [i915#1099]) +2 similar issues * igt@gem_eio@unwedge-stress: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb5/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_eio@unwedge-stress.html> ([i915#2369] / [i915#3063] / [i915#3457]) * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@gem_eio@unwedge-stress.html> ([i915#3457]) +7 similar issues * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_eio@unwedge-stress.html> ([i915#2369] / [i915#2481] / [i915#3070] / [i915#3457]) * igt@gem_exec_fair@basic-none-share@rcs0: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842] / [i915#3457]) * igt@gem_exec_fair@basic-none-vip@rcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842] / [i915#3457]) * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842] / [i915#3457]) * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842] / [i915#3457]) * igt@gem_exec_fence@parallel@vcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@gem_exec_fence@parallel@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_exec_fence@parallel@vcs0.html> ([i915#3457]) +29 similar issues * igt@gem_exec_params@secure-non-root: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_exec_params@secure-non-root.html> ([fdo#112283]) +1 similar issue * igt@gem_exec_reloc@basic-wide-active@bcs0: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_exec_reloc@basic-wide-active@bcs0.html> ([i915#2389] / [i915#3457]) +4 similar issues * igt@gem_exec_reloc@basic-wide-active@rcs0: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> ([i915#2389] / [i915#3457]) +2 similar issues * igt@gem_exec_whisper@basic-fds-forked-all: * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html> ([i915#118] / [i915#95]) * igt@gem_mmap_gtt@cpuset-basic-small-copy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html> ([i915#3468]) +1 similar issue * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: * shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> ([i915#3468]) +2 similar issues * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> ([i915#3468]) * igt@gem_mmap_gtt@cpuset-medium-copy-xy: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html> ([i915#3468]) * igt@gem_mmap_gtt@fault-concurrent-x: * shard-iclb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#3468]) * shard-tglb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#3468]) * igt@gem_mmap_gtt@medium-copy-xy: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk7/igt@gem_mmap_gtt@medium-copy-xy.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@gem_mmap_gtt@medium-copy-xy.html> ([i915#2502]) * igt@gem_mmap_offset@clear: * shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb7/igt@gem_mmap_offset@clear.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_offset@clear.html> ([i915#3160]) * igt@gem_pwrite@basic-exhaustion: * shard-iclb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658]) * shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658]) * shard-glk: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658]) * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: * shard-apl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html> ([i915#3468]) +4 similar issues * igt@gem_softpin@evict-snoop-interruptible: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_softpin@evict-snoop-interruptible.html> ([fdo#109312]) +1 similar issue * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html> ([fdo#109312]) * igt@gem_userptr_blits@dmabuf-sync: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@gem_userptr_blits@dmabuf-sync.html> ([fdo#109271] / [i915#3323]) * igt@gem_userptr_blits@input-checking: * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_userptr_blits@input-checking.html> ([i915#3002]) +1 similar issue * igt@gem_userptr_blits@unsync-unmap-cycles: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html> ([i915#3297]) +2 similar issues * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html> ([i915#3297]) +3 similar issues * igt@gen3_render_mixed_blits: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gen3_render_mixed_blits.html> ([fdo#109289]) +6 similar issues * igt@gen7_exec_parse@load-register-reg: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gen7_exec_parse@load-register-reg.html> ([fdo#109289]) +4 similar issues * igt@gen9_exec_parse@bb-large: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gen9_exec_parse@bb-large.html> ([i915#2527]) * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@gen9_exec_parse@bb-large.html> ([i915#3296]) * igt@gen9_exec_parse@bb-start-param: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gen9_exec_parse@bb-start-param.html> ([fdo#112306]) +4 similar issues * igt@gen9_exec_parse@secure-batches: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gen9_exec_parse@secure-batches.html> ([fdo#112306]) +3 similar issues * igt@i915_hangman@engine-error@bcs0: * shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb3/igt@i915_hangman@engine-error@bcs0.html> ([i915#3457]) +9 similar issues * igt@i915_hangman@engine-error@vcs0: * shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_hangman@engine-error@vcs0.html> ([i915#3457]) +7 similar issues * igt@i915_hangman@engine-error@vecs0: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html> ([fdo#109271]) +207 similar issues * igt@i915_pm_dc@dc6-dpms: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html> ([fdo#109271] / [i915#1937]) * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> ([fdo#109271] / [i915#1937]) * igt@i915_pm_rc6_residency@rc6-fence: * shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#3457]) * igt@i915_pm_rpm@cursor: * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk2/igt@i915_pm_rpm@cursor.html> ([i915#3457]) +1 similar issue * igt@i915_pm_rpm@cursor-dpms: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl6/igt@i915_pm_rpm@cursor-dpms.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rpm@cursor-dpms.html> ([i915#3457]) * igt@i915_pm_rpm@dpms-non-lpsp: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@i915_pm_rpm@dpms-non-lpsp.html> ([fdo#111644] / [i915#1397] / [i915#2411]) * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html> ([fdo#110892]) * igt@i915_pm_rpm@gem-execbuf-stress-pc8: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> ([fdo#109293] / [fdo#109506]) +1 similar issue * igt@i915_pm_rpm@modeset-pc8-residency-stress: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> ([fdo#109506] / [i915#2411]) +1 similar issue * igt@i915_selftest@live@execlists: * shard-tglb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@execlists.html> ([i915#3462]) * igt@i915_selftest@live@gt_lrc: * shard-tglb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_lrc.html> ([i915#2373]) * igt@i915_selftest@live@gt_pm: * shard-tglb: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_pm.html> ([i915#1759] / [i915#2291]) * igt@i915_selftest@live@hangcheck: * shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@hangcheck.html> ([i915#2782]) * igt@i915_selftest@live@mman: * shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@mman.html> ([i915#3457]) * igt@kms_big_fb@linear-8bpp-rotate-270: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html> ([fdo#111614]) +6 similar issues * igt@kms_big_fb@x-tiled-16bpp-rotate-270: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> ([fdo#110725] / [fdo#111614]) +3 similar issues * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> ([fdo#110723]) * igt@kms_big_fb@yf-tiled-addfb-size-overflow: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> ([fdo#111615]) +5 similar issues * igt@kms_ccs@pipe-b-crc-sprite-planes-basic: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html> ([fdo#108145]) * igt@kms_ccs@pipe-d-bad-rotation-90: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_ccs@pipe-d-bad-rotation-90.html> ([fdo#109278]) +16 similar issues * igt@kms_chamelium@hdmi-edid-read: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html> ([fdo#109284] / [fdo#111827]) +20 similar issues * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html> ([fdo#109284] / [fdo#111827]) +14 similar issues * igt@kms_chamelium@vga-hpd-enable-disable-mode: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues * igt@kms_chamelium@vga-hpd-for-each-pipe: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html> ([fdo#109271] / [fdo#111827]) +22 similar issues * igt@kms_color@pipe-a-degamma: * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_color@pipe-a-degamma.html> ([i915#1149]) +1 similar issue * igt@kms_color@pipe-a-gamma: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_color@pipe-a-gamma.html> ([i915#71]) * igt@kms_color@pipe-b-degamma: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_color@pipe-b-degamma.html> ([i915#1149]) +1 similar issue * igt@kms_color@pipe-c-gamma: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk3/igt@kms_color@pipe-c-gamma.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_color@pipe-c-gamma.html> ([i915#71]) +1 similar issue * igt@kms_color_chamelium@pipe-c-ctm-0-25: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> ([fdo#109271] / [fdo#111827]) +10 similar issues * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html> ([fdo#109271] / [fdo#111827]) +17 similar issues * igt@kms_color_chamelium@pipe-d-gamma: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_color_chamelium@pipe-d-gamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue * igt@kms_content_protection@atomic: * shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_content_protection@atomic.html> ([i915#1319]) +2 similar issues * igt@kms_content_protection@mei_interface: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_content_protection@mei_interface.html> ([fdo#109300] / [fdo#111066]) +1 similar issue * igt@kms_content_protection@srm: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_content_protection@srm.html> ([fdo#111828]) +2 similar issues * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html> ([i915#3444] / [i915#3457]) +9 similar issues * igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: * shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html> ([i915#2124] / [i915#3457]) * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html> ([fdo#109271] / [i915#3457]) +30 similar issues * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html> ([i915#3319] / [i915#3457]) +4 similar issues * igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html> ([i915#3457]) +2 similar issues * igt@kms_cursor_crc@pipe-b-cursor-32x32-random: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html> ([fdo#109271] / [i915#3457]) +16 similar issues * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html> ([fdo#109278] / [fdo#109279] / [i915#3457]) +1 similar issue * igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html> ([fdo#109271] / [i915#3457]) +10 similar issues * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: * shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html> ([i915#3444] / [i915#3457]) +14 similar issues * shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html> ([i915#3457]) +11 similar issues * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: * shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html> ([i915#3444] / [i915#3457]) * igt@kms_cursor_crc@pipe-c-cursor-256x256-random: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html> ([i915#3444] / [i915#3457]) +1 similar issue * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html> ([i915#3359] / [i915#3457]) +5 similar issues * igt@kms_cursor_crc@pipe-c-cursor-size-change: * shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-size-change.html> ([i915#3444] / [i915#3457]) +10 similar issues * shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-size-change.html> ([i915#3444] / [i915#3457]) +1 similar issue * igt@kms_cursor_crc@pipe-c-cursor-suspend: * shard-kbl: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html> ([i915#180] / [i915#3457]) * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> ([fdo#109278] / [i915#3457]) +16 similar issues * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html> ([fdo#109279] / [i915#3359] / [i915#3457]) +5 similar issues * igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque: * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque.html> ([i915#2124] / [i915#3457]) +20 similar issues * igt@kms_cursor_crc@pipe-d-cursor-suspend: * shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-suspend.html> ([fdo#109271] / [i915#3457]) +33 similar issues * shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html> ([i915#2124] / [i915#2411] / [i915#3457]) * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html> ([i915#70]) +3 similar issues * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> ([fdo#109274] / [fdo#109278]) +5 similar issues * igt@kms_fbcon_fbt@fbc-suspend: * shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#155] / [i915#180] / [i915#636]) * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: * shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> ([fdo#109274]) +9 similar issues * igt@kms_flip@2x-plain-flip-ts-check: * shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html> ([fdo#111825]) +73 similar issues * igt@kms_flip_scaled_crc@flip-32bpp-ytile [-- Attachment #1.2: Type: text/html, Size: 65811 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S 2021-05-13 10:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-05-13 14:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-05-13 19:05 ` Navare, Manasi 2021-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2021-05-17 15:14 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Navare, Manasi @ 2021-05-13 19:05 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev On Thu, May 13, 2021 at 02:37:00PM +0530, Karthik B S wrote: > DSC is not supported on Pipe A for external DP on Gen11 platforms. > But as this check is within update_display(), we still call test_cleanup(). > This bug is seen here as the pipe wasn't set properly for this output. > > To fix this, moving the check outside update_display() so that we do not > call test_cleanup if we didn't even run the test. > > Also, moved the fb creation and removal outside the loop for_each_pipe(), > since it seems redundant within the loop. > > Fixes: https://gitlab.freedesktop.org/drm/intel/-/issues/3466 > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> Looks good to me, Reviewed-by: Manasi Navare <manasi.d.navare@intel.com> Manasi > --- > tests/kms_dp_dsc.c | 31 ++++++++++++++++++------------- > 1 file changed, 18 insertions(+), 13 deletions(-) > > diff --git a/tests/kms_dp_dsc.c b/tests/kms_dp_dsc.c > index 60ed3855..2446fd82 100644 > --- a/tests/kms_dp_dsc.c > +++ b/tests/kms_dp_dsc.c > @@ -168,7 +168,6 @@ static void test_cleanup(data_t *data) > DRM_PLANE_TYPE_PRIMARY); > igt_plane_set_fb(primary, NULL); > igt_display_commit(&data->display); > - igt_remove_fb(data->drm_fd, &data->fb_test_pattern); > } > } > > @@ -185,15 +184,8 @@ static void kms_dp_dsc_exit_handler(int sig) > static void update_display(data_t *data, enum dsc_test_type test_type) > { > igt_plane_t *primary; > - data->mode = igt_output_get_mode(data->output); > data->connector = data->output->config.connector; > > - if (data->connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort && > - data->pipe == PIPE_A) { > - igt_debug("DSC not supported on Pipe A on external DP\n"); > - return; > - } > - > /* Disable the output first */ > igt_output_set_pipe(data->output, PIPE_NONE); > igt_display_commit(&data->display); > @@ -206,11 +198,6 @@ static void update_display(data_t *data, enum dsc_test_type test_type) > force_dp_dsc_enable(data); > > igt_output_set_pipe(data->output, data->pipe); > - igt_create_pattern_fb(data->drm_fd, data->mode->hdisplay, > - data->mode->vdisplay, > - DRM_FORMAT_XRGB8888, > - LOCAL_DRM_FORMAT_MOD_NONE, > - &data->fb_test_pattern); > primary = igt_output_get_plane_type(data->output, > DRM_PLANE_TYPE_PRIMARY); > > @@ -241,7 +228,23 @@ static void run_test(data_t *data, igt_output_t *output, > { > enum pipe pipe; > > + data->mode = igt_output_get_mode(data->output); > + igt_create_pattern_fb(data->drm_fd, data->mode->hdisplay, > + data->mode->vdisplay, > + DRM_FORMAT_XRGB8888, > + LOCAL_DRM_FORMAT_MOD_NONE, > + &data->fb_test_pattern); > + > for_each_pipe(&data->display, pipe) { > + if (is_i915_device(data->drm_fd)) { > + uint32_t devid = intel_get_drm_devid(data->drm_fd); > + > + if (data->connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort && > + data->pipe == PIPE_A && IS_GEN11(devid)) { > + igt_debug("DSC not supported on Pipe A on external DP in Gen11 platforms\n"); > + continue; > + } > + } > > if (igt_pipe_connector_valid(pipe, output)) { > data->pipe = pipe; > @@ -250,6 +253,8 @@ static void run_test(data_t *data, igt_output_t *output, > test_cleanup(data); > } > } > + > + igt_remove_fb(data->drm_fd, &data->fb_test_pattern); > } > > igt_main > -- > 2.22.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S ` (2 preceding siblings ...) 2021-05-13 19:05 ` [igt-dev] [PATCH i-g-t] " Navare, Manasi @ 2021-05-17 5:49 ` Patchwork 2021-05-17 15:14 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2021-05-17 5:49 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30260 bytes --] == Series Details == Series: tests/kms_dp_dsc: Bug fix for DP on Pipe A URL : https://patchwork.freedesktop.org/series/90121/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10074_full -> IGTPW_5810_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5810_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5810_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_5810/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5810_full: ### IGT changes ### #### Possible regressions #### * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-tglb: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html Known issues ------------ Here are the changes found in IGTPW_5810_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@execbuf-with-allocator: - shard-kbl: NOTRUN -> [DMESG-WARN][2] ([i915#3457]) +4 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@api_intel_allocator@execbuf-with-allocator.html - shard-glk: NOTRUN -> [DMESG-FAIL][3] ([i915#3457]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@api_intel_allocator@execbuf-with-allocator.html * igt@api_intel_bb@intel-bb-blit-y: - shard-apl: [PASS][4] -> [FAIL][5] ([i915#3471]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@api_intel_bb@intel-bb-blit-y.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@api_intel_bb@intel-bb-blit-y.html * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][6] ([i915#3002]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_create@create-massive.html - shard-tglb: NOTRUN -> [DMESG-WARN][7] ([i915#3002]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: NOTRUN -> [DMESG-WARN][8] ([i915#180] / [i915#3457]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl2/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][10] -> [TIMEOUT][11] ([i915#2369] / [i915#3063] / [i915#3457]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb5/igt@gem_eio@unwedge-stress.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_eio@unwedge-stress.html - shard-apl: NOTRUN -> [FAIL][12] ([i915#3457]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@gem_eio@unwedge-stress.html - shard-iclb: [PASS][13] -> [TIMEOUT][14] ([i915#2369] / [i915#2481] / [i915#3070] / [i915#3457]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb2/igt@gem_eio@unwedge-stress.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [PASS][15] -> [FAIL][16] ([i915#2842] / [i915#3457]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][17] ([i915#2842] / [i915#3457]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-iclb: NOTRUN -> [FAIL][18] ([i915#2842] / [i915#3457]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][19] ([i915#2842] / [i915#3457]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#3457]) +29 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@gem_exec_fence@parallel@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][22] ([fdo#112283]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-wide-active@bcs0: - shard-tglb: NOTRUN -> [FAIL][23] ([i915#2389] / [i915#3457]) +4 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_exec_reloc@basic-wide-active@bcs0.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][24] ([i915#2389] / [i915#3457]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: NOTRUN -> [DMESG-WARN][25] ([i915#118] / [i915#95]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-glk: [PASS][26] -> [INCOMPLETE][27] ([i915#3468]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-snb: NOTRUN -> [INCOMPLETE][28] ([i915#3468]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html - shard-apl: [PASS][29] -> [INCOMPLETE][30] ([i915#3468]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-iclb: [PASS][31] -> [INCOMPLETE][32] ([i915#3468]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-iclb: NOTRUN -> [INCOMPLETE][33] ([i915#3468]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_gtt@fault-concurrent-x.html - shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#3468]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@gem_mmap_gtt@fault-concurrent-x.html - shard-tglb: NOTRUN -> [INCOMPLETE][35] ([i915#3468]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-glk: [PASS][36] -> [INCOMPLETE][37] ([i915#2502]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk7/igt@gem_mmap_gtt@medium-copy-xy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear: - shard-iclb: [PASS][38] -> [FAIL][39] ([i915#3160]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb7/igt@gem_mmap_offset@clear.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_offset@clear.html * igt@gem_pwrite@basic-exhaustion: - shard-iclb: NOTRUN -> [WARN][40] ([i915#2658]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][41] ([i915#2658]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][42] ([i915#2658]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-apl: NOTRUN -> [INCOMPLETE][43] ([i915#3468]) +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109312]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_softpin@evict-snoop-interruptible.html - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109312]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3323]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-glk: NOTRUN -> [DMESG-WARN][47] ([i915#3002]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3297]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-iclb: NOTRUN -> [SKIP][49] ([i915#3297]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109289]) +6 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@load-register-reg: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109289]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-large: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#2527]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gen9_exec_parse@bb-large.html - shard-apl: NOTRUN -> [FAIL][53] ([i915#3296]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#112306]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#112306]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gen9_exec_parse@secure-batches.html * igt@i915_hangman@engine-error@bcs0: - shard-tglb: NOTRUN -> [DMESG-WARN][56] ([i915#3457]) +9 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb3/igt@i915_hangman@engine-error@bcs0.html * igt@i915_hangman@engine-error@vcs0: - shard-iclb: NOTRUN -> [DMESG-WARN][57] ([i915#3457]) +7 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_hangman@engine-error@vcs0.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271]) +207 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][59] ([i915#454]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#1937]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#1937]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-apl: NOTRUN -> [DMESG-WARN][62] ([i915#3457]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@cursor: - shard-glk: NOTRUN -> [DMESG-WARN][63] ([i915#3457]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk2/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@cursor-dpms: - shard-apl: [PASS][64] -> [DMESG-WARN][65] ([i915#3457]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl6/igt@i915_pm_rpm@cursor-dpms.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111644] / [i915#1397] / [i915#2411]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#110892]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109293] / [fdo#109506]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109506] / [i915#2411]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_selftest@live@execlists: - shard-tglb: NOTRUN -> [INCOMPLETE][70] ([i915#3462]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_lrc: - shard-tglb: NOTRUN -> [DMESG-FAIL][71] ([i915#2373]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - shard-tglb: NOTRUN -> [DMESG-FAIL][72] ([i915#1759] / [i915#2291]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][73] ([i915#2782]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - shard-snb: NOTRUN -> [DMESG-WARN][74] ([i915#3457]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@mman.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][75] ([fdo#111614]) +6 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#110725] / [fdo#111614]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#110723]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#111615]) +5 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic: - shard-glk: [PASS][79] -> [FAIL][80] ([fdo#108145]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html * igt@kms_ccs@pipe-d-bad-rotation-90: - shard-iclb: NOTRUN -> [SKIP][81] ([fdo#109278]) +16 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_ccs@pipe-d-bad-rotation-90.html * igt@kms_chamelium@hdmi-edid-read: - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#109284] / [fdo#111827]) +20 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109284] / [fdo#111827]) +14 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-enable-disable-mode: - shard-glk: NOTRUN -> [SKIP][84] ([fdo#109271] / [fdo#111827]) +12 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +22 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-a-degamma: - shard-iclb: NOTRUN -> [FAIL][86] ([i915#1149]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_color@pipe-a-degamma.html * igt@kms_color@pipe-a-gamma: - shard-glk: NOTRUN -> [FAIL][87] ([i915#71]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_color@pipe-a-gamma.html * igt@kms_color@pipe-b-degamma: - shard-tglb: NOTRUN -> [FAIL][88] ([i915#1149]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_color@pipe-b-degamma.html * igt@kms_color@pipe-c-gamma: - shard-glk: [PASS][89] -> [FAIL][90] ([i915#71]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk3/igt@kms_color@pipe-c-gamma.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_color@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [fdo#111827]) +10 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-snb: NOTRUN -> [SKIP][92] ([fdo#109271] / [fdo#111827]) +17 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_color_chamelium@pipe-d-gamma.html * igt@kms_content_protection@atomic: - shard-kbl: NOTRUN -> [TIMEOUT][94] ([i915#1319]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109300] / [fdo#111066]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][96] ([fdo#111828]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: - shard-glk: [PASS][97] -> [FAIL][98] ([i915#3444] / [i915#3457]) +9 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: - shard-tglb: [PASS][99] -> [FAIL][100] ([i915#2124] / [i915#3457]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-snb: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#3457]) +30 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][102] ([i915#3319] / [i915#3457]) +4 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding: - shard-snb: NOTRUN -> [FAIL][103] ([i915#3457]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-random: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#3457]) +16 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][105] ([fdo#109278] / [fdo#109279] / [i915#3457]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: - shard-apl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#3457]) +10 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: - shard-kbl: NOTRUN -> [FAIL][107] ([i915#3444] / [i915#3457]) +14 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html - shard-iclb: NOTRUN -> [FAIL][108] ([i915#3457]) +11 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: - shard-kbl: [PASS][109] -> [FAIL][110] ([i915#3444] / [i915#3457]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-c-cursor-256x256-random: - shard-apl: [PASS][111] -> [FAIL][112] ([i915#3444] / [i915#3457]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][113] ([i915#3359] / [i915#3457]) +5 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-size-change: - shard-glk: NOTRUN -> [FAIL][114] ([i915#3444] / [i915#3457]) +10 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-size-change.html - shard-apl: NOTRUN -> [FAIL][115] ([i915#3444] / [i915#3457]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-size-change.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-FAIL][116] ([i915#180] / [i915#3457]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][117] ([fdo#109278] / [i915#3457]) +16 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][118] ([fdo#109279] / [i915#3359] / [i915#3457]) +5 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque: - shard-tglb: NOTRUN -> [FAIL][119] ([i915#2124] / [i915#3457]) +20 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-d-cursor-suspend: - shard-kbl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#3457]) +33 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-suspend.html - shard-tglb: NOTRUN -> [FAIL][121] ([i915#2124] / [i915#2411] / [i915#3457]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: - shard-glk: [PASS][122] -> [FAIL][123] ([i915#70]) +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][124] ([fdo#109274] / [fdo#109278]) +5 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][125] ([i915#155] / [i915#180] / [i915#636]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-iclb: NOTRUN -> [SKIP][126] ([fdo#109274]) +9 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglb: NOTRUN -> [SKIP][127] ([fdo#111825]) +73 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-tglb: NOTRUN -> [SKIP][128] ([i915#2587]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c: - shard-glk: [PASS][129] -> [FAIL][130] ([i915#3468]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-iclb: NOTRUN -> [SKIP][131] ([fdo#109280]) +47 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][132] ([fdo#109271]) +296 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html [-- Attachment #1.2: Type: text/html, Size: 33892 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_dp_dsc: Bug fix for DP on Pipe A 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S ` (3 preceding siblings ...) 2021-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2021-05-17 15:14 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2021-05-17 15:14 UTC (permalink / raw) To: Karthik B S; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30260 bytes --] == Series Details == Series: tests/kms_dp_dsc: Bug fix for DP on Pipe A URL : https://patchwork.freedesktop.org/series/90121/ State : success == Summary == CI Bug Log - changes from CI_DRM_10074_full -> IGTPW_5810_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html Known issues ------------ Here are the changes found in IGTPW_5810_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@execbuf-with-allocator: - shard-kbl: NOTRUN -> [DMESG-WARN][1] ([i915#3457]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@api_intel_allocator@execbuf-with-allocator.html - shard-glk: NOTRUN -> [DMESG-FAIL][2] ([i915#3457]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@api_intel_allocator@execbuf-with-allocator.html * igt@api_intel_bb@intel-bb-blit-y: - shard-apl: [PASS][3] -> [FAIL][4] ([i915#3471]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@api_intel_bb@intel-bb-blit-y.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@api_intel_bb@intel-bb-blit-y.html * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][5] ([i915#3002]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_create@create-massive.html - shard-tglb: NOTRUN -> [DMESG-WARN][6] ([i915#3002]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#180] / [i915#3457]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl2/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_eio@unwedge-stress: - shard-tglb: [PASS][9] -> [TIMEOUT][10] ([i915#2369] / [i915#3063] / [i915#3457]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb5/igt@gem_eio@unwedge-stress.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_eio@unwedge-stress.html - shard-apl: NOTRUN -> [FAIL][11] ([i915#3457]) +7 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@gem_eio@unwedge-stress.html - shard-iclb: [PASS][12] -> [TIMEOUT][13] ([i915#2369] / [i915#2481] / [i915#3070] / [i915#3457]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb2/igt@gem_eio@unwedge-stress.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [PASS][14] -> [FAIL][15] ([i915#2842] / [i915#3457]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglb: NOTRUN -> [FAIL][16] ([i915#2842] / [i915#3457]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-iclb: NOTRUN -> [FAIL][17] ([i915#2842] / [i915#3457]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][18] ([i915#2842] / [i915#3457]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@parallel@vcs0: - shard-glk: [PASS][19] -> [FAIL][20] ([i915#3457]) +29 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@gem_exec_fence@parallel@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][21] ([fdo#112283]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-wide-active@bcs0: - shard-tglb: NOTRUN -> [FAIL][22] ([i915#2389] / [i915#3457]) +4 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@gem_exec_reloc@basic-wide-active@bcs0.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][23] ([i915#2389] / [i915#3457]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: NOTRUN -> [DMESG-WARN][24] ([i915#118] / [i915#95]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-glk: [PASS][25] -> [INCOMPLETE][26] ([i915#3468]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-snb: NOTRUN -> [INCOMPLETE][27] ([i915#3468]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html - shard-apl: [PASS][28] -> [INCOMPLETE][29] ([i915#3468]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-iclb: [PASS][30] -> [INCOMPLETE][31] ([i915#3468]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-iclb: NOTRUN -> [INCOMPLETE][32] ([i915#3468]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_gtt@fault-concurrent-x.html - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#3468]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-glk: [PASS][34] -> [INCOMPLETE][35] ([i915#2502]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk7/igt@gem_mmap_gtt@medium-copy-xy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk5/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear: - shard-iclb: [PASS][36] -> [FAIL][37] ([i915#3160]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-iclb7/igt@gem_mmap_offset@clear.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_mmap_offset@clear.html * igt@gem_pwrite@basic-exhaustion: - shard-iclb: NOTRUN -> [WARN][38] ([i915#2658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][39] ([i915#2658]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][40] ([i915#2658]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-tglb: NOTRUN -> [INCOMPLETE][41] ([i915#3468]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-apl: NOTRUN -> [INCOMPLETE][42] ([i915#3468]) +4 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl8/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#109312]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@gem_softpin@evict-snoop-interruptible.html - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109312]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3323]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-glk: NOTRUN -> [DMESG-WARN][46] ([i915#3002]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk9/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3297]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-iclb: NOTRUN -> [SKIP][48] ([i915#3297]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109289]) +6 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@load-register-reg: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109289]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-large: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#2527]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@gen9_exec_parse@bb-large.html - shard-apl: NOTRUN -> [FAIL][52] ([i915#3296]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#112306]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#112306]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@gen9_exec_parse@secure-batches.html * igt@i915_hangman@engine-error@bcs0: - shard-tglb: NOTRUN -> [DMESG-WARN][55] ([i915#3457]) +9 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb3/igt@i915_hangman@engine-error@bcs0.html * igt@i915_hangman@engine-error@vcs0: - shard-iclb: NOTRUN -> [DMESG-WARN][56] ([i915#3457]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_hangman@engine-error@vcs0.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][57] ([fdo#109271]) +207 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][58] ([i915#454]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#1937]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#1937]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-apl: NOTRUN -> [DMESG-WARN][61] ([i915#3457]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@cursor: - shard-glk: NOTRUN -> [DMESG-WARN][62] ([i915#3457]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk2/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@cursor-dpms: - shard-apl: [PASS][63] -> [DMESG-WARN][64] ([i915#3457]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl6/igt@i915_pm_rpm@cursor-dpms.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111644] / [i915#1397] / [i915#2411]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#110892]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109293] / [fdo#109506]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][68] ([fdo#109506] / [i915#2411]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_selftest@live@execlists: - shard-tglb: NOTRUN -> [INCOMPLETE][69] ([i915#3462]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_lrc: - shard-tglb: NOTRUN -> [DMESG-FAIL][70] ([i915#2373]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - shard-tglb: NOTRUN -> [DMESG-FAIL][71] ([i915#1759] / [i915#2291]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - shard-snb: NOTRUN -> [INCOMPLETE][72] ([i915#2782]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - shard-snb: NOTRUN -> [DMESG-WARN][73] ([i915#3457]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb6/igt@i915_selftest@live@mman.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#111614]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#110725] / [fdo#111614]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#110723]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglb: NOTRUN -> [SKIP][77] ([fdo#111615]) +5 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic: - shard-glk: [PASS][78] -> [FAIL][79] ([fdo#108145]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic.html * igt@kms_ccs@pipe-d-bad-rotation-90: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109278]) +16 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_ccs@pipe-d-bad-rotation-90.html * igt@kms_chamelium@hdmi-edid-read: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109284] / [fdo#111827]) +20 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109284] / [fdo#111827]) +14 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-enable-disable-mode: - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +12 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_chamelium@vga-hpd-enable-disable-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][84] ([fdo#109271] / [fdo#111827]) +22 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-a-degamma: - shard-iclb: NOTRUN -> [FAIL][85] ([i915#1149]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb8/igt@kms_color@pipe-a-degamma.html * igt@kms_color@pipe-a-gamma: - shard-glk: NOTRUN -> [FAIL][86] ([i915#71]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_color@pipe-a-gamma.html * igt@kms_color@pipe-b-degamma: - shard-tglb: NOTRUN -> [FAIL][87] ([i915#1149]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_color@pipe-b-degamma.html * igt@kms_color@pipe-c-gamma: - shard-glk: [PASS][88] -> [FAIL][89] ([i915#71]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk3/igt@kms_color@pipe-c-gamma.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_color@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [fdo#111827]) +10 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-snb: NOTRUN -> [SKIP][91] ([fdo#109271] / [fdo#111827]) +17 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_color_chamelium@pipe-d-gamma.html * igt@kms_content_protection@atomic: - shard-kbl: NOTRUN -> [TIMEOUT][93] ([i915#1319]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109300] / [fdo#111066]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][95] ([fdo#111828]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#3444] / [i915#3457]) +9 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen: - shard-tglb: [PASS][98] -> [FAIL][99] ([i915#2124] / [i915#3457]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-256x256-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-snb: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#3457]) +30 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][101] ([i915#3319] / [i915#3457]) +4 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding: - shard-snb: NOTRUN -> [FAIL][102] ([i915#3457]) +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-random: - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#3457]) +16 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109278] / [fdo#109279] / [i915#3457]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_crc@pipe-b-cursor-512x170-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3457]) +10 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: - shard-kbl: NOTRUN -> [FAIL][106] ([i915#3444] / [i915#3457]) +14 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html - shard-iclb: NOTRUN -> [FAIL][107] ([i915#3457]) +11 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: - shard-kbl: [PASS][108] -> [FAIL][109] ([i915#3444] / [i915#3457]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-c-cursor-256x256-random: - shard-apl: [PASS][110] -> [FAIL][111] ([i915#3444] / [i915#3457]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-random.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][112] ([i915#3359] / [i915#3457]) +5 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html * igt@kms_cursor_crc@pipe-c-cursor-size-change: - shard-glk: NOTRUN -> [FAIL][113] ([i915#3444] / [i915#3457]) +10 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_crc@pipe-c-cursor-size-change.html - shard-apl: NOTRUN -> [FAIL][114] ([i915#3444] / [i915#3457]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-size-change.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: NOTRUN -> [DMESG-FAIL][115] ([i915#180] / [i915#3457]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109278] / [i915#3457]) +16 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][117] ([fdo#109279] / [i915#3359] / [i915#3457]) +5 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque: - shard-tglb: NOTRUN -> [FAIL][118] ([i915#2124] / [i915#3457]) +20 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-d-cursor-suspend: - shard-kbl: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#3457]) +33 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-suspend.html - shard-tglb: NOTRUN -> [FAIL][120] ([i915#2124] / [i915#2411] / [i915#3457]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-suspend.html * igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge: - shard-glk: [PASS][121] -> [FAIL][122] ([i915#70]) +3 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk4/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-128x128-bottom-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][123] ([fdo#109274] / [fdo#109278]) +5 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][124] ([i915#155] / [i915#180] / [i915#636]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-iclb: NOTRUN -> [SKIP][125] ([fdo#109274]) +9 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglb: NOTRUN -> [SKIP][126] ([fdo#111825]) +73 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-tglb: NOTRUN -> [SKIP][127] ([i915#2587]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c: - shard-glk: [PASS][128] -> [FAIL][129] ([i915#3468]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10074/shard-glk8/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk4/igt@kms_flip_tiling@flip-changes-tiling@hdmi-a-1-pipe-c.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-iclb: NOTRUN -> [SKIP][130] ([fdo#109280]) +47 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][131] ([fdo#109271]) +296 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-glk: NOTRUN -> [SKIP][132] ([fdo#109271]) +104 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-glk7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@static-toggle: - shard-iclb: NOTRUN -> [SKIP][133] ([i915#1187]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-iclb7/igt@kms_hdr@static-toggle.html - shard-tglb: NOTRUN -> [SKIP][134] ([i915#1187]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/shard-tglb5/igt@kms_hdr@static-toggle == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5810/index.html [-- Attachment #1.2: Type: text/html, Size: 33933 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-05-17 15:22 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-05-13 9:07 [igt-dev] [PATCH i-g-t] tests/kms_dp_dsc: Bug fix for DP on Pipe A Karthik B S 2021-05-13 10:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-05-13 14:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-05-17 4:22 ` Karthik B S 2021-05-17 15:22 ` Vudum, Lakshminarayana 2021-05-13 19:05 ` [igt-dev] [PATCH i-g-t] " Navare, Manasi 2021-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2021-05-17 15:14 ` [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