* [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop
@ 2021-04-14 8:25 Juha-Pekka Heikkila
2021-04-14 8:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (8 more replies)
0 siblings, 9 replies; 13+ messages in thread
From: Juha-Pekka Heikkila @ 2021-04-14 8:25 UTC (permalink / raw)
To: igt-dev
Avoid creating full screen size fbs in a loop just to throw them
away.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_cursor_crc.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 2619e15e0..1463c5b3f 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -492,13 +492,6 @@ static void test_cursor_opaque(data_t *data)
test_cursor_alpha(data, 1.0);
}
-static void run_test(data_t *data, void (*testfunc)(data_t *), int cursor_w, int cursor_h)
-{
- prepare_crtc(data, data->output, cursor_w, cursor_h);
- testfunc(data);
- cleanup_crtc(data);
-}
-
static void create_cursor_fb(data_t *data, int cur_w, int cur_h)
{
cairo_t *cr;
@@ -567,6 +560,16 @@ static void require_cursor_size(data_t *data, int w, int h)
igt_skip_on_f(ret, "Cursor size %dx%d not supported by driver\n", w, h);
}
+static void run_test(data_t *data, void (*testfunc)(data_t *), int cursor_w, int cursor_h)
+{
+ if (data->fb.fb_id != 0)
+ require_cursor_size(data, cursor_w, cursor_h);
+
+ prepare_crtc(data, data->output, cursor_w, cursor_h);
+ testfunc(data);
+ cleanup_crtc(data);
+}
+
static void test_cursor_size(data_t *data)
{
igt_display_t *display = &data->display;
@@ -687,7 +690,6 @@ static void run_size_tests(data_t *data, enum pipe pipe,
w, h);
}
create_cursor_fb(data, w, h);
- require_cursor_size(data, w, h);
}
/* Using created cursor FBs to test cursor support */
--
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] 13+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila @ 2021-04-14 8:56 ` Patchwork 2021-04-14 10:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (7 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-14 8:56 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 1771 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : success == Summary == CI Bug Log - changes from CI_DRM_9967 -> IGTPW_5743 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html Known issues ------------ Here are the changes found in IGTPW_5743 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {fi-hsw-gt1}: [DMESG-WARN][1] ([i915#3303]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 Participating hosts (45 -> 40) ------------------------------ Missing (5): fi-ilk-m540 fi-bsw-cyan fi-dg1-1 fi-icl-y fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6064 -> IGTPW_5743 CI-20190529: 20190529 CI_DRM_9967: e9d6f14cc871b197c41abc1e781da8e364e27c21 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5743: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html IGT_6064: 48d89e2c65c54883b0776930a884e6d3bcefb45b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 2369 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] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila 2021-04-14 8:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2021-04-14 10:41 ` Patchwork 2021-04-15 7:49 ` Juha-Pekka Heikkila 2021-04-15 19:39 ` Patchwork ` (6 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2021-04-14 10:41 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30287 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@region: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html #### Warnings #### * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][4] ([i915#3319]) -> [SKIP][5] +13 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][6] ([i915#180]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][8] ([i915#180] / [i915#62]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][9] ([i915#2842]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][18] -> [FAIL][19] ([i915#2849]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][21] ([fdo#109283]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][22] ([i915#2389]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#307]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][27] ([i915#2658]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#768]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271]) +53 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][30] ([i915#3002]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1699]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][32] ([i915#3324]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][33] ([i915#3324]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][34] -> [DMESG-WARN][35] ([i915#180]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#112306]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#112306]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271]) +208 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][39] ([i915#180] / [i915#203] / [i915#62]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][40] -> [INCOMPLETE][41] ([i915#1185]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][42] -> [SKIP][43] ([fdo#109271]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111615]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#2705]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109284] / [fdo#111827]) +4 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +6 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +17 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +20 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +12 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][52] ([i915#1319]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][53] ([i915#3116]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3116]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][55] ([i915#1319]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109300] / [fdo#111066]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#3319]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109278]) +7 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][59] ([fdo#109271]) +363 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#109278]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#533]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][63] -> [FAIL][64] ([i915#52] / [i915#54]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109274]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][66] ([i915#180]) +9 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][67] ([i915#2641]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][68] ([i915#2587]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][69] ([i915#2628]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][70] ([i915#2641]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2672]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2642]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109280]) +10 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#111825]) +12 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][81] -> [DMESG-WARN][82] ([i915#62]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#2657]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +5 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][87] ([i915#658]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +7 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109642] / [fdo#111068] / [i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][90] -> [SKIP][91] ([fdo#109441]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][92] -> [DMESG-WARN][93] ([i915#180] / [i915#62]) +4 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][94] -> [FAIL][95] ([i915#43]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#2437]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][98] ([i915#2530]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][99] ([i915#2530]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][100] ([fdo#109271]) +192 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109291]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][102] ([fdo#109291]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][106] ([i915#3160]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][108] ([i915#3063]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][110] ([i915#2369] / [i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][112] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][118] ([i915#2842]) -> [PASS][119] +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][120] ([i915#118] / [i915#95]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][122] ([i915#1895]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][124] ([i915#155] / [i915#2405]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][126] ([i915#180]) -> [PASS][127] +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][128] ([i915#2574]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][130] ([i915#52] / [i915#54]) -> [PASS][131] +6 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][132] ([i915#79]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][134] ([i915#49]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][136] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][138] ([fdo#109441]) -> [PASS][139] +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][140] ([i915#2842]) -> [FAIL][141] ([i915#2852]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33703 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] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 10:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-04-15 7:49 ` Juha-Pekka Heikkila 2021-04-16 11:58 ` Saarinen, Jani 0 siblings, 1 reply; 13+ messages in thread From: Juha-Pekka Heikkila @ 2021-04-15 7:49 UTC (permalink / raw) To: igt-dev, Vudum, Lakshminarayana Hi Lakshmi, here would be again 'false positives'. I was patching kms_cursor_crc only and those skips on cursor tests are expected skips as not supported cursor size. /Juha-Pekka On 14.4.2021 13.41, Patchwork wrote: > *Patch Details* > *Series:* tests/kms_cursor_crc: Let's not create full screen > framebuffers in a loop > *URL:* https://patchwork.freedesktop.org/series/89063/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html > > > CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5743_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5743_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_5743/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5743_full: > > > IGT changes > > > Possible regressions > > * > > igt@i915_selftest@perf@region: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html> > +3 similar issues > * > > igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html> > > > Warnings > > * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: > o shard-tglb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > ([i915#3319]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > +13 similar issues > > > Known issues > > Here are the changes found in IGTPW_5743_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_isolation@preservation-s3@vecs0: > > o shard-apl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html> > ([i915#180]) > * > > igt@gem_ctx_persistence@clone: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html> > ([fdo#109271] / [i915#1099]) +5 similar issues > * > > igt@gem_ctx_ringsize@create: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html> > ([i915#180] / [i915#62]) > * > > igt@gem_exec_fair@basic-none@vcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html> > ([i915#2842]) +2 similar issues > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace@vcs1: > > o shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace@vecs0: > > o > > shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html> > ([i915#2842]) +1 similar issue > > o > > shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html> > ([i915#2842]) > > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) > * > > igt@gem_exec_params@no-blt: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html> > ([fdo#109283]) > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html> > ([fdo#109283]) > > * > > igt@gem_exec_reloc@basic-wide-active@rcs0: > > o shard-snb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> > ([i915#2389]) +2 similar issues > * > > igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > ([i915#307]) > * > > igt@gem_pread@exhaustion: > > o shard-snb: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html> > ([i915#2658]) > * > > igt@gem_pwrite@basic-exhaustion: > > o > > shard-kbl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > o > > shard-apl: NOTRUN -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html> > ([i915#2658]) > > * > > igt@gem_render_copy@linear-to-vebox-yf-tiled: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> > ([i915#768]) > * > > igt@gem_render_copy@y-tiled-to-vebox-x-tiled: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html> > ([fdo#109271]) +53 similar issues > * > > igt@gem_userptr_blits@input-checking: > > o shard-apl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html> > ([i915#3002]) > * > > igt@gem_userptr_blits@process-exit-mmap@wb: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html> > ([fdo#109271] / [i915#1699]) +3 similar issues > * > > igt@gem_userptr_blits@set-cache-level: > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html> > ([i915#3324]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html> > ([i915#3324]) > > * > > igt@gem_workarounds@suspend-resume: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html> > ([i915#180]) +1 similar issue > * > > igt@gen9_exec_parse@batch-zero-length: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html> > ([fdo#112306]) +1 similar issue > * > > igt@gen9_exec_parse@bb-secure: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html> > ([fdo#112306]) +1 similar issue > * > > igt@i915_hangman@engine-error@vecs0: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html> > ([fdo#109271]) +208 similar issues > * > > igt@i915_module_load@reload: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html> > ([i915#180] / [i915#203] / [i915#62]) > * > > igt@i915_suspend@debugfs-reader: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html> > ([i915#1185]) > * > > igt@kms_async_flips@test-time-stamp: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html> > ([fdo#109271]) +1 similar issue > * > > igt@kms_big_fb@yf-tiled-addfb: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html> > ([fdo#111615]) +1 similar issue > * > > igt@kms_big_joiner@invalid-modeset: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html> > ([fdo#109271] / [i915#2705]) > * > > igt@kms_chamelium@dp-frame-dump: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> > ([fdo#109284] / [fdo#111827]) +4 similar issues > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html> > ([fdo#109271] / [fdo#111827]) +6 similar issues > > * > > igt@kms_chamelium@dp-hpd-for-each-pipe: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html> > ([fdo#109271] / [fdo#111827]) +17 similar issues > * > > igt@kms_color_chamelium@pipe-a-ctm-0-25: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html> > ([fdo#109271] / [fdo#111827]) +20 similar issues > * > > igt@kms_color_chamelium@pipe-c-ctm-0-25: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> > ([fdo#109284] / [fdo#111827]) +4 similar issues > * > > igt@kms_color_chamelium@pipe-d-ctm-limited-range: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html> > ([fdo#109271] / [fdo#111827]) +12 similar issues > * > > igt@kms_content_protection@atomic-dpms: > > o shard-kbl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html> > ([i915#1319]) +2 similar issues > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html> > ([i915#3116]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html> > ([i915#3116]) > > * > > igt@kms_content_protection@lic: > > o shard-apl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html> > ([i915#1319]) > * > > igt@kms_content_protection@mei_interface: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html> > ([fdo#109300] / [fdo#111066]) > * > > igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html> > ([i915#3319]) +2 similar issues > * > > 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_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> > ([fdo#109278]) +7 similar issues > * > > igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html> > ([fdo#109271]) +363 similar issues > * > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> > ([fdo#109274] / [fdo#109278]) +1 similar issue > * > > igt@kms_cursor_legacy@pipe-d-torture-bo: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > ([fdo#109271] / [i915#533]) +3 similar issues > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > ([fdo#109271] / [i915#533]) +1 similar issue > > * > > igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > ([i915#52] / [i915#54]) > * > > igt@kms_flip@2x-modeset-vs-vblank-race: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html> > ([fdo#109274]) > * > > igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > ([i915#180]) +9 similar issues > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2641]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2587]) > > o > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2628]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2641]) > > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> > ([fdo#109271] / [i915#2672]) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) +1 similar issue > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html> > ([fdo#109280]) +10 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html> > ([fdo#111825]) +12 similar issues > * > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > ([fdo#109289]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > ([fdo#109289]) > > * > > igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html> > ([fdo#109271] / [i915#533]) +1 similar issue > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-basic: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> > ([fdo#108145] / [i915#265]) > * > > igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > > o shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> > ([fdo#108145] / [i915#265]) +3 similar issues > * > > igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> > ([fdo#108145] / [i915#265]) +2 similar issues > * > > igt@kms_plane_cursor@pipe-a-primary-size-128: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > ([i915#62]) +3 similar issues > * > > igt@kms_plane_cursor@pipe-a-primary-size-64: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > ([i915#2657]) > * > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +5 similar issues > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +2 similar issues > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > ([i915#658]) > > * > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html> > ([fdo#109271] / [i915#658]) +7 similar issues > * > > igt@kms_psr2_su@page_flip: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html> > ([fdo#109642] / [fdo#111068] / [i915#658]) > * > > igt@kms_psr@psr2_cursor_render: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html> > ([fdo#109441]) +2 similar issues > * > > igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > ([i915#180] / [i915#62]) +4 similar issues > * > > igt@kms_vblank@pipe-c-accuracy-idle: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html> > ([i915#43]) > * > > igt@kms_writeback@writeback-fb-id: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html> > ([fdo#109271] / [i915#2437]) > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html> > ([fdo#109271] / [i915#2437]) > * > > igt@nouveau_crc@pipe-a-source-rg: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html> > ([i915#2530]) +1 similar issue > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html> > ([i915#2530]) +1 similar issue > > * > > igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html> > ([fdo#109271]) +192 similar issues > * > > igt@prime_nv_pcopy@test3_3: > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html> > ([fdo#109291]) > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html> > ([fdo#109291]) > > * > > igt@sysfs_clients@recycle-many: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html> > ([fdo#109271] / [i915#2994]) +2 similar issues > * > > igt@sysfs_clients@sema-50: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html> > ([fdo#109271] / [i915#2994]) > * > > igt@sysfs_clients@split-50: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html> > ([fdo#109271] / [i915#2994]) +1 similar issue > > > Possible fixes > > * > > igt@gem_create@create-clear: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html> > ([i915#3160]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html> > * > > igt@gem_eio@in-flight-contexts-1us: > > o shard-tglb: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html> > ([i915#3063]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html> > * > > igt@gem_eio@unwedge-stress: > > o > > shard-tglb: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html> > ([i915#2369] / [i915#3063]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html> > > o > > shard-iclb: TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html> > ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html> > > * > > igt@gem_exec_fair@basic-none-rrul@rcs0: > > o shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > * > > igt@gem_exec_fair@basic-pace@vecs0: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html> > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> > +1 similar issue > * > > igt@gem_exec_whisper@basic-queues-forked-all: > > o shard-glk: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html> > ([i915#118] / [i915#95]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html> > * > > igt@gem_exec_whisper@basic-queues-priority: > > o shard-iclb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html> > ([i915#1895]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html> > * > > igt@gem_workarounds@suspend-resume-fd: > > o shard-kbl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html> > ([i915#155] / [i915#2405]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html> > * > > igt@i915_suspend@debugfs-reader: > > o shard-kbl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html> > ([i915#180]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html> > +2 similar issues > * > > igt@kms_async_flips@test-time-stamp: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html> > ([i915#2574]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html> > * > > igt@kms_draw_crc@draw-method-rgb565-render-ytiled: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > ([i915#52] / [i915#54]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > +6 similar issues > * > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: > > o shard-tglb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > ([i915#79]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> > ([i915#49]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> > * > > igt@kms_psr2_su@frontbuffer: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html> > ([fdo#109642] / [fdo#111068] / [i915#658]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html> > * > > igt@kms_psr@psr2_basic: > > o shard-iclb: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html> > ([fdo#109441]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html> > +2 similar issues > > > Warnings > > * igt@gem_exec_fair@basic-none-rrul@rcs0: > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > ([i915#2842]) -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > ([i915#2852]) > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-15 7:49 ` Juha-Pekka Heikkila @ 2021-04-16 11:58 ` Saarinen, Jani 2021-04-16 16:35 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 13+ messages in thread From: Saarinen, Jani @ 2021-04-16 11:58 UTC (permalink / raw) To: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha-Pekka > Heikkila > Sent: torstai 15. huhtikuuta 2021 10.50 > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create > full screen framebuffers in a loop > > Hi Lakshmi, > > here would be again 'false positives'. I was patching kms_cursor_crc only and those > skips on cursor tests are expected skips as not supported cursor size. > > /Juha-Pekka > > On 14.4.2021 13.41, Patchwork wrote: > > *Patch Details* > > *Series:* tests/kms_cursor_crc: Let's not create full screen > > framebuffers in a loop > > *URL:* https://patchwork.freedesktop.org/series/89063/ > > *State:* failure > > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html > > > > > > CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full > > > > > > Summary > > > > *FAILURE* > > > > Serious unknown changes coming with IGTPW_5743_full absolutely need to > > be verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_5743_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_5743/index.html > > > > > > Possible new issues > > > > Here are the unknown changes that may have been introduced in > > IGTPW_5743_full: > > > > > > IGT changes > > > > > > Possible regressions > > > > * > > > > igt@i915_selftest@perf@region: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@i915_selftest@perf@region.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@i915_selftest@perf@region.html> > > +3 similar issues > > * > > > > igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: > > > > o shard-tglb: NOTRUN -> SKIP > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@k > > ms_cursor_crc@pipe-b-cursor-32x10-offscreen.html> > This https://gitlab.freedesktop.org/drm/intel/-/issues/3319 > > > > > Warnings > > > > * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: > > o shard-tglb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > > ([i915#3319]) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > > +13 similar issues Same on these: https://gitlab.freedesktop.org/drm/intel/-/issues/3319 > > > > > > Known issues > > > > Here are the changes found in IGTPW_5743_full that come from known issues: > > > > > > IGT changes > > > > > > Issues hit > > > > * > > > > igt@gem_ctx_isolation@preservation-s3@vecs0: > > > > o shard-apl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html> > > ([i915#180]) > > * > > > > igt@gem_ctx_persistence@clone: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@gem_ctx_persistence@clone.html> > > ([fdo#109271] / [i915#1099]) +5 similar issues > > * > > > > igt@gem_ctx_ringsize@create: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_ctx_ringsize@create.html> > > ([i915#180] / [i915#62]) > > * > > > > igt@gem_exec_fair@basic-none@vcs0: > > > > o shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_exec_fair@basic-none@vcs0.html> > > ([i915#2842]) +2 similar issues > > * > > > > igt@gem_exec_fair@basic-pace-share@rcs0: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html> > > ([i915#2842]) > > * > > > > igt@gem_exec_fair@basic-pace@vcs1: > > > > o shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_exec_fair@basic-pace@vcs1.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@gem_exec_fair@basic-pace@vcs1.html> > > ([i915#2842]) > > * > > > > igt@gem_exec_fair@basic-pace@vecs0: > > > > o > > > > shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) +1 similar issue > > > > o > > > > shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@gem_exec_fair@basic-pace@vecs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) > > > > * > > > > igt@gem_exec_fair@basic-throttle@rcs0: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html> > > ([i915#2849]) > > * > > > > igt@gem_exec_params@no-blt: > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@gem_exec_params@no-blt.html> > > ([fdo#109283]) > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@gem_exec_params@no-blt.html> > > ([fdo#109283]) > > > > * > > > > igt@gem_exec_reloc@basic-wide-active@rcs0: > > > > o shard-snb: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> > > ([i915#2389]) +2 similar issues > > * > > > > igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > > ([i915#307]) > > * > > > > igt@gem_pread@exhaustion: > > > > o shard-snb: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@gem_pread@exhaustion.html> > > ([i915#2658]) > > * > > > > igt@gem_pwrite@basic-exhaustion: > > > > o > > > > shard-kbl: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_pwrite@basic-exhaustion.html> > > ([i915#2658]) > > > > o > > > > shard-apl: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl1/igt@gem_pwrite@basic-exhaustion.html> > > ([i915#2658]) > > > > * > > > > igt@gem_render_copy@linear-to-vebox-yf-tiled: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> > > ([i915#768]) > > * > > > > igt@gem_render_copy@y-tiled-to-vebox-x-tiled: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html> > > ([fdo#109271]) +53 similar issues > > * > > > > igt@gem_userptr_blits@input-checking: > > > > o shard-apl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@gem_userptr_blits@input-checking.html> > > ([i915#3002]) > > * > > > > igt@gem_userptr_blits@process-exit-mmap@wb: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html> > > ([fdo#109271] / [i915#1699]) +3 similar issues > > * > > > > igt@gem_userptr_blits@set-cache-level: > > > > o > > > > shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@gem_userptr_blits@set-cache-level.html> > > ([i915#3324]) > > > > o > > > > shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@gem_userptr_blits@set-cache-level.html> > > ([i915#3324]) > > > > * > > > > igt@gem_workarounds@suspend-resume: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@gem_workarounds@suspend-resume.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_workarounds@suspend-resume.html> > > ([i915#180]) +1 similar issue > > * > > > > igt@gen9_exec_parse@batch-zero-length: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gen9_exec_parse@batch-zero-length.html> > > ([fdo#112306]) +1 similar issue > > * > > > > igt@gen9_exec_parse@bb-secure: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@gen9_exec_parse@bb-secure.html> > > ([fdo#112306]) +1 similar issue > > * > > > > igt@i915_hangman@engine-error@vecs0: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@i915_hangman@engine-error@vecs0.html> > > ([fdo#109271]) +208 similar issues > > * > > > > igt@i915_module_load@reload: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@i915_module_load@reload.html> > > ([i915#180] / [i915#203] / [i915#62]) > > * > > > > igt@i915_suspend@debugfs-reader: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb4/igt@i915_suspend@debugfs-reader.html> > > -> INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@i915_suspend@debugfs-reader.html> > > ([i915#1185]) > > * > > > > igt@kms_async_flips@test-time-stamp: > > > > o shard-snb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > snb7/igt@kms_async_flips@test-time-stamp.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@kms_async_flips@test-time-stamp.html> > > ([fdo#109271]) +1 similar issue > > * > > > > igt@kms_big_fb@yf-tiled-addfb: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@kms_big_fb@yf-tiled-addfb.html> > > ([fdo#111615]) +1 similar issue > > * > > > > igt@kms_big_joiner@invalid-modeset: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl3/igt@kms_big_joiner@invalid-modeset.html> > > ([fdo#109271] / [i915#2705]) > > * > > > > igt@kms_chamelium@dp-frame-dump: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@kms_chamelium@dp-frame-dump.html> > > ([fdo#109284] / [fdo#111827]) +4 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@kms_chamelium@dp-frame-dump.html> > > ([fdo#109271] / [fdo#111827]) +6 similar issues > > > > * > > > > igt@kms_chamelium@dp-hpd-for-each-pipe: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html> > > ([fdo#109271] / [fdo#111827]) +17 similar issues > > * > > > > igt@kms_color_chamelium@pipe-a-ctm-0-25: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html> > > ([fdo#109271] / [fdo#111827]) +20 similar issues > > * > > > > igt@kms_color_chamelium@pipe-c-ctm-0-25: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> > > ([fdo#109284] / [fdo#111827]) +4 similar issues > > * > > > > igt@kms_color_chamelium@pipe-d-ctm-limited-range: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html> > > ([fdo#109271] / [fdo#111827]) +12 similar issues > > * > > > > igt@kms_content_protection@atomic-dpms: > > > > o shard-kbl: NOTRUN -> TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_content_protection@atomic-dpms.html> > > ([i915#1319]) +2 similar issues > > * > > > > igt@kms_content_protection@dp-mst-lic-type-1: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html> > > ([i915#3116]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html> > > ([i915#3116]) > > > > * > > > > igt@kms_content_protection@lic: > > > > o shard-apl: NOTRUN -> TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_content_protection@lic.html> > > ([i915#1319]) > > * > > > > igt@kms_content_protection@mei_interface: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@kms_content_protection@mei_interface.html> > > ([fdo#109300] / [fdo#111066]) > > * > > > > igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html> > > ([i915#3319]) +2 similar issues > > * > > > > 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_5743/shard- > iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> > > ([fdo#109278]) +7 similar issues > > * > > > > igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html> > > ([fdo#109271]) +363 similar issues > > * > > > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> > > ([fdo#109274] / [fdo#109278]) +1 similar issue > > * > > > > igt@kms_cursor_legacy@pipe-d-torture-bo: > > > > o > > > > shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > > ([fdo#109271] / [i915#533]) +3 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > > ([fdo#109271] / [i915#533]) +1 similar issue > > > > * > > > > igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > > ([i915#52] / [i915#54]) > > * > > > > igt@kms_flip@2x-modeset-vs-vblank-race: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html> > > ([fdo#109274]) > > * > > > > igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > > ([i915#180]) +9 similar issues > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: > > > > o > > > > shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2641]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2587]) > > > > o > > > > shard-glk: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2628]) > > > > o > > > > shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2641]) > > > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> > > ([fdo#109271] / [i915#2672]) > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > > ([fdo#109271] / [i915#2642]) +1 similar issue > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html> > > ([fdo#109280]) +10 similar issues > > * > > > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html> > > ([fdo#111825]) +12 similar issues > > * > > > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > > ([fdo#109289]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > > ([fdo#109289]) > > > > * > > > > igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html> > > ([fdo#109271] / [i915#533]) +1 similar issue > > * > > > > igt@kms_plane_alpha_blend@pipe-b-alpha-basic: > > > > o shard-glk: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> > > ([fdo#108145] / [i915#265]) > > * > > > > igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > > > > o shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> > > ([fdo#108145] / [i915#265]) +3 similar issues > > * > > > > igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > > > > o shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> > > ([fdo#108145] / [i915#265]) +2 similar issues > > * > > > > igt@kms_plane_cursor@pipe-a-primary-size-128: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > > ([i915#62]) +3 similar issues > > * > > > > igt@kms_plane_cursor@pipe-a-primary-size-64: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > > ([i915#2657]) > > * > > > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: > > > > o > > > > shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([fdo#109271] / [i915#658]) +5 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([fdo#109271] / [i915#658]) +2 similar issues > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([i915#658]) > > > > * > > > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html> > > ([fdo#109271] / [i915#658]) +7 similar issues > > * > > > > igt@kms_psr2_su@page_flip: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb1/igt@kms_psr2_su@page_flip.html> > > ([fdo#109642] / [fdo#111068] / [i915#658]) > > * > > > > igt@kms_psr@psr2_cursor_render: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb2/igt@kms_psr@psr2_cursor_render.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@kms_psr@psr2_cursor_render.html> > > ([fdo#109441]) +2 similar issues > > * > > > > igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > > ([i915#180] / [i915#62]) +4 similar issues > > * > > > > igt@kms_vblank@pipe-c-accuracy-idle: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk9/igt@kms_vblank@pipe-c-accuracy-idle.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk7/igt@kms_vblank@pipe-c-accuracy-idle.html> > > ([i915#43]) > > * > > > > igt@kms_writeback@writeback-fb-id: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_writeback@writeback-fb-id.html> > > ([fdo#109271] / [i915#2437]) > > * > > > > igt@kms_writeback@writeback-pixel-formats: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_writeback@writeback-pixel-formats.html> > > ([fdo#109271] / [i915#2437]) > > * > > > > igt@nouveau_crc@pipe-a-source-rg: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb4/igt@nouveau_crc@pipe-a-source-rg.html> > > ([i915#2530]) +1 similar issue > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb2/igt@nouveau_crc@pipe-a-source-rg.html> > > ([i915#2530]) +1 similar issue > > > > * > > > > igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html> > > ([fdo#109271]) +192 similar issues > > * > > > > igt@prime_nv_pcopy@test3_3: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@prime_nv_pcopy@test3_3.html> > > ([fdo#109291]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb2/igt@prime_nv_pcopy@test3_3.html> > > ([fdo#109291]) > > > > * > > > > igt@sysfs_clients@recycle-many: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@sysfs_clients@recycle-many.html> > > ([fdo#109271] / [i915#2994]) +2 similar issues > > * > > > > igt@sysfs_clients@sema-50: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@sysfs_clients@sema-50.html> > > ([fdo#109271] / [i915#2994]) > > * > > > > igt@sysfs_clients@split-50: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@sysfs_clients@split-50.html> > > ([fdo#109271] / [i915#2994]) +1 similar issue > > > > > > Possible fixes > > > > * > > > > igt@gem_create@create-clear: > > > > o shard-iclb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb7/igt@gem_create@create-clear.html> > > ([i915#3160]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@gem_create@create-clear.html> > > * > > > > igt@gem_eio@in-flight-contexts-1us: > > > > o shard-tglb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb8/igt@gem_eio@in-flight-contexts-1us.html> > > ([i915#3063]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@gem_eio@in-flight-contexts-1us.html> > > * > > > > igt@gem_eio@unwedge-stress: > > > > o > > > > shard-tglb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_eio@unwedge-stress.html> > > ([i915#2369] / [i915#3063]) -> PASS > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@g > > em_eio@unwedge-stress.html> > > > > o > > > > shard-iclb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@gem_eio@unwedge-stress.html> > > ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@g > > em_eio@unwedge-stress.html> > > > > * > > > > igt@gem_exec_fair@basic-none-rrul@rcs0: > > > > o shard-kbl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > * > > > > igt@gem_exec_fair@basic-pace@vecs0: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@gem_exec_fair@basic-pace@vecs0.html> > > * > > > > igt@gem_exec_fair@basic-throttle@rcs0: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk8/igt@gem_exec_fair@basic-throttle@rcs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> > > +1 similar issue > > * > > > > igt@gem_exec_whisper@basic-queues-forked-all: > > > > o shard-glk: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk2/igt@gem_exec_whisper@basic-queues-forked-all.html> > > ([i915#118] / [i915#95]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_exec_whisper@basic-queues-forked-all.html> > > * > > > > igt@gem_exec_whisper@basic-queues-priority: > > > > o shard-iclb: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb7/igt@gem_exec_whisper@basic-queues-priority.html> > > ([i915#1895]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@gem_exec_whisper@basic-queues-priority.html> > > * > > > > igt@gem_workarounds@suspend-resume-fd: > > > > o shard-kbl: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@gem_workarounds@suspend-resume-fd.html> > > ([i915#155] / [i915#2405]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl2/igt@gem_workarounds@suspend-resume-fd.html> > > * > > > > igt@i915_suspend@debugfs-reader: > > > > o shard-kbl: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl2/igt@i915_suspend@debugfs-reader.html> > > ([i915#180]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@i915_suspend@debugfs-reader.html> > > +2 similar issues > > * > > > > igt@kms_async_flips@test-time-stamp: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb3/igt@kms_async_flips@test-time-stamp.html> > > ([i915#2574]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb3/igt@kms_async_flips@test-time-stamp.html> > > * > > > > igt@kms_draw_crc@draw-method-rgb565-render-ytiled: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > > ([i915#52] / [i915#54]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > > +6 similar issues > > * > > > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > > ([i915#79]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > > * > > > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap- > gtt.html> > > ([i915#49]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap- > gtt.html> > > * > > > > igt@kms_psr2_su@frontbuffer: > > > > o shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@kms_psr2_su@frontbuffer.html> > > ([fdo#109642] / [fdo#111068] / [i915#658]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@kms_psr2_su@frontbuffer.html> > > * > > > > igt@kms_psr@psr2_basic: > > > > o shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb3/igt@kms_psr@psr2_basic.html> > > ([fdo#109441]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@kms_psr@psr2_basic.html> > > +2 similar issues > > > > > > Warnings > > > > * igt@gem_exec_fair@basic-none-rrul@rcs0: > > o shard-iclb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2842]) -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2852]) > > > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-16 11:58 ` Saarinen, Jani @ 2021-04-16 16:35 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 13+ messages in thread From: Vudum, Lakshminarayana @ 2021-04-16 16:35 UTC (permalink / raw) To: Saarinen, Jani, juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org Re-reported. -----Original Message----- From: Saarinen, Jani <jani.saarinen@intel.com> Sent: Friday, April 16, 2021 4:58 AM To: juhapekka.heikkila@gmail.com; igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: RE: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Juha-Pekka Heikkila > Sent: torstai 15. huhtikuuta 2021 10.50 > To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana > <lakshminarayana.vudum@intel.com> > Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: > Let's not create full screen framebuffers in a loop > > Hi Lakshmi, > > here would be again 'false positives'. I was patching kms_cursor_crc > only and those skips on cursor tests are expected skips as not supported cursor size. > > /Juha-Pekka > > On 14.4.2021 13.41, Patchwork wrote: > > *Patch Details* > > *Series:* tests/kms_cursor_crc: Let's not create full screen > > framebuffers in a loop > > *URL:* https://patchwork.freedesktop.org/series/89063/ > > *State:* failure > > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html > > > > > > CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full > > > > > > Summary > > > > *FAILURE* > > > > Serious unknown changes coming with IGTPW_5743_full absolutely need > > to be verified manually. > > > > If you think the reported changes have nothing to do with the > > changes introduced in IGTPW_5743_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_5743/index.html > > > > > > Possible new issues > > > > Here are the unknown changes that may have been introduced in > > IGTPW_5743_full: > > > > > > IGT changes > > > > > > Possible regressions > > > > * > > > > igt@i915_selftest@perf@region: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@i915_selftest@perf@region.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@i915_selftest@perf@region.html> > > +3 similar issues > > * > > > > igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: > > > > o shard-tglb: NOTRUN -> SKIP > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt > > @k ms_cursor_crc@pipe-b-cursor-32x10-offscreen.html> > This https://gitlab.freedesktop.org/drm/intel/-/issues/3319 > > > > > Warnings > > > > * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: > > o shard-tglb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > > ([i915#3319]) -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html> > > +13 similar issues Same on these: https://gitlab.freedesktop.org/drm/intel/-/issues/3319 > > > > > > Known issues > > > > Here are the changes found in IGTPW_5743_full that come from known issues: > > > > > > IGT changes > > > > > > Issues hit > > > > * > > > > igt@gem_ctx_isolation@preservation-s3@vecs0: > > > > o shard-apl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html> > > ([i915#180]) > > * > > > > igt@gem_ctx_persistence@clone: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@gem_ctx_persistence@clone.html> > > ([fdo#109271] / [i915#1099]) +5 similar issues > > * > > > > igt@gem_ctx_ringsize@create: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_ctx_ringsize@create.html> > > ([i915#180] / [i915#62]) > > * > > > > igt@gem_exec_fair@basic-none@vcs0: > > > > o shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_exec_fair@basic-none@vcs0.html> > > ([i915#2842]) +2 similar issues > > * > > > > igt@gem_exec_fair@basic-pace-share@rcs0: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html> > > ([i915#2842]) > > * > > > > igt@gem_exec_fair@basic-pace@vcs1: > > > > o shard-tglb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_exec_fair@basic-pace@vcs1.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@gem_exec_fair@basic-pace@vcs1.html> > > ([i915#2842]) > > * > > > > igt@gem_exec_fair@basic-pace@vecs0: > > > > o > > > > shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) +1 similar issue > > > > o > > > > shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@gem_exec_fair@basic-pace@vecs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) > > > > * > > > > igt@gem_exec_fair@basic-throttle@rcs0: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html> > > ([i915#2849]) > > * > > > > igt@gem_exec_params@no-blt: > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@gem_exec_params@no-blt.html> > > ([fdo#109283]) > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@gem_exec_params@no-blt.html> > > ([fdo#109283]) > > > > * > > > > igt@gem_exec_reloc@basic-wide-active@rcs0: > > > > o shard-snb: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html> > > ([i915#2389]) +2 similar issues > > * > > > > igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> > > ([i915#307]) > > * > > > > igt@gem_pread@exhaustion: > > > > o shard-snb: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@gem_pread@exhaustion.html> > > ([i915#2658]) > > * > > > > igt@gem_pwrite@basic-exhaustion: > > > > o > > > > shard-kbl: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_pwrite@basic-exhaustion.html> > > ([i915#2658]) > > > > o > > > > shard-apl: NOTRUN -> WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl1/igt@gem_pwrite@basic-exhaustion.html> > > ([i915#2658]) > > > > * > > > > igt@gem_render_copy@linear-to-vebox-yf-tiled: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html> > > ([i915#768]) > > * > > > > igt@gem_render_copy@y-tiled-to-vebox-x-tiled: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html> > > ([fdo#109271]) +53 similar issues > > * > > > > igt@gem_userptr_blits@input-checking: > > > > o shard-apl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@gem_userptr_blits@input-checking.html> > > ([i915#3002]) > > * > > > > igt@gem_userptr_blits@process-exit-mmap@wb: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html> > > ([fdo#109271] / [i915#1699]) +3 similar issues > > * > > > > igt@gem_userptr_blits@set-cache-level: > > > > o > > > > shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@gem_userptr_blits@set-cache-level.html> > > ([i915#3324]) > > > > o > > > > shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@gem_userptr_blits@set-cache-level.html> > > ([i915#3324]) > > > > * > > > > igt@gem_workarounds@suspend-resume: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@gem_workarounds@suspend-resume.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@gem_workarounds@suspend-resume.html> > > ([i915#180]) +1 similar issue > > * > > > > igt@gen9_exec_parse@batch-zero-length: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gen9_exec_parse@batch-zero-length.html> > > ([fdo#112306]) +1 similar issue > > * > > > > igt@gen9_exec_parse@bb-secure: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@gen9_exec_parse@bb-secure.html> > > ([fdo#112306]) +1 similar issue > > * > > > > igt@i915_hangman@engine-error@vecs0: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@i915_hangman@engine-error@vecs0.html> > > ([fdo#109271]) +208 similar issues > > * > > > > igt@i915_module_load@reload: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@i915_module_load@reload.html> > > ([i915#180] / [i915#203] / [i915#62]) > > * > > > > igt@i915_suspend@debugfs-reader: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb4/igt@i915_suspend@debugfs-reader.html> > > -> INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@i915_suspend@debugfs-reader.html> > > ([i915#1185]) > > * > > > > igt@kms_async_flips@test-time-stamp: > > > > o shard-snb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > snb7/igt@kms_async_flips@test-time-stamp.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb2/igt@kms_async_flips@test-time-stamp.html> > > ([fdo#109271]) +1 similar issue > > * > > > > igt@kms_big_fb@yf-tiled-addfb: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@kms_big_fb@yf-tiled-addfb.html> > > ([fdo#111615]) +1 similar issue > > * > > > > igt@kms_big_joiner@invalid-modeset: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl3/igt@kms_big_joiner@invalid-modeset.html> > > ([fdo#109271] / [i915#2705]) > > * > > > > igt@kms_chamelium@dp-frame-dump: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@kms_chamelium@dp-frame-dump.html> > > ([fdo#109284] / [fdo#111827]) +4 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@kms_chamelium@dp-frame-dump.html> > > ([fdo#109271] / [fdo#111827]) +6 similar issues > > > > * > > > > igt@kms_chamelium@dp-hpd-for-each-pipe: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html> > > ([fdo#109271] / [fdo#111827]) +17 similar issues > > * > > > > igt@kms_color_chamelium@pipe-a-ctm-0-25: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html> > > ([fdo#109271] / [fdo#111827]) +20 similar issues > > * > > > > igt@kms_color_chamelium@pipe-c-ctm-0-25: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> > > ([fdo#109284] / [fdo#111827]) +4 similar issues > > * > > > > igt@kms_color_chamelium@pipe-d-ctm-limited-range: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html> > > ([fdo#109271] / [fdo#111827]) +12 similar issues > > * > > > > igt@kms_content_protection@atomic-dpms: > > > > o shard-kbl: NOTRUN -> TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_content_protection@atomic-dpms.html> > > ([i915#1319]) +2 similar issues > > * > > > > igt@kms_content_protection@dp-mst-lic-type-1: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html> > > ([i915#3116]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html> > > ([i915#3116]) > > > > * > > > > igt@kms_content_protection@lic: > > > > o shard-apl: NOTRUN -> TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_content_protection@lic.html> > > ([i915#1319]) > > * > > > > igt@kms_content_protection@mei_interface: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@kms_content_protection@mei_interface.html> > > ([fdo#109300] / [fdo#111066]) > > * > > > > igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html> > > ([i915#3319]) +2 similar issues > > * > > > > 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_5743/shard- > iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html> > > ([fdo#109278]) +7 similar issues > > * > > > > igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: > > > > o shard-snb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html> > > ([fdo#109271]) +363 similar issues > > * > > > > igt@kms_cursor_legacy@cursora-vs-flipb-toggle: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html> > > ([fdo#109274] / [fdo#109278]) +1 similar issue > > * > > > > igt@kms_cursor_legacy@pipe-d-torture-bo: > > > > o > > > > shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > > ([fdo#109271] / [i915#533]) +3 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > > ([fdo#109271] / [i915#533]) +1 similar issue > > > > * > > > > igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html> > > ([i915#52] / [i915#54]) > > * > > > > igt@kms_flip@2x-modeset-vs-vblank-race: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html> > > ([fdo#109274]) > > * > > > > igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: > > > > o shard-kbl: NOTRUN -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> > > ([i915#180]) +9 similar issues > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: > > > > o > > > > shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2641]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2587]) > > > > o > > > > shard-glk: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2628]) > > > > o > > > > shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > > ([i915#2641]) > > > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs > .html> > > ([fdo#109271] / [i915#2672]) > > * > > > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > > ([fdo#109271] / [i915#2642]) +1 similar issue > > * > > > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.h > tml> > > ([fdo#109280]) +10 similar issues > > * > > > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: > > > > o shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.ht > ml> > > ([fdo#111825]) +12 similar issues > > * > > > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > > ([fdo#109289]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > > ([fdo#109289]) > > > > * > > > > igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html> > > ([fdo#109271] / [i915#533]) +1 similar issue > > * > > > > igt@kms_plane_alpha_blend@pipe-b-alpha-basic: > > > > o shard-glk: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> > > ([fdo#108145] / [i915#265]) > > * > > > > igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > > > > o shard-apl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> > > ([fdo#108145] / [i915#265]) +3 similar issues > > * > > > > igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > > > > o shard-kbl: NOTRUN -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> > > ([fdo#108145] / [i915#265]) +2 similar issues > > * > > > > igt@kms_plane_cursor@pipe-a-primary-size-128: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html> > > ([i915#62]) +3 similar issues > > * > > > > igt@kms_plane_cursor@pipe-a-primary-size-64: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html> > > ([i915#2657]) > > * > > > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: > > > > o > > > > shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([fdo#109271] / [i915#658]) +5 similar issues > > > > o > > > > shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([fdo#109271] / [i915#658]) +2 similar issues > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html> > > ([i915#658]) > > > > * > > > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html> > > ([fdo#109271] / [i915#658]) +7 similar issues > > * > > > > igt@kms_psr2_su@page_flip: > > > > o shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb1/igt@kms_psr2_su@page_flip.html> > > ([fdo#109642] / [fdo#111068] / [i915#658]) > > * > > > > igt@kms_psr@psr2_cursor_render: > > > > o shard-iclb: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb2/igt@kms_psr@psr2_cursor_render.html> > > -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@kms_psr@psr2_cursor_render.html> > > ([fdo#109441]) +2 similar issues > > * > > > > igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: > > > > o shard-kbl: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > > -> DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html> > > ([i915#180] / [i915#62]) +4 similar issues > > * > > > > igt@kms_vblank@pipe-c-accuracy-idle: > > > > o shard-glk: PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk9/igt@kms_vblank@pipe-c-accuracy-idle.html> > > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk7/igt@kms_vblank@pipe-c-accuracy-idle.html> > > ([i915#43]) > > * > > > > igt@kms_writeback@writeback-fb-id: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl1/igt@kms_writeback@writeback-fb-id.html> > > ([fdo#109271] / [i915#2437]) > > * > > > > igt@kms_writeback@writeback-pixel-formats: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@kms_writeback@writeback-pixel-formats.html> > > ([fdo#109271] / [i915#2437]) > > * > > > > igt@nouveau_crc@pipe-a-source-rg: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb4/igt@nouveau_crc@pipe-a-source-rg.html> > > ([i915#2530]) +1 similar issue > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb2/igt@nouveau_crc@pipe-a-source-rg.html> > > ([i915#2530]) +1 similar issue > > > > * > > > > igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html> > > ([fdo#109271]) +192 similar issues > > * > > > > igt@prime_nv_pcopy@test3_3: > > > > o > > > > shard-iclb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb8/igt@prime_nv_pcopy@test3_3.html> > > ([fdo#109291]) > > > > o > > > > shard-tglb: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb2/igt@prime_nv_pcopy@test3_3.html> > > ([fdo#109291]) > > > > * > > > > igt@sysfs_clients@recycle-many: > > > > o shard-apl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > apl7/igt@sysfs_clients@recycle-many.html> > > ([fdo#109271] / [i915#2994]) +2 similar issues > > * > > > > igt@sysfs_clients@sema-50: > > > > o shard-glk: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk3/igt@sysfs_clients@sema-50.html> > > ([fdo#109271] / [i915#2994]) > > * > > > > igt@sysfs_clients@split-50: > > > > o shard-kbl: NOTRUN -> SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@sysfs_clients@split-50.html> > > ([fdo#109271] / [i915#2994]) +1 similar issue > > > > > > Possible fixes > > > > * > > > > igt@gem_create@create-clear: > > > > o shard-iclb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb7/igt@gem_create@create-clear.html> > > ([i915#3160]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb6/igt@gem_create@create-clear.html> > > * > > > > igt@gem_eio@in-flight-contexts-1us: > > > > o shard-tglb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb8/igt@gem_eio@in-flight-contexts-1us.html> > > ([i915#3063]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb1/igt@gem_eio@in-flight-contexts-1us.html> > > * > > > > igt@gem_eio@unwedge-stress: > > > > o > > > > shard-tglb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_eio@unwedge-stress.html> > > ([i915#2369] / [i915#3063]) -> PASS > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt > > @g > > em_eio@unwedge-stress.html> > > > > o > > > > shard-iclb: TIMEOUT > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@gem_eio@unwedge-stress.html> > > ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS > > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt > > @g > > em_eio@unwedge-stress.html> > > > > * > > > > igt@gem_exec_fair@basic-none-rrul@rcs0: > > > > o shard-kbl: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > * > > > > igt@gem_exec_fair@basic-pace@vecs0: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb5/igt@gem_exec_fair@basic-pace@vecs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@gem_exec_fair@basic-pace@vecs0.html> > > * > > > > igt@gem_exec_fair@basic-throttle@rcs0: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk8/igt@gem_exec_fair@basic-throttle@rcs0.html> > > ([i915#2842]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> > > +1 similar issue > > * > > > > igt@gem_exec_whisper@basic-queues-forked-all: > > > > o shard-glk: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk2/igt@gem_exec_whisper@basic-queues-forked-all.html> > > ([i915#118] / [i915#95]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk9/igt@gem_exec_whisper@basic-queues-forked-all.html> > > * > > > > igt@gem_exec_whisper@basic-queues-priority: > > > > o shard-iclb: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb7/igt@gem_exec_whisper@basic-queues-priority.html> > > ([i915#1895]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb3/igt@gem_exec_whisper@basic-queues-priority.html> > > * > > > > igt@gem_workarounds@suspend-resume-fd: > > > > o shard-kbl: INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl4/igt@gem_workarounds@suspend-resume-fd.html> > > ([i915#155] / [i915#2405]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl2/igt@gem_workarounds@suspend-resume-fd.html> > > * > > > > igt@i915_suspend@debugfs-reader: > > > > o shard-kbl: DMESG-WARN > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > kbl2/igt@i915_suspend@debugfs-reader.html> > > ([i915#180]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > kbl4/igt@i915_suspend@debugfs-reader.html> > > +2 similar issues > > * > > > > igt@kms_async_flips@test-time-stamp: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb3/igt@kms_async_flips@test-time-stamp.html> > > ([i915#2574]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb3/igt@kms_async_flips@test-time-stamp.html> > > * > > > > igt@kms_draw_crc@draw-method-rgb565-render-ytiled: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > > ([i915#52] / [i915#54]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html> > > +6 similar issues > > * > > > > igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: > > > > o shard-tglb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > > ([i915#79]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html> > > * > > > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > > > o shard-glk: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap- > gtt.html> > > ([i915#49]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap- > gtt.html> > > * > > > > igt@kms_psr2_su@frontbuffer: > > > > o shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb8/igt@kms_psr2_su@frontbuffer.html> > > ([fdo#109642] / [fdo#111068] / [i915#658]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@kms_psr2_su@frontbuffer.html> > > * > > > > igt@kms_psr@psr2_basic: > > > > o shard-iclb: SKIP > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb3/igt@kms_psr@psr2_basic.html> > > ([fdo#109441]) -> PASS > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@kms_psr@psr2_basic.html> > > +2 similar issues > > > > > > Warnings > > > > * igt@gem_exec_fair@basic-none-rrul@rcs0: > > o shard-iclb: FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard- > iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2842]) -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard- > iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html> > > ([i915#2852]) > > > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila 2021-04-14 8:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-04-14 10:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-04-15 19:39 ` Patchwork 2021-04-15 20:46 ` Patchwork ` (5 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-15 19:39 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30291 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@request: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@request.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@request.html #### Warnings #### * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][3] ([i915#3319]) -> [SKIP][4] +13 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#180]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#180] / [i915#62]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][8] ([i915#2842]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][17] -> [FAIL][18] ([i915#2849]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][21] ([i915#2389]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#307]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#768]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271]) +53 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][29] ([i915#3002]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#1699]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][31] ([i915#3324]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][32] ([i915#3324]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#112306]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#112306]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][37] ([fdo#109271]) +208 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][38] ([i915#180] / [i915#203] / [i915#62]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][39] -> [DMESG-WARN][40] ([i915#203]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][41] -> [INCOMPLETE][42] ([i915#1185]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][43] -> [SKIP][44] ([fdo#109271]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#2705]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +17 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +20 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +12 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][53] ([i915#1319]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3116]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3116]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109300] / [fdo#111066]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3359]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +366 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#52] / [i915#54]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) +9 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][69] ([i915#2641]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][70] ([i915#2587]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][71] ([i915#2628]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][72] ([i915#2641]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2672]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2642]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109280]) +10 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#111825]) +12 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][83] -> [DMESG-WARN][84] ([i915#62]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][85] -> [FAIL][86] ([i915#2657]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][89] ([i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +7 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109642] / [fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][94] -> [DMESG-WARN][95] ([i915#180] / [i915#62]) +4 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#43]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2437]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2530]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271]) +192 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109291]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][108] ([i915#3160]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][110] ([i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][112] ([i915#2369] / [i915#3063]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][114] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][124] ([i915#1895]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][126] ([i915#155] / [i915#2405]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][128] ([i915#180]) -> [PASS][129] +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][130] ([i915#2574]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][132] ([i915#52] / [i915#54]) -> [PASS][133] +6 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][134] ([i915#79]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][136] ([i915#49]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][138] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][140] ([fdo#109441]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### * igt@gem_exec_fair@b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33711 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] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (2 preceding siblings ...) 2021-04-15 19:39 ` Patchwork @ 2021-04-15 20:46 ` Patchwork 2021-04-15 21:01 ` Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-15 20:46 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30291 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@request: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@request.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@request.html #### Warnings #### * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][3] ([i915#3319]) -> [SKIP][4] +13 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#180]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#180] / [i915#62]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][8] ([i915#2842]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][17] -> [FAIL][18] ([i915#2849]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][21] ([i915#2389]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#307]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#768]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271]) +53 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][29] ([i915#3002]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#1699]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][31] ([i915#3324]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][32] ([i915#3324]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#112306]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#112306]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][37] ([fdo#109271]) +208 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][38] ([i915#180] / [i915#203] / [i915#62]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][39] -> [DMESG-WARN][40] ([i915#203]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][41] -> [INCOMPLETE][42] ([i915#1185]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][43] -> [SKIP][44] ([fdo#109271]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#2705]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +17 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +20 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +12 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][53] ([i915#1319]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3116]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3116]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109300] / [fdo#111066]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3359]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +366 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#52] / [i915#54]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) +9 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][69] ([i915#2641]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][70] ([i915#2587]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][71] ([i915#2628]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][72] ([i915#2641]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2672]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2642]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109280]) +10 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#111825]) +12 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][83] -> [DMESG-WARN][84] ([i915#62]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][85] -> [FAIL][86] ([i915#2657]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][89] ([i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +7 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109642] / [fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][94] -> [DMESG-WARN][95] ([i915#180] / [i915#62]) +4 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#43]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2437]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2530]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271]) +192 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109291]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][108] ([i915#3160]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][110] ([i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][112] ([i915#2369] / [i915#3063]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][114] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][124] ([i915#1895]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][126] ([i915#155] / [i915#2405]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][128] ([i915#180]) -> [PASS][129] +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][130] ([i915#2574]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][132] ([i915#52] / [i915#54]) -> [PASS][133] +6 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][134] ([i915#79]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][136] ([i915#49]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][138] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][140] ([fdo#109441]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### * igt@gem_exec_fair@b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33711 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] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (3 preceding siblings ...) 2021-04-15 20:46 ` Patchwork @ 2021-04-15 21:01 ` Patchwork 2021-04-15 23:23 ` Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-15 21:01 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30288 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@engine_cs: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@engine_cs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@engine_cs.html #### Warnings #### * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][3] ([i915#3319]) -> [SKIP][4] +13 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#180]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#180] / [i915#62]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][8] ([i915#2842]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][17] -> [FAIL][18] ([i915#2849]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][21] ([i915#2389]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#307]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#768]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271]) +53 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][29] ([i915#3002]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#1699]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][31] ([i915#3324]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][32] ([i915#3324]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#112306]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#112306]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][37] ([fdo#109271]) +208 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][38] ([i915#180] / [i915#203] / [i915#62]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][39] -> [DMESG-WARN][40] ([i915#203]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][41] -> [INCOMPLETE][42] ([i915#1185]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][43] -> [SKIP][44] ([fdo#109271]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#2705]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +17 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +20 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +12 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][53] ([i915#1319]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3116]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3116]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109300] / [fdo#111066]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3359]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +366 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#52] / [i915#54]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) +9 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][69] ([i915#2641]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][70] ([i915#2587]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][71] ([i915#2628]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][72] ([i915#2641]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2672]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2642]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109280]) +10 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#111825]) +12 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][83] -> [DMESG-WARN][84] ([i915#62]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][85] -> [FAIL][86] ([i915#2657]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][89] ([i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +7 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109642] / [fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][94] -> [DMESG-WARN][95] ([i915#180] / [i915#62]) +4 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#43]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2437]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2530]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271]) +192 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109291]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][108] ([i915#3160]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][110] ([i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][112] ([i915#2369] / [i915#3063]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][114] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][124] ([i915#1895]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][126] ([i915#155] / [i915#2405]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][128] ([i915#180]) -> [PASS][129] +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][130] ([i915#2574]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][132] ([i915#52] / [i915#54]) -> [PASS][133] +6 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][134] ([i915#79]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][136] ([i915#49]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][138] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][140] ([fdo#109441]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33693 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] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (4 preceding siblings ...) 2021-04-15 21:01 ` Patchwork @ 2021-04-15 23:23 ` Patchwork 2021-04-16 10:26 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika ` (2 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-15 23:23 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30288 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@engine_cs: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@engine_cs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@engine_cs.html #### Warnings #### * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][3] ([i915#3319]) -> [SKIP][4] +13 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#180]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#180] / [i915#62]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][8] ([i915#2842]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][17] -> [FAIL][18] ([i915#2849]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][20] ([fdo#109283]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][21] ([i915#2389]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#307]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][25] ([i915#2658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][26] ([i915#2658]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][27] ([i915#768]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271]) +53 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][29] ([i915#3002]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#1699]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][31] ([i915#3324]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][32] ([i915#3324]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][33] -> [DMESG-WARN][34] ([i915#180]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#112306]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#112306]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][37] ([fdo#109271]) +208 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][38] ([i915#180] / [i915#203] / [i915#62]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][39] -> [DMESG-WARN][40] ([i915#203]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][41] -> [INCOMPLETE][42] ([i915#1185]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][43] -> [SKIP][44] ([fdo#109271]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#2705]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +17 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +20 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109284] / [fdo#111827]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +12 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][53] ([i915#1319]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3116]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3116]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109300] / [fdo#111066]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3319]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3359]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +366 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#52] / [i915#54]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) +9 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][69] ([i915#2641]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][70] ([i915#2587]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][71] ([i915#2628]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][72] ([i915#2641]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2672]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2642]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109280]) +10 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#111825]) +12 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#533]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][81] ([fdo#108145] / [i915#265]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +2 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][83] -> [DMESG-WARN][84] ([i915#62]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][85] -> [FAIL][86] ([i915#2657]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][89] ([i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +7 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109642] / [fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][94] -> [DMESG-WARN][95] ([i915#180] / [i915#62]) +4 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#43]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#2437]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][101] ([i915#2530]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271]) +192 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109291]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109291]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +2 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#2994]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][108] ([i915#3160]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][110] ([i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][112] ([i915#2369] / [i915#3063]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][114] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][124] ([i915#1895]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][126] ([i915#155] / [i915#2405]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][128] ([i915#180]) -> [PASS][129] +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][130] ([i915#2574]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][132] ([i915#52] / [i915#54]) -> [PASS][133] +6 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][134] ([i915#79]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][136] ([i915#49]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][138] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][140] ([fdo#109441]) -> [PASS][141] +2 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33693 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] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (5 preceding siblings ...) 2021-04-15 23:23 ` Patchwork @ 2021-04-16 10:26 ` Kahola, Mika 2021-04-16 15:46 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2021-04-16 16:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Kahola, Mika @ 2021-04-16 10:26 UTC (permalink / raw) To: Juha-Pekka Heikkila, igt-dev@lists.freedesktop.org Seems valid change. Reviewed-by: Mika Kahola <mika.kahola@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Juha- > Pekka Heikkila > Sent: Wednesday, April 14, 2021 11:26 AM > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full > screen framebuffers in a loop > > Avoid creating full screen size fbs in a loop just to throw them away. > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> > --- > tests/kms_cursor_crc.c | 18 ++++++++++-------- > 1 file changed, 10 insertions(+), 8 deletions(-) > > diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c index > 2619e15e0..1463c5b3f 100644 > --- a/tests/kms_cursor_crc.c > +++ b/tests/kms_cursor_crc.c > @@ -492,13 +492,6 @@ static void test_cursor_opaque(data_t *data) > test_cursor_alpha(data, 1.0); > } > > -static void run_test(data_t *data, void (*testfunc)(data_t *), int cursor_w, > int cursor_h) -{ > - prepare_crtc(data, data->output, cursor_w, cursor_h); > - testfunc(data); > - cleanup_crtc(data); > -} > - > static void create_cursor_fb(data_t *data, int cur_w, int cur_h) { > cairo_t *cr; > @@ -567,6 +560,16 @@ static void require_cursor_size(data_t *data, int w, > int h) > igt_skip_on_f(ret, "Cursor size %dx%d not supported by driver\n", w, > h); } > > +static void run_test(data_t *data, void (*testfunc)(data_t *), int > +cursor_w, int cursor_h) { > + if (data->fb.fb_id != 0) > + require_cursor_size(data, cursor_w, cursor_h); > + > + prepare_crtc(data, data->output, cursor_w, cursor_h); > + testfunc(data); > + cleanup_crtc(data); > +} > + > static void test_cursor_size(data_t *data) { > igt_display_t *display = &data->display; @@ -687,7 +690,6 @@ static > void run_size_tests(data_t *data, enum pipe pipe, > w, h); > } > create_cursor_fb(data, w, h); > - require_cursor_size(data, w, h); > } > > /* Using created cursor FBs to test cursor support */ > -- > 2.28.0 > > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (6 preceding siblings ...) 2021-04-16 10:26 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika @ 2021-04-16 15:46 ` Patchwork 2021-04-16 16:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-16 15:46 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30290 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5743_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5743_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_5743/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5743_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@perf@blt: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@blt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@blt.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][3] ([i915#180]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +5 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][5] ([i915#180] / [i915#62]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][6] ([i915#2842]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][11] -> [FAIL][12] ([i915#2842]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#109283]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][19] ([i915#2389]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#307]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][23] ([i915#2658]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][24] ([i915#2658]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#768]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271]) +53 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][27] ([i915#3002]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1699]) +3 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][29] ([i915#3324]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][30] ([i915#3324]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][31] -> [DMESG-WARN][32] ([i915#180]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#112306]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#112306]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][35] ([fdo#109271]) +208 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][36] ([i915#180] / [i915#203] / [i915#62]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][37] -> [DMESG-WARN][38] ([i915#203]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][39] -> [INCOMPLETE][40] ([i915#1185]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][41] -> [SKIP][42] ([fdo#109271]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111615]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#2705]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +6 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +17 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +20 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +4 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +12 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][51] ([i915#1319]) +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][52] ([i915#3116]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3116]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][54] ([i915#1319]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109300] / [fdo#111066]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3319]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#3359]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109278]) +7 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][59] ([fdo#109271]) +366 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#109278]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#533]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][63] -> [FAIL][64] ([i915#52] / [i915#54]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109274]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][66] ([i915#180]) +9 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][67] ([i915#2641]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][68] ([i915#2587]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][69] ([i915#2628]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][70] ([i915#2641]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2672]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2642]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109280]) +10 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#111825]) +12 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#533]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][80] ([fdo#108145] / [i915#265]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][81] -> [DMESG-WARN][82] ([i915#62]) +3 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][83] -> [FAIL][84] ([i915#2657]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#658]) +5 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][87] ([i915#658]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +7 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109642] / [fdo#111068] / [i915#658]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][90] -> [SKIP][91] ([fdo#109441]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][92] -> [DMESG-WARN][93] ([i915#180] / [i915#62]) +4 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][94] -> [FAIL][95] ([i915#43]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2437]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#2437]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][98] ([i915#2530]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][99] ([i915#2530]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][100] ([fdo#109271]) +192 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109291]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][102] ([fdo#109291]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][106] ([i915#3160]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][108] ([i915#3063]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][110] ([i915#2369] / [i915#3063]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][112] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][118] ([i915#2842]) -> [PASS][119] +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][120] ([i915#118] / [i915#95]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][122] ([i915#1895]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][124] ([i915#155] / [i915#2405]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][126] ([i915#180]) -> [PASS][127] +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][128] ([i915#2574]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][130] ([i915#52] / [i915#54]) -> [PASS][131] +6 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][132] ([i915#79]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][134] ([i915#49]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][136] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][138] ([fdo#109441]) -> [PASS][139] +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][140] ([i915#2842]) -> [FAIL][141] ([i915#2852]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][142] ([i915#2684]) == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33736 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] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila ` (7 preceding siblings ...) 2021-04-16 15:46 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork @ 2021-04-16 16:03 ` Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2021-04-16 16:03 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30291 bytes --] == Series Details == Series: tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop URL : https://patchwork.freedesktop.org/series/89063/ State : success == Summary == CI Bug Log - changes from CI_DRM_9967_full -> IGTPW_5743_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html Known issues ------------ Here are the changes found in IGTPW_5743_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: NOTRUN -> [DMESG-WARN][1] ([i915#180]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl8/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099]) +5 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_ringsize@create: - shard-kbl: NOTRUN -> [DMESG-WARN][3] ([i915#180] / [i915#62]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_ctx_ringsize@create.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: NOTRUN -> [FAIL][4] ([i915#2842]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-tglb: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][9] -> [FAIL][10] ([i915#2842]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_exec_fair@basic-pace@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2849]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][15] ([fdo#109283]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_exec_params@no-blt.html - shard-iclb: NOTRUN -> [SKIP][16] ([fdo#109283]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-wide-active@rcs0: - shard-snb: NOTRUN -> [FAIL][17] ([i915#2389]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@gem_exec_reloc@basic-wide-active@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#307]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][20] ([i915#2658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][21] ([i915#2658]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_pwrite@basic-exhaustion.html - shard-apl: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][23] ([i915#768]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271]) +53 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][25] ([i915#3002]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@process-exit-mmap@wb: - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1699]) +3 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@gem_userptr_blits@process-exit-mmap@wb.html * igt@gem_userptr_blits@set-cache-level: - shard-kbl: NOTRUN -> [FAIL][27] ([i915#3324]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@gem_userptr_blits@set-cache-level.html - shard-apl: NOTRUN -> [FAIL][28] ([i915#3324]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@gem_userptr_blits@set-cache-level.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_workarounds@suspend-resume.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#112306]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#112306]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@gen9_exec_parse@bb-secure.html * igt@i915_hangman@engine-error@vecs0: - shard-kbl: NOTRUN -> [SKIP][33] ([fdo#109271]) +208 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@i915_hangman@engine-error@vecs0.html * igt@i915_module_load@reload: - shard-kbl: NOTRUN -> [DMESG-WARN][34] ([i915#180] / [i915#203] / [i915#62]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_module_load@reload.html * igt@i915_selftest@perf@region: - shard-kbl: [PASS][35] -> [DMESG-WARN][36] ([i915#203]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@i915_selftest@perf@region.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@i915_selftest@perf@region.html * igt@i915_suspend@debugfs-reader: - shard-iclb: [PASS][37] -> [INCOMPLETE][38] ([i915#1185]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb4/igt@i915_suspend@debugfs-reader.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-snb: [PASS][39] -> [SKIP][40] ([fdo#109271]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-snb7/igt@kms_async_flips@test-time-stamp.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb2/igt@kms_async_flips@test-time-stamp.html * igt@kms_big_fb@yf-tiled-addfb: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111615]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html - shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +6 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +17 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-0-25: - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +20 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-0-25.html * igt@kms_color_chamelium@pipe-c-ctm-0-25: - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +12 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][49] ([i915#1319]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-iclb: NOTRUN -> [SKIP][50] ([i915#3116]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3116]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][52] ([i915#1319]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109300] / [fdo#111066]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3319]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3359]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-32x10-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_cursor_crc@pipe-d-cursor-32x32-rapid-movement.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: NOTRUN -> [SKIP][57] ([fdo#109271]) +366 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-snb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#109278]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#533]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_cursor_legacy@pipe-d-torture-bo.html - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#533]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#52] / [i915#54]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-ytiled.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109274]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][64] ([i915#180]) +9 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][65] ([i915#2641]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-tglb: NOTRUN -> [SKIP][66] ([i915#2587]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-glk: NOTRUN -> [FAIL][67] ([i915#2628]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html - shard-apl: NOTRUN -> [FAIL][68] ([i915#2641]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#2672]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#2642]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109280]) +10 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-tglb: NOTRUN -> [SKIP][72] ([fdo#111825]) +12 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#109289]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-alpha-basic: - shard-glk: NOTRUN -> [FAIL][76] ([fdo#108145] / [i915#265]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][77] ([fdo#108145] / [i915#265]) +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_cursor@pipe-a-primary-size-128: - shard-kbl: [PASS][79] -> [DMESG-WARN][80] ([i915#62]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@kms_plane_cursor@pipe-a-primary-size-128.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_plane_cursor@pipe-a-primary-size-128.html * igt@kms_plane_cursor@pipe-a-primary-size-64: - shard-glk: [PASS][81] -> [FAIL][82] ([i915#2657]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk7/igt@kms_plane_cursor@pipe-a-primary-size-64.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@kms_plane_cursor@pipe-a-primary-size-64.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658]) +5 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-glk: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#658]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html - shard-iclb: NOTRUN -> [SKIP][85] ([i915#658]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +7 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109642] / [fdo#111068] / [i915#658]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb1/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][88] -> [SKIP][89] ([fdo#109441]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-c: - shard-kbl: [PASS][90] -> [DMESG-WARN][91] ([i915#180] / [i915#62]) +4 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-c.html * igt@kms_vblank@pipe-c-accuracy-idle: - shard-glk: [PASS][92] -> [FAIL][93] ([i915#43]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk9/igt@kms_vblank@pipe-c-accuracy-idle.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk7/igt@kms_vblank@pipe-c-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#2437]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][96] ([i915#2530]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][97] ([i915#2530]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271]) +192 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109291]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb8/igt@prime_nv_pcopy@test3_3.html - shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109291]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb2/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@recycle-many: - shard-apl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2994]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-apl7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk3/igt@sysfs_clients@sema-50.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2994]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_create@create-clear: - shard-iclb: [FAIL][104] ([i915#3160]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_create@create-clear.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb6/igt@gem_create@create-clear.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][106] ([i915#3063]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][108] ([i915#2369] / [i915#3063]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_eio@unwedge-stress.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb1/igt@gem_eio@unwedge-stress.html - shard-iclb: [TIMEOUT][110] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@gem_eio@unwedge-stress.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [FAIL][112] ([i915#2842]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl1/igt@gem_exec_fair@basic-none-rrul@rcs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@gem_exec_fair@basic-pace@vecs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][116] ([i915#2842]) -> [PASS][117] +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [DMESG-WARN][118] ([i915#118] / [i915#95]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk9/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-queues-priority: - shard-iclb: [INCOMPLETE][120] ([i915#1895]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb7/igt@gem_exec_whisper@basic-queues-priority.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb3/igt@gem_exec_whisper@basic-queues-priority.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][122] ([i915#155] / [i915#2405]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@debugfs-reader: - shard-kbl: [DMESG-WARN][124] ([i915#180]) -> [PASS][125] +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-kbl2/igt@i915_suspend@debugfs-reader.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-kbl4/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [FAIL][126] ([i915#2574]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb3/igt@kms_async_flips@test-time-stamp.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb3/igt@kms_async_flips@test-time-stamp.html * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: [FAIL][128] ([i915#52] / [i915#54]) -> [PASS][129] +6 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_draw_crc@draw-method-rgb565-render-ytiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-tglb: [FAIL][130] ([i915#79]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [FAIL][132] ([i915#49]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][134] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb8/igt@kms_psr2_su@frontbuffer.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][136] ([fdo#109441]) -> [PASS][137] +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb3/igt@kms_psr@psr2_basic.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@kms_psr@psr2_basic.html #### Warnings #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: [FAIL][138] ([i915#2842]) -> [FAIL][139] ([i915#2852]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][140] ([i915#2684]) -> [WARN][141] ([i915#1804] / [i915#2684]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-iclb5/igt@i915_pm_rc6_residency@rc6-fence.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen: - shard-tglb: [SKIP][142] ([i915#3319]) -> [SKIP][143] ([i915#3359]) +13 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9967/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-iclb: [SKIP][144] ([ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5743/index.html [-- Attachment #1.2: Type: text/html, Size: 33752 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] 13+ messages in thread
end of thread, other threads:[~2021-04-16 16:36 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-04-14 8:25 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: Let's not create full screen framebuffers in a loop Juha-Pekka Heikkila 2021-04-14 8:56 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-04-14 10:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-04-15 7:49 ` Juha-Pekka Heikkila 2021-04-16 11:58 ` Saarinen, Jani 2021-04-16 16:35 ` Vudum, Lakshminarayana 2021-04-15 19:39 ` Patchwork 2021-04-15 20:46 ` Patchwork 2021-04-15 21:01 ` Patchwork 2021-04-15 23:23 ` Patchwork 2021-04-16 10:26 ` [igt-dev] [PATCH i-g-t] " Kahola, Mika 2021-04-16 15:46 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2021-04-16 16:03 ` [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