* [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic
@ 2022-08-23 6:05 Jeevan B
2022-08-23 7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jeevan B @ 2022-08-23 6:05 UTC (permalink / raw)
To: igt-dev
Converting the existing subtests to dynamic subtests.
Adding support for each_pipe, currently PSR2 is supported on
PIPE_A so breaking the loop for other pipes currently.
v2: Add commit message and change break to continue. (Jouni)
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/i915/kms_psr2_su.c | 64 +++++++++++++++++++++++++---------------
1 file changed, 41 insertions(+), 23 deletions(-)
diff --git a/tests/i915/kms_psr2_su.c b/tests/i915/kms_psr2_su.c
index caccf713..b3c6e953 100644
--- a/tests/i915/kms_psr2_su.c
+++ b/tests/i915/kms_psr2_su.c
@@ -123,9 +123,15 @@ static void display_fini(data_t *data)
igt_display_fini(&data->display);
}
-static void prepare(data_t *data)
+static void prepare(data_t *data, enum pipe pipe)
{
igt_plane_t *primary;
+ igt_output_t *output;
+ igt_display_t *display = &data->display;
+
+ igt_display_reset(display);
+ output = data->output;
+ igt_output_set_pipe(output, pipe);
/* all green frame */
igt_create_color_fb(data->drm_fd,
@@ -263,6 +269,7 @@ static void cleanup(data_t *data)
igt_main
{
data_t data = {};
+ enum pipe pipe;
igt_fixture {
struct itimerspec interval;
@@ -287,12 +294,17 @@ igt_main
"Error enabling PSR2\n");
data.op = FRONTBUFFER;
data.format = DRM_FORMAT_XRGB8888;
- prepare(&data);
- r = psr_wait_entry(data.debugfs_fd, PSR_MODE_2);
- cleanup(&data);
- if (!r)
- psr_print_debugfs(data.debugfs_fd);
- igt_require_f(r, "PSR2 can not be enabled\n");
+
+ for_each_pipe_with_valid_output(&data.display, pipe, data.output) {
+ if (pipe != PIPE_A)
+ continue;
+ prepare(&data, pipe);
+ r = psr_wait_entry(data.debugfs_fd, PSR_MODE_2);
+ cleanup(&data);
+ if (!r)
+ psr_print_debugfs(data.debugfs_fd);
+ igt_require_f(r, "PSR2 can not be enabled\n");
+ }
/* blocking timerfd */
data.change_screen_timerfd = timerfd_create(CLOCK_MONOTONIC, 0);
@@ -312,23 +324,29 @@ igt_main
while (*format != DRM_FORMAT_INVALID) {
data.format = *format++;
igt_describe("Test that selective update works when screen changes");
- igt_subtest_f("%s-%s", op_str(data.op), igt_format_str(data.format)) {
- if (data.op == FRONTBUFFER &&
- intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 12) {
- /*
- * FIXME: Display 12+ platforms now have PSR2
- * selective fetch enabled by default but we
- * still can't properly handle frontbuffer
- * rendering, so right it does full frame
- * fetches at every frontbuffer rendering.
- * So it is expected that this test will fail
- * in display 12+ platform for now.
- */
- igt_skip("PSR2 selective fetch is doing full frame fetches for frontbuffer rendering\n");
+ igt_subtest_with_dynamic_f("%s-%s", op_str(data.op), igt_format_str(data.format)) {
+ for_each_pipe_with_valid_output(&data.display, pipe, data.output) {
+ if (pipe != PIPE_A)
+ continue;
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ if (data.op == FRONTBUFFER &&
+ intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 12) {
+ /*
+ * FIXME: Display 12+ platforms now have PSR2
+ * selective fetch enabled by default but we
+ * still can't properly handle frontbuffer
+ * rendering, so right it does full frame
+ * fetches at every frontbuffer rendering.
+ * So it is expected that this test will fail
+ * in display 12+ platform for now.
+ */
+ igt_skip("PSR2 selective fetch is doing full frame fetches for frontbuffer rendering\n");
+ }
+ prepare(&data, pipe);
+ run(&data);
+ cleanup(&data);
+ }
}
- prepare(&data);
- run(&data);
- cleanup(&data);
}
}
}
--
2.36.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) 2022-08-23 6:05 [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Jeevan B @ 2022-08-23 7:03 ` Patchwork 2022-08-23 23:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-09-01 14:49 ` [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Hogander, Jouni 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-08-23 7:03 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4242 bytes --] == Series Details == Series: tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) URL : https://patchwork.freedesktop.org/series/107349/ State : success == Summary == CI Bug Log - changes from CI_DRM_12014 -> IGTPW_7668 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/index.html Participating hosts (30 -> 31) ------------------------------ Additional (1): bat-dg2-8 Known issues ------------ Here are the changes found in IGTPW_7668 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - fi-ivb-3770: [PASS][1] -> [INCOMPLETE][2] ([i915#3303] / [i915#5370]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html * igt@runner@aborted: - fi-ivb-3770: NOTRUN -> [FAIL][3] ([fdo#109271] / [i915#4312]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/fi-ivb-3770/igt@runner@aborted.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - fi-elk-e7500: [INCOMPLETE][4] ([i915#6648]) -> [INCOMPLETE][5] ([i915#6598] / [i915#6601] / [i915#6648]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/fi-elk-e7500/igt@i915_suspend@basic-s3-without-i915.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/fi-elk-e7500/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5370]: https://gitlab.freedesktop.org/drm/intel/issues/5370 [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598 [i915#6601]: https://gitlab.freedesktop.org/drm/intel/issues/6601 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6642]: https://gitlab.freedesktop.org/drm/intel/issues/6642 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6648]: https://gitlab.freedesktop.org/drm/intel/issues/6648 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6634 -> IGTPW_7668 CI-20190529: 20190529 CI_DRM_12014: 1de33826aa86910c175ca773bc8f92d5948d094e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/index.html IGT_6634: e01fe99f00692864b709253638c809231d1fb333 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/index.html [-- Attachment #2: Type: text/html, Size: 3457 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) 2022-08-23 6:05 [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Jeevan B 2022-08-23 7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) Patchwork @ 2022-08-23 23:10 ` Patchwork 2022-09-01 14:49 ` [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Hogander, Jouni 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-08-23 23:10 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 53553 bytes --] == Series Details == Series: tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) URL : https://patchwork.freedesktop.org/series/107349/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12014_full -> IGTPW_7668_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7668_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7668_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_7668/index.html Participating hosts (13 -> 9) ------------------------------ Missing (4): pig-skl-6260u pig-kbl-iris shard-dg1 pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7668_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@suspend: - shard-iclb: NOTRUN -> [INCOMPLETE][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@gem_eio@suspend.html * igt@gem_workarounds@suspend-resume-fd: - shard-iclb: [PASS][2] -> [INCOMPLETE][3] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb2/igt@gem_workarounds@suspend-resume-fd.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk5/igt@i915_pm_rpm@system-suspend-execbuf.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: NOTRUN -> [INCOMPLETE][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb4/igt@i915_suspend@basic-s2idle-without-i915.html - shard-apl: NOTRUN -> [INCOMPLETE][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl4/igt@i915_suspend@basic-s2idle-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk9/igt@i915_suspend@basic-s2idle-without-i915.html Known issues ------------ Here are the changes found in IGTPW_7668_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-iclb: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@api_intel_bb@crc32.html * igt@feature_discovery@display-2x: - shard-iclb: NOTRUN -> [SKIP][10] ([i915#1839]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@feature_discovery@display-2x.html * igt@gem_ccs@block-copy-compressed: - shard-iclb: NOTRUN -> [SKIP][11] ([i915#5327]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb6/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_eio@in-flight-1us: - shard-tglb: [PASS][13] -> [TIMEOUT][14] ([i915#3063]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglb3/igt@gem_eio@in-flight-1us.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@gem_eio@in-flight-1us.html * igt@gem_eio@kms: - shard-tglb: [PASS][15] -> [FAIL][16] ([i915#5784]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglb7/igt@gem_eio@kms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@gem_eio@kms.html * igt@gem_eio@suspend: - shard-snb: NOTRUN -> [INCOMPLETE][17] ([i915#6598] / [i915#6628]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb2/igt@gem_eio@suspend.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: [PASS][19] -> [FAIL][20] ([i915#2846]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl1/igt@gem_exec_fair@basic-deadline.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@gem_exec_fair@basic-deadline.html - shard-apl: NOTRUN -> [FAIL][21] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl7/igt@gem_exec_fair@basic-deadline.html - shard-glk: NOTRUN -> [FAIL][22] ([i915#2846]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglb: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][24] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk2/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-iclb: NOTRUN -> [FAIL][25] ([i915#2842]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: [PASS][26] -> [FAIL][27] ([i915#2842]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@basic: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#4613]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk8/igt@gem_lmem_swapping@random.html - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl8/igt@gem_lmem_swapping@random.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][31] ([i915#2658]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl7/igt@gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][32] ([i915#2658]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb4/igt@gem_pread@exhaustion.html - shard-iclb: NOTRUN -> [WARN][33] ([i915#2658]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@gem_pread@exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#4270]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb7/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-iclb: NOTRUN -> [SKIP][35] ([i915#4270]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-iclb: NOTRUN -> [SKIP][36] ([i915#768]) +4 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_userptr_blits@access-control: - shard-iclb: NOTRUN -> [SKIP][37] ([i915#3297]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][38] ([i915#3318]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl2/igt@gem_userptr_blits@vma-merge.html - shard-snb: NOTRUN -> [FAIL][39] ([i915#2724]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb4/igt@gem_userptr_blits@vma-merge.html - shard-glk: NOTRUN -> [FAIL][40] ([i915#3318]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk8/igt@gem_userptr_blits@vma-merge.html - shard-iclb: NOTRUN -> [FAIL][41] ([i915#3318]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume: - shard-apl: NOTRUN -> [INCOMPLETE][42] ([i915#4939] / [i915#5129] / [i915#6598]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl2/igt@gem_workarounds@suspend-resume.html - shard-snb: NOTRUN -> [INCOMPLETE][43] ([i915#4939] / [i915#5129] / [i915#6598]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb6/igt@gem_workarounds@suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][44] ([i915#5129] / [i915#6598]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk1/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: [PASS][45] -> [INCOMPLETE][46] ([i915#5129]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-snb4/igt@gem_workarounds@suspend-resume-fd.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb6/igt@gem_workarounds@suspend-resume-fd.html - shard-apl: [PASS][47] -> [INCOMPLETE][48] ([i915#5129]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl4/igt@gem_workarounds@suspend-resume-fd.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl4/igt@gem_workarounds@suspend-resume-fd.html - shard-glk: [PASS][49] -> [INCOMPLETE][50] ([i915#5129]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk7/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_render_linear_blits: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109289]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][52] -> [DMESG-WARN][53] ([i915#5566] / [i915#716]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl8/igt@gen9_exec_parse@allowed-single.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-zero-length: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#2856]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@gen9_exec_parse@batch-zero-length.html * igt@i915_module_load@load: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#6227]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@i915_module_load@load.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: NOTRUN -> [SKIP][56] ([i915#4281]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-iclb: NOTRUN -> [SKIP][57] ([i915#6590]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: NOTRUN -> [WARN][58] ([i915#2684]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109293] / [fdo#109506]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][60] -> [INCOMPLETE][61] ([i915#3921]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-snb6/igt@i915_selftest@live@hangcheck.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][62] -> [INCOMPLETE][63] ([i915#4939]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl6/igt@i915_suspend@debugfs-reader.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl6/igt@i915_suspend@debugfs-reader.html - shard-iclb: [PASS][64] -> [INCOMPLETE][65] ([i915#6598]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb7/igt@i915_suspend@debugfs-reader.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][66] ([i915#6598]) +6 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk1/igt@i915_suspend@forcewake.html - shard-snb: NOTRUN -> [INCOMPLETE][67] ([i915#4817] / [i915#6598]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3826]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][69] ([i915#4765]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][70] ([i915#5286]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#5286]) +8 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][72] ([fdo#111614]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#110725] / [fdo#111614]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#111615]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb7/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#110723]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#3689]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#3886]) +9 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#3886]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl4/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#3689] / [i915#6095]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#3886]) +11 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl8/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271]) +235 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109278] / [i915#3886]) +9 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium@hdmi-crc-multiple: - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +11 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk3/igt@kms_chamelium@hdmi-crc-multiple.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [fdo#111827]) +12 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl1/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271] / [fdo#111827]) +12 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109284] / [fdo#111827]) +13 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_color_chamelium@ctm-limited-range: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109284] / [fdo#111827]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_color_chamelium@ctm-limited-range.html * igt@kms_color_chamelium@degamma: - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [fdo#111827]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@kms_color_chamelium@degamma.html * igt@kms_content_protection@atomic: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#1063]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-apl: NOTRUN -> [TIMEOUT][90] ([i915#1319]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109300] / [fdo#111066]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb7/igt@kms_content_protection@lic.html - shard-kbl: NOTRUN -> [TIMEOUT][92] ([i915#1319] / [i915#6637]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl4/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1: - shard-kbl: [PASS][93] -> [DMESG-WARN][94] ([i915#180]) +4 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl4/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@kms_cursor_crc@cursor-suspend@pipe-b-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [PASS][95] -> [FAIL][96] ([i915#2346]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][97] ([i915#3528]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html - shard-iclb: NOTRUN -> [SKIP][98] ([i915#3528]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled: - shard-iclb: NOTRUN -> [SKIP][99] ([i915#5287]) +3 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled: - shard-tglb: NOTRUN -> [SKIP][100] ([i915#5287]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb7/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109274]) +10 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][102] -> [FAIL][103] ([i915#2122]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111825] / [i915#3637]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-suspend@a-edp1: - shard-iclb: NOTRUN -> [INCOMPLETE][105] ([i915#6598]) +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@kms_flip@flip-vs-suspend@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][106] ([i915#2672]) +7 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][107] ([i915#2672] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109280]) +49 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-iclb: NOTRUN -> [SKIP][109] ([i915#5438]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][110] ([fdo#109271]) +325 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-kbl: NOTRUN -> [SKIP][111] ([fdo#109271]) +85 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-tglb: NOTRUN -> [SKIP][112] ([i915#6497]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109280] / [fdo#111825]) +4 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-kbl: [PASS][114] -> [FAIL][115] ([i915#1188]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_hdr@static-toggle-suspend: - shard-iclb: NOTRUN -> [SKIP][116] ([i915#3555]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][117] ([i915#6598]) +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-vga-1: - shard-snb: NOTRUN -> [INCOMPLETE][118] ([i915#6520] / [i915#6598]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-vga-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-apl: NOTRUN -> [INCOMPLETE][119] ([i915#4939] / [i915#6598]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html - shard-snb: NOTRUN -> [INCOMPLETE][120] ([i915#4939] / [i915#6598]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-none@pipe-a-edp-1: - shard-iclb: NOTRUN -> [SKIP][121] ([i915#3536]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_plane_lowres@tiling-none@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1: - shard-iclb: NOTRUN -> [SKIP][122] ([i915#5176]) +14 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][123] ([fdo#109271]) +228 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-1.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-kbl: NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#658]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#658]) +2 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-iclb: NOTRUN -> [SKIP][126] ([fdo#111068] / [i915#658]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][127] ([fdo#109271] / [i915#658]) +2 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][128] -> [SKIP][129] ([fdo#109441]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][130] ([fdo#109441]) +3 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-iclb: NOTRUN -> [SKIP][131] ([i915#5289]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_selftest@all: - shard-iclb: NOTRUN -> [SKIP][132] ([i915#6433]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@kms_selftest@all.html * igt@kms_tv_load_detect@load-detect: - shard-iclb: NOTRUN -> [SKIP][133] ([fdo#109309]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-query-forked-hang: - shard-iclb: NOTRUN -> [SKIP][134] ([fdo#109278]) +44 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@kms_vblank@pipe-d-query-forked-hang.html * igt@nouveau_crc@pipe-c-source-rg: - shard-iclb: NOTRUN -> [SKIP][135] ([i915#2530]) +3 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@nouveau_crc@pipe-c-source-rg.html * igt@nouveau_crc@pipe-d-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][136] ([i915#2530]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@nouveau_crc@pipe-d-ctx-flip-detection.html * igt@nouveau_crc@pipe-d-source-outp-complete: - shard-iclb: NOTRUN -> [SKIP][137] ([fdo#109278] / [i915#2530]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@nouveau_crc@pipe-d-source-outp-complete.html * igt@perf@per-context-mode-unprivileged: - shard-tglb: NOTRUN -> [SKIP][138] ([fdo#109289]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb7/igt@perf@per-context-mode-unprivileged.html * igt@prime_nv_pcopy@test3_2: - shard-iclb: NOTRUN -> [SKIP][139] ([fdo#109291]) +6 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb4/igt@prime_nv_pcopy@test3_2.html * igt@prime_nv_pcopy@test_semaphore: - shard-tglb: NOTRUN -> [SKIP][140] ([fdo#109291]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb5/igt@prime_nv_pcopy@test_semaphore.html * igt@prime_vgem@coherency-gtt: - shard-iclb: NOTRUN -> [SKIP][141] ([fdo#109292] / [fdo#109295]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@prime_vgem@coherency-gtt.html * igt@sysfs_clients@fair-1: - shard-apl: NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#2994]) +2 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl3/igt@sysfs_clients@fair-1.html * igt@sysfs_clients@split-25: - shard-iclb: NOTRUN -> [SKIP][143] ([i915#2994]) +3 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@sysfs_clients@split-25.html * igt@sysfs_clients@split-50: - shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271] / [i915#2994]) +2 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk9/igt@sysfs_clients@split-50.html * igt@tools_test@sysfs_l3_parity: - shard-iclb: NOTRUN -> [SKIP][145] ([fdo#109307]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb6/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-kbl: [DMESG-WARN][146] ([i915#180]) -> [PASS][147] +3 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: [INCOMPLETE][148] ([i915#6598] / [i915#6601]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-snb4/igt@gem_ctx_isolation@preservation-s3@rcs0.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html - shard-glk: [INCOMPLETE][150] ([i915#6598]) -> [PASS][151] +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html - shard-iclb: [INCOMPLETE][152] -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@reset-stress: - shard-tglb: [FAIL][154] ([i915#5784]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglb3/igt@gem_eio@reset-stress.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][156] ([i915#4525]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb6/igt@gem_exec_balancer@parallel-keep-submit-fence.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][158] ([i915#2842]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][160] ([i915#2842]) -> [PASS][161] +1 similar issue [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][162] ([i915#2842]) -> [PASS][163] +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-kbl: [DMESG-WARN][164] ([i915#5566] / [i915#716]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@gen9_exec_parse@allowed-single.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - {shard-tglu}: [SKIP][166] ([i915#4281]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_suspend@basic-s3-without-i915: - shard-iclb: [INCOMPLETE][168] ([i915#6598]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb3/igt@i915_suspend@basic-s3-without-i915.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb3/igt@i915_suspend@basic-s3-without-i915.html - shard-apl: [INCOMPLETE][170] ([i915#6598]) -> [PASS][171] +1 similar issue [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl2/igt@i915_suspend@basic-s3-without-i915.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [FAIL][172] ([i915#4767]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][174] -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1: - shard-snb: [INCOMPLETE][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-snb5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-snb2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-iclb: [SKIP][178] ([fdo#109441]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb1/igt@kms_psr@psr2_cursor_mmap_gtt.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html #### Warnings #### * igt@gem_eio@unwedge-stress: - shard-tglb: [FAIL][180] ([i915#5784]) -> [TIMEOUT][181] ([i915#3063]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-tglb5/igt@gem_eio@unwedge-stress.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-tglb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][182] ([i915#6117]) -> [SKIP][183] ([i915#4525]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-apl: [INCOMPLETE][184] ([i915#6598]) -> [INCOMPLETE][185] ([i915#1982] / [i915#6598]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][186] ([i915#6598]) -> [INCOMPLETE][187] ([i915#1982] / [i915#6598]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-iclb: [INCOMPLETE][188] ([i915#1982] / [i915#6598]) -> [INCOMPLETE][189] ([i915#6598]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@runner@aborted: - shard-apl: ([FAIL][190], [FAIL][191]) ([i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][192], [FAIL][193], [FAIL][194]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl3/igt@runner@aborted.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-apl6/igt@runner@aborted.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl1/igt@runner@aborted.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl4/igt@runner@aborted.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-apl6/igt@runner@aborted.html - shard-kbl: ([FAIL][195], [FAIL][196], [FAIL][197], [FAIL][198]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716]) -> ([FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202], [FAIL][203], [FAIL][204]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@runner@aborted.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl1/igt@runner@aborted.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@runner@aborted.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12014/shard-kbl7/igt@runner@aborted.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl4/igt@runner@aborted.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/shard-kbl7/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4765]: https://gitlab.freedesktop.org/drm/intel/issues/4765 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5129]: https://gitlab.freedesktop.org/drm/intel/issues/5129 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5438]: https://gitlab.freedesktop.org/drm/intel/issues/5438 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6520]: https://gitlab.freedesktop.org/drm/intel/issues/6520 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598 [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599 [i915#6601]: https://gitlab.freedesktop.org/drm/intel/issues/6601 [i915#6628]: https://gitlab.freedesktop.org/drm/intel/issues/6628 [i915#6637]: https://gitlab.freedesktop.org/drm/intel/issues/6637 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6634 -> IGTPW_7668 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12014: 1de33826aa86910c175ca773bc8f92d5948d094e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/index.html IGT_6634: e01fe99f00692864b709253638c809231d1fb333 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7668/index.html [-- Attachment #2: Type: text/html, Size: 62888 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic 2022-08-23 6:05 [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Jeevan B 2022-08-23 7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) Patchwork 2022-08-23 23:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-09-01 14:49 ` Hogander, Jouni 2 siblings, 0 replies; 4+ messages in thread From: Hogander, Jouni @ 2022-09-01 14:49 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, B, Jeevan On Tue, 2022-08-23 at 11:35 +0530, Jeevan B wrote: > Converting the existing subtests to dynamic subtests. > Adding support for each_pipe, currently PSR2 is supported on > PIPE_A so breaking the loop for other pipes currently. I think you should implement check for pipe supporting PSR2 or not and then adding dynamic subtest based on that. > > v2: Add commit message and change break to continue. (Jouni) > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/i915/kms_psr2_su.c | 64 +++++++++++++++++++++++++------------- > -- > 1 file changed, 41 insertions(+), 23 deletions(-) > > diff --git a/tests/i915/kms_psr2_su.c b/tests/i915/kms_psr2_su.c > index caccf713..b3c6e953 100644 > --- a/tests/i915/kms_psr2_su.c > +++ b/tests/i915/kms_psr2_su.c > @@ -123,9 +123,15 @@ static void display_fini(data_t *data) > igt_display_fini(&data->display); > } > > -static void prepare(data_t *data) > +static void prepare(data_t *data, enum pipe pipe) > { > igt_plane_t *primary; > + igt_output_t *output; > + igt_display_t *display = &data->display; > + > + igt_display_reset(display); > + output = data->output; > + igt_output_set_pipe(output, pipe); > > /* all green frame */ > igt_create_color_fb(data->drm_fd, > @@ -263,6 +269,7 @@ static void cleanup(data_t *data) > igt_main > { > data_t data = {}; > + enum pipe pipe; > > igt_fixture { > struct itimerspec interval; > @@ -287,12 +294,17 @@ igt_main > "Error enabling PSR2\n"); > data.op = FRONTBUFFER; > data.format = DRM_FORMAT_XRGB8888; > - prepare(&data); > - r = psr_wait_entry(data.debugfs_fd, PSR_MODE_2); > - cleanup(&data); > - if (!r) > - psr_print_debugfs(data.debugfs_fd); > - igt_require_f(r, "PSR2 can not be enabled\n"); > + > + for_each_pipe_with_valid_output(&data.display, pipe, > data.output) { > + if (pipe != PIPE_A) > + continue; > + prepare(&data, pipe); > + r = psr_wait_entry(data.debugfs_fd, > PSR_MODE_2); > + cleanup(&data); > + if (!r) > + psr_print_debugfs(data.debugfs_fd); > + igt_require_f(r, "PSR2 can not be > enabled\n"); > + } I think you should remove these checks from here and have that check for pipe supporting PSR2 or not. Then add dynamic tests based on that check. > > /* blocking timerfd */ > data.change_screen_timerfd = > timerfd_create(CLOCK_MONOTONIC, 0); > @@ -312,23 +324,29 @@ igt_main > while (*format != DRM_FORMAT_INVALID) { > data.format = *format++; > igt_describe("Test that selective update > works when screen changes"); > - igt_subtest_f("%s-%s", op_str(data.op), > igt_format_str(data.format)) { > - if (data.op == FRONTBUFFER && > - > intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 12) { > - /* > - * FIXME: Display 12+ > platforms now have PSR2 > - * selective fetch enabled by > default but we > - * still can't properly > handle frontbuffer > - * rendering, so right it > does full frame > - * fetches at every > frontbuffer rendering. > - * So it is expected that > this test will fail > - * in display 12+ platform > for now. > - */ > - igt_skip("PSR2 selective > fetch is doing full frame fetches for frontbuffer rendering\n"); > + igt_subtest_with_dynamic_f("%s-%s", > op_str(data.op), igt_format_str(data.format)) { > + for_each_pipe_with_valid_output(&data > .display, pipe, data.output) { > + if (pipe != PIPE_A) > + continue; > + igt_dynamic_f("pipe-%s", > kmstest_pipe_name(pipe)) { > + if (data.op == > FRONTBUFFER && > + > intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 12) { > + /* > + * FIXME: Display 12+ > platforms now have PSR2 > + * selective fetch > enabled by default but we > + * still can't > properly handle frontbuffer > + * rendering, so > right it does full frame > + * fetches at every > frontbuffer rendering. > + * So it is expected > that this test will fail > + * in display 12+ > platform for now. > + */ > + igt_skip("PSR2 > selective fetch is doing full frame fetches for frontbuffer > rendering\n"); > + } > + prepare(&data, pipe); > + run(&data); > + cleanup(&data); > + } > } > - prepare(&data); > - run(&data); > - cleanup(&data); > } > } > } ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-09-01 14:49 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-08-23 6:05 [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Jeevan B 2022-08-23 7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_psr2_su: Convert tests to dynamic (rev2) Patchwork 2022-08-23 23:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-09-01 14:49 ` [igt-dev] [PATCH i-g-t v2] tests/i915/kms_psr2_su: Convert tests to dynamic Hogander, Jouni
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.