* [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off
@ 2020-08-21 16:39 Michel Dänzer
2020-08-21 16:39 ` [igt-dev] [PATCH 1/2] tests/kms_plane_multiple: " Michel Dänzer
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Michel Dänzer @ 2020-08-21 16:39 UTC (permalink / raw)
To: igt-dev
From: Michel Dänzer <mdaenzer@redhat.com>
In the same spirit as 88e379cef970 "kms_cursor_legacy: Keep primary
plane enabled for XRGB overlay fallback", allow two more tests to work
on setups where the primary plane cannot be disabled while the pipe is
enabled.
Michel Dänzer (2):
tests/kms_plane_multiple: Turn off pipe as well if all planes are off
tests/kms_atomic_transition: Turn off pipe as well if all planes are
off
tests/kms_atomic_transition.c | 19 +++++++------------
tests/kms_plane_multiple.c | 8 ++++----
2 files changed, 11 insertions(+), 16 deletions(-)
--
2.28.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH 1/2] tests/kms_plane_multiple: Turn off pipe as well if all planes are off 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer @ 2020-08-21 16:39 ` Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 2/2] tests/kms_atomic_transition: " Michel Dänzer ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Michel Dänzer @ 2020-08-21 16:39 UTC (permalink / raw) To: igt-dev From: Michel Dänzer <mdaenzer@redhat.com> And only collect CRC data while the pipe is on. This makes the test compatible with setups which don't support an enabled pipe without any enabled planes. Signed-off-by: Michel Dänzer <mdaenzer@redhat.com> --- tests/kms_plane_multiple.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c index 8310981c..2a1341d0 100644 --- a/tests/kms_plane_multiple.c +++ b/tests/kms_plane_multiple.c @@ -78,8 +78,6 @@ static void test_init(data_t *data, enum pipe pipe, int n_planes) static void test_fini(data_t *data, igt_output_t *output, int n_planes) { - igt_pipe_crc_stop(data->pipe_crc); - /* reset the constraint on the pipe */ igt_output_set_pipe(output, PIPE_ANY); @@ -316,6 +314,7 @@ test_plane_position_with_output(data_t *data, enum pipe pipe, for_each_plane_on_pipe(&data->display, pipe, plane) igt_plane_set_fb(plane, NULL); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&data->display, COMMIT_ATOMIC); for (int x = 0; x < c; x++) @@ -329,8 +328,6 @@ test_plane_position_with_output(data_t *data, enum pipe pipe, igt_output_name(output), kmstest_pipe_name(pipe), c, info, opt.seed); - igt_pipe_crc_start(data->pipe_crc); - i = 0; while (i < iterations || loop_forever) { /* randomize planes and set up the holes */ @@ -338,11 +335,14 @@ test_plane_position_with_output(data_t *data, enum pipe pipe, igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_pipe_crc_start(data->pipe_crc); igt_pipe_crc_get_current(data->display.drm_fd, data->pipe_crc, &crc); + igt_pipe_crc_stop(data->pipe_crc); for_each_plane_on_pipe(&data->display, pipe, plane) igt_plane_set_fb(plane, NULL); + igt_output_set_pipe(output, PIPE_NONE); igt_display_commit2(&data->display, COMMIT_ATOMIC); for (int x = 0; x < c; x++) -- 2.28.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH 2/2] tests/kms_atomic_transition: Turn off pipe as well if all planes are off 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 1/2] tests/kms_plane_multiple: " Michel Dänzer @ 2020-08-21 16:39 ` Michel Dänzer 2020-08-21 17:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Michel Dänzer @ 2020-08-21 16:39 UTC (permalink / raw) To: igt-dev From: Michel Dänzer <mdaenzer@redhat.com> And set the DRM_MODE_ATOMIC_ALLOW_MODESET for TRANSITION_AFTER_FREE as well. This makes the test compatible with setups which don't support an enabled pipe without any enabled planes. Signed-off-by: Michel Dänzer <mdaenzer@redhat.com> --- tests/kms_atomic_transition.c | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c index a71bbe10..4834b580 100644 --- a/tests/kms_atomic_transition.c +++ b/tests/kms_atomic_transition.c @@ -457,7 +457,7 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output if (nonblocking) flags |= DRM_MODE_ATOMIC_NONBLOCK; - if (type >= TRANSITION_MODESET) + if (type >= TRANSITION_AFTER_FREE) flags |= DRM_MODE_ATOMIC_ALLOW_MODESET; mode = igt_output_get_mode(output); @@ -468,20 +468,11 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output igt_create_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, &fb); - igt_output_set_pipe(output, pipe); - + igt_output_set_pipe(output, PIPE_NONE); wm_setup_plane(display, pipe, 0, NULL, false); - - if (flags & DRM_MODE_ATOMIC_ALLOW_MODESET) { - igt_output_set_pipe(output, PIPE_NONE); - - igt_display_commit2(display, COMMIT_ATOMIC); - - igt_output_set_pipe(output, pipe); - } - igt_display_commit2(display, COMMIT_ATOMIC); + igt_output_set_pipe(output, pipe); setup_parms(display, pipe, mode, &fb, &argb_fb, &sprite_fb, parms, &iter_max); /* @@ -490,6 +481,7 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output * planes to fix this */ while (1) { + igt_output_set_pipe(output, pipe); wm_setup_plane(display, pipe, iter_max - 1, parms, false); if (fencing) @@ -524,6 +516,7 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output if (type == TRANSITION_AFTER_FREE) { int fence_fd = -1; + igt_output_set_pipe(output, PIPE_NONE); wm_setup_plane(display, pipe, 0, parms, fencing); atomic_commit(display, pipe, flags, (void *)(unsigned long)0, fencing); @@ -577,6 +570,8 @@ run_transition_test(igt_display_t *display, enum pipe pipe, igt_output_t *output } else { uint32_t j; + igt_output_set_pipe(output, pipe); + /* i -> i+1 will be done when i increases, can be skipped here */ for (j = iter_max - 1; j > i + 1; j--) { n_enable_planes = igt_hweight(j); -- 2.28.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: Turn off pipe as well if all planes are off 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 1/2] tests/kms_plane_multiple: " Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 2/2] tests/kms_atomic_transition: " Michel Dänzer @ 2020-08-21 17:16 ` Patchwork 2020-08-21 18:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-08-24 8:17 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2020-08-21 17:16 UTC (permalink / raw) To: Michel Dänzer; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 4417 bytes --] == Series Details == Series: tests/kms: Turn off pipe as well if all planes are off URL : https://patchwork.freedesktop.org/series/80904/ State : success == Summary == CI Bug Log - changes from CI_DRM_8913 -> IGTPW_4902 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html Known issues ------------ Here are the changes found in IGTPW_4902 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-u2: [PASS][1] -> [FAIL][2] ([i915#1888]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-bsw-kefka: [DMESG-WARN][3] ([i915#1982]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_lrc: - fi-tgl-u2: [DMESG-FAIL][5] ([i915#2373]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-tgl-u2/igt@i915_selftest@live@gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-tgl-u2/igt@i915_selftest@live@gt_lrc.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2: - fi-skl-guc: [DMESG-WARN][7] ([i915#2203]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-skl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html #### Warnings #### * igt@i915_pm_rpm@module-reload: - fi-kbl-x1275: [DMESG-FAIL][9] ([i915#62] / [i915#95]) -> [SKIP][10] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - fi-kbl-x1275: [DMESG-WARN][11] ([i915#62] / [i915#92]) -> [DMESG-WARN][12] ([i915#62] / [i915#92] / [i915#95]) +4 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - fi-kbl-x1275: [DMESG-WARN][13] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][14] ([i915#62] / [i915#92]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203 [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (38 -> 34) ------------------------------ Missing (4): fi-byt-clapper fi-ilk-m540 fi-byt-squawks fi-bsw-cyan Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5770 -> IGTPW_4902 CI-20190529: 20190529 CI_DRM_8913: e18d8e120e73feaf39d84afe14f9a7f58b696785 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4902: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html IGT_5770: f1d0c240ea2e631dfb9f493f37f8fb61cb2b1cf2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html [-- Attachment #1.2: Type: text/html, Size: 5746 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] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Turn off pipe as well if all planes are off 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer ` (2 preceding siblings ...) 2020-08-21 17:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: " Patchwork @ 2020-08-21 18:35 ` Patchwork 2020-08-22 9:08 ` Michel Dänzer 2020-08-24 8:17 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2020-08-21 18:35 UTC (permalink / raw) To: Michel Dänzer; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 17768 bytes --] == Series Details == Series: tests/kms: Turn off pipe as well if all planes are off URL : https://patchwork.freedesktop.org/series/80904/ State : failure == Summary == CI Bug Log - changes from CI_DRM_8913_full -> IGTPW_4902_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4902_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4902_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_4902/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4902_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-tglb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html Known issues ------------ Here are the changes found in IGTPW_4902_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_create@forked: - shard-glk: [PASS][3] -> [DMESG-WARN][4] ([i915#118] / [i915#95]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk5/igt@gem_exec_create@forked.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk6/igt@gem_exec_create@forked.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-hsw: [PASS][5] -> [TIMEOUT][6] ([i915#1958]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_reloc@basic-range-active: - shard-snb: [PASS][7] -> [TIMEOUT][8] ([i915#1958]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb4/igt@gem_exec_reloc@basic-range-active.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@gem_exec_reloc@basic-range-active.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([i915#1436] / [i915#1635] / [i915#716]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@gen9_exec_parse@allowed-all.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl8/igt@gen9_exec_parse@allowed-all.html * igt@i915_selftest@mock@contexts: - shard-apl: [PASS][11] -> [INCOMPLETE][12] ([i915#1635] / [i915#2278]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@i915_selftest@mock@contexts.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl4/igt@i915_selftest@mock@contexts.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-glk: [PASS][13] -> [DMESG-FAIL][14] ([i915#118] / [i915#95]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk6/igt@kms_big_fb@linear-64bpp-rotate-180.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk8/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#1635] / [i915#54]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#54]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-glk: [PASS][19] -> [FAIL][20] ([i915#54]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1: - shard-hsw: [PASS][21] -> [DMESG-WARN][22] ([i915#1982]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw1/igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw8/igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#79]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2: - shard-glk: [PASS][25] -> [FAIL][26] ([i915#2122]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk9/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-tglb: [PASS][27] -> [DMESG-WARN][28] ([i915#1982]) +6 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html * igt@prime_busy@after@vecs0: - shard-hsw: [PASS][33] -> [FAIL][34] ([i915#2258]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw8/igt@prime_busy@after@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@prime_busy@after@vecs0.html #### Possible fixes #### * {igt@feature_discovery@psr2}: - shard-iclb: [SKIP][35] ([i915#658]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb8/igt@feature_discovery@psr2.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_exec_balancer@nop: - shard-iclb: [INCOMPLETE][37] ([i915#2277]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@gem_exec_balancer@nop.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb3/igt@gem_exec_balancer@nop.html * igt@gem_exec_endless@dispatch@bcs0: - shard-tglb: [INCOMPLETE][39] -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb8/igt@gem_exec_endless@dispatch@bcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_gttfill@engines@rcs0: - shard-hsw: [INCOMPLETE][41] -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw7/igt@gem_exec_gttfill@engines@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@gem_exec_gttfill@engines@rcs0.html * {igt@gem_mmap_offset@blt-coherency}: - shard-apl: [FAIL][43] ([i915#1635]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl4/igt@gem_mmap_offset@blt-coherency.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl1/igt@gem_mmap_offset@blt-coherency.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-glk: [DMESG-FAIL][45] ([i915#118] / [i915#95]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk8/igt@kms_big_fb@linear-64bpp-rotate-0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-apl: [DMESG-WARN][47] ([i915#1635] / [i915#1982]) -> [PASS][48] +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-random: - shard-kbl: [FAIL][49] ([i915#54]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html - shard-apl: [FAIL][51] ([i915#1635] / [i915#54]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-hsw: [TIMEOUT][53] ([i915#1958]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-glk: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-tglb: [DMESG-WARN][59] ([i915#1982]) -> [PASS][60] +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-kbl: [DMESG-WARN][61] ([i915#1982]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_psr2_su@page_flip: - shard-tglb: [SKIP][63] ([i915#1911]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@kms_psr2_su@page_flip.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][65] ([fdo#109441]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_setmode@basic: - shard-kbl: [FAIL][67] ([i915#31]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl2/igt@kms_setmode@basic.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_setmode@basic.html * igt@perf@polling-parameterized: - shard-tglb: [FAIL][69] ([i915#1542]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@perf@polling-parameterized.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_exec_reloc@basic-concurrent16: - shard-snb: [FAIL][71] ([i915#1930]) -> [TIMEOUT][72] ([i915#1958]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb2/igt@gem_exec_reloc@basic-concurrent16.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@gem_exec_reloc@basic-concurrent16.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][73] ([i915#588]) -> [SKIP][74] ([i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: [TIMEOUT][75] ([i915#1319] / [i915#1958]) -> [TIMEOUT][76] ([i915#1319]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_content_protection@atomic-dpms.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_plane_cursor@pipe-c-viewport-size-128: - shard-snb: [SKIP][77] ([fdo#109271]) -> [TIMEOUT][78] ([i915#1958]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb2/igt@kms_plane_cursor@pipe-c-viewport-size-128.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@kms_plane_cursor@pipe-c-viewport-size-128.html * igt@kms_vblank@pipe-d-accuracy-idle: - shard-hsw: [TIMEOUT][79] ([i915#1958]) -> [SKIP][80] ([fdo#109271]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@kms_vblank@pipe-d-accuracy-idle.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw7/igt@kms_vblank@pipe-d-accuracy-idle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#1930]: https://gitlab.freedesktop.org/drm/intel/issues/1930 [i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2258]: https://gitlab.freedesktop.org/drm/intel/issues/2258 [i915#2277]: https://gitlab.freedesktop.org/drm/intel/issues/2277 [i915#2278]: https://gitlab.freedesktop.org/drm/intel/issues/2278 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5770 -> IGTPW_4902 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8913: e18d8e120e73feaf39d84afe14f9a7f58b696785 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4902: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html IGT_5770: f1d0c240ea2e631dfb9f493f37f8fb61cb2b1cf2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html [-- Attachment #1.2: Type: text/html, Size: 21297 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] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Turn off pipe as well if all planes are off 2020-08-21 18:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-08-22 9:08 ` Michel Dänzer 2020-08-24 7:42 ` Petri Latvala 0 siblings, 1 reply; 9+ messages in thread From: Michel Dänzer @ 2020-08-22 9:08 UTC (permalink / raw) To: igt-dev On 2020-08-21 8:35 p.m., Patchwork wrote: > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_4902_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_big_fb@linear-32bpp-rotate-0: > - shard-tglb: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html This is a false positive, since my series doesn't affect this test. -- Earthling Michel Dänzer | https://redhat.com Libre software enthusiast | Mesa and X developer _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Turn off pipe as well if all planes are off 2020-08-22 9:08 ` Michel Dänzer @ 2020-08-24 7:42 ` Petri Latvala 2020-08-24 8:18 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Petri Latvala @ 2020-08-24 7:42 UTC (permalink / raw) To: Michel Dänzer, Lakshminarayana Vudum; +Cc: igt-dev On Sat, Aug 22, 2020 at 11:08:15AM +0200, Michel Dänzer wrote: > On 2020-08-21 8:35 p.m., Patchwork wrote: > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4902_full: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@kms_big_fb@linear-32bpp-rotate-0: > > - shard-tglb: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html > > This is a false positive, since my series doesn't affect this test. Yep. Lakshmi, see above. -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Turn off pipe as well if all planes are off 2020-08-24 7:42 ` Petri Latvala @ 2020-08-24 8:18 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 9+ messages in thread From: Vudum, Lakshminarayana @ 2020-08-24 8:18 UTC (permalink / raw) To: Latvala, Petri, Michel Dänzer; +Cc: igt-dev@lists.freedesktop.org Re-reported. -----Original Message----- From: Latvala, Petri <petri.latvala@intel.com> Sent: Monday, August 24, 2020 12:42 AM To: Michel Dänzer <michel@daenzer.net>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms: Turn off pipe as well if all planes are off On Sat, Aug 22, 2020 at 11:08:15AM +0200, Michel Dänzer wrote: > On 2020-08-21 8:35 p.m., Patchwork wrote: > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4902_full: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@kms_big_fb@linear-32bpp-rotate-0: > > - shard-tglb: [PASS][1] -> [FAIL][2] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html > > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html > > This is a false positive, since my series doesn't affect this test. Yep. Lakshmi, see above. -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms: Turn off pipe as well if all planes are off 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer ` (3 preceding siblings ...) 2020-08-21 18:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-08-24 8:17 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2020-08-24 8:17 UTC (permalink / raw) To: Michel Dänzer; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 17899 bytes --] == Series Details == Series: tests/kms: Turn off pipe as well if all planes are off URL : https://patchwork.freedesktop.org/series/80904/ State : success == Summary == CI Bug Log - changes from CI_DRM_8913_full -> IGTPW_4902_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html Known issues ------------ Here are the changes found in IGTPW_4902_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_create@forked: - shard-glk: [PASS][1] -> [DMESG-WARN][2] ([i915#118] / [i915#95]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk5/igt@gem_exec_create@forked.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk6/igt@gem_exec_create@forked.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-hsw: [PASS][3] -> [TIMEOUT][4] ([i915#1958]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_reloc@basic-range-active: - shard-snb: [PASS][5] -> [TIMEOUT][6] ([i915#1958]) +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb4/igt@gem_exec_reloc@basic-range-active.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@gem_exec_reloc@basic-range-active.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][7] -> [DMESG-WARN][8] ([i915#1436] / [i915#1635] / [i915#716]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@gen9_exec_parse@allowed-all.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl8/igt@gen9_exec_parse@allowed-all.html * igt@i915_selftest@mock@contexts: - shard-apl: [PASS][9] -> [INCOMPLETE][10] ([i915#1635] / [i915#2278]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@i915_selftest@mock@contexts.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl4/igt@i915_selftest@mock@contexts.html * igt@kms_big_fb@linear-32bpp-rotate-0: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2384]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-glk: [PASS][13] -> [DMESG-FAIL][14] ([i915#118] / [i915#95]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk6/igt@kms_big_fb@linear-64bpp-rotate-180.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk8/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#1635] / [i915#54]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl8/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#54]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-glk: [PASS][19] -> [FAIL][20] ([i915#54]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1: - shard-hsw: [PASS][21] -> [DMESG-WARN][22] ([i915#1982]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw1/igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw8/igt@kms_flip@2x-nonexisting-fb@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#79]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2: - shard-glk: [PASS][25] -> [FAIL][26] ([i915#2122]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk9/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-tglb: [PASS][27] -> [DMESG-WARN][28] ([i915#1982]) +6 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-stridechange.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html * igt@prime_busy@after@vecs0: - shard-hsw: [PASS][33] -> [FAIL][34] ([i915#2258]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw8/igt@prime_busy@after@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@prime_busy@after@vecs0.html #### Possible fixes #### * {igt@feature_discovery@psr2}: - shard-iclb: [SKIP][35] ([i915#658]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb8/igt@feature_discovery@psr2.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_exec_balancer@nop: - shard-iclb: [INCOMPLETE][37] ([i915#2277]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@gem_exec_balancer@nop.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb3/igt@gem_exec_balancer@nop.html * igt@gem_exec_endless@dispatch@bcs0: - shard-tglb: [INCOMPLETE][39] ([i915#2270]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb8/igt@gem_exec_endless@dispatch@bcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_gttfill@engines@rcs0: - shard-hsw: [INCOMPLETE][41] ([i915#2378]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw7/igt@gem_exec_gttfill@engines@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@gem_exec_gttfill@engines@rcs0.html * {igt@gem_mmap_offset@blt-coherency}: - shard-apl: [FAIL][43] ([i915#1635]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl4/igt@gem_mmap_offset@blt-coherency.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl1/igt@gem_mmap_offset@blt-coherency.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-glk: [DMESG-FAIL][45] ([i915#118] / [i915#95]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk8/igt@kms_big_fb@linear-64bpp-rotate-0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk3/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-apl: [DMESG-WARN][47] ([i915#1635] / [i915#1982]) -> [PASS][48] +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl8/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-random: - shard-kbl: [FAIL][49] ([i915#54]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html - shard-apl: [FAIL][51] ([i915#1635] / [i915#54]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-128x128-random.html * igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen: - shard-hsw: [TIMEOUT][53] ([i915#1958]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw1/igt@kms_cursor_crc@pipe-a-cursor-64x21-onscreen.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-glk: [DMESG-WARN][55] ([i915#1982]) -> [PASS][56] +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-glk3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-glk7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [DMESG-WARN][57] ([i915#180]) -> [PASS][58] +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-tglb: [DMESG-WARN][59] ([i915#1982]) -> [PASS][60] +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-kbl: [DMESG-WARN][61] ([i915#1982]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_psr2_su@page_flip: - shard-tglb: [SKIP][63] ([i915#1911]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@kms_psr2_su@page_flip.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][65] ([fdo#109441]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_sequence@get-forked: - shard-hsw: [INCOMPLETE][67] ([CI#80]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw7/igt@kms_sequence@get-forked.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw7/igt@kms_sequence@get-forked.html * igt@kms_setmode@basic: - shard-kbl: [FAIL][69] ([i915#31]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl2/igt@kms_setmode@basic.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl4/igt@kms_setmode@basic.html * igt@perf@polling-parameterized: - shard-tglb: [FAIL][71] ([i915#1542]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-tglb1/igt@perf@polling-parameterized.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-tglb5/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_exec_reloc@basic-concurrent16: - shard-snb: [FAIL][73] ([i915#1930]) -> [TIMEOUT][74] ([i915#1958]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb2/igt@gem_exec_reloc@basic-concurrent16.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@gem_exec_reloc@basic-concurrent16.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][75] ([i915#588]) -> [SKIP][76] ([i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: [TIMEOUT][77] ([i915#1319] / [i915#1958]) -> [TIMEOUT][78] ([i915#1319]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-kbl7/igt@kms_content_protection@atomic-dpms.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_plane_cursor@pipe-c-viewport-size-128: - shard-snb: [SKIP][79] ([fdo#109271]) -> [TIMEOUT][80] ([i915#1958]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-snb2/igt@kms_plane_cursor@pipe-c-viewport-size-128.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-snb4/igt@kms_plane_cursor@pipe-c-viewport-size-128.html * igt@kms_vblank@pipe-d-accuracy-idle: - shard-hsw: [TIMEOUT][81] ([i915#1958]) -> [SKIP][82] ([fdo#109271]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8913/shard-hsw4/igt@kms_vblank@pipe-d-accuracy-idle.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/shard-hsw7/igt@kms_vblank@pipe-d-accuracy-idle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#1930]: https://gitlab.freedesktop.org/drm/intel/issues/1930 [i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2258]: https://gitlab.freedesktop.org/drm/intel/issues/2258 [i915#2270]: https://gitlab.freedesktop.org/drm/intel/issues/2270 [i915#2277]: https://gitlab.freedesktop.org/drm/intel/issues/2277 [i915#2278]: https://gitlab.freedesktop.org/drm/intel/issues/2278 [i915#2378]: https://gitlab.freedesktop.org/drm/intel/issues/2378 [i915#2384]: https://gitlab.freedesktop.org/drm/intel/issues/2384 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5770 -> IGTPW_4902 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8913: e18d8e120e73feaf39d84afe14f9a7f58b696785 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4902: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html IGT_5770: f1d0c240ea2e631dfb9f493f37f8fb61cb2b1cf2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4902/index.html [-- Attachment #1.2: Type: text/html, Size: 21439 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] 9+ messages in thread
end of thread, other threads:[~2020-08-24 8:18 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-08-21 16:39 [igt-dev] [PATCH 0/2] tests/kms: Turn off pipe as well if all planes are off Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 1/2] tests/kms_plane_multiple: " Michel Dänzer 2020-08-21 16:39 ` [igt-dev] [PATCH 2/2] tests/kms_atomic_transition: " Michel Dänzer 2020-08-21 17:16 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms: " Patchwork 2020-08-21 18:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-08-22 9:08 ` Michel Dänzer 2020-08-24 7:42 ` Petri Latvala 2020-08-24 8:18 ` Vudum, Lakshminarayana 2020-08-24 8:17 ` [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